From 850a930053a5f733996bf785a0316259a69c05c4 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sat, 12 Jun 2021 22:41:10 +0200 Subject: [PATCH] some cleanup and changelog --- CHANGELOG.md | 1 + asyncgit/src/lib.rs | 3 +-- asyncgit/src/{remotes.rs => remote_tags.rs} | 2 ++ src/components/taglist.rs | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) rename asyncgit/src/{remotes.rs => remote_tags.rs} (99%) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe953364..fd27af96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Added - new `undo-last-commit` command [[@remique](https://github.com/remique)] ([#758](https://github.com/extrawurst/gitui/issues/758)) +- taglist: show arrow-symbol on tags not present on origin [[@cruessler](https://github.com/cruessler)] ([#776](https://github.com/extrawurst/gitui/issues/776)) ## Fixed - openssl vendoring broken on macos ([#772](https://github.com/extrawurst/gitui/issues/772)) diff --git a/asyncgit/src/lib.rs b/asyncgit/src/lib.rs index 7d2cf9b3..885f4429 100644 --- a/asyncgit/src/lib.rs +++ b/asyncgit/src/lib.rs @@ -33,8 +33,7 @@ mod progress; mod push; mod push_tags; pub mod remote_progress; -/// -pub mod remotes; +pub mod remote_tags; mod revlog; mod status; pub mod sync; diff --git a/asyncgit/src/remotes.rs b/asyncgit/src/remote_tags.rs similarity index 99% rename from asyncgit/src/remotes.rs rename to asyncgit/src/remote_tags.rs index 7302e919..dd0193eb 100644 --- a/asyncgit/src/remotes.rs +++ b/asyncgit/src/remote_tags.rs @@ -1,3 +1,5 @@ +//! + use crate::{ asyncjob::AsyncJob, error::Result, diff --git a/src/components/taglist.rs b/src/components/taglist.rs index c110622d..96c465e5 100644 --- a/src/components/taglist.rs +++ b/src/components/taglist.rs @@ -12,7 +12,7 @@ use crate::{ use anyhow::Result; use asyncgit::{ asyncjob::AsyncSingleJob, - remotes::AsyncRemoteTagsJob, + remote_tags::AsyncRemoteTagsJob, sync::cred::{extract_username_password, need_username_password}, sync::{get_tags_with_metadata, TagWithMetadata}, AsyncGitNotification, CWD,