From 519f621cb21ec270419000e6c2c7324e6a05cf80 Mon Sep 17 00:00:00 2001 From: Michael Pedersen Date: Sat, 2 Nov 2013 15:57:20 +0100 Subject: [PATCH] Released 1.0.24 --- ...SublimeGit Commit Message.sublime-settings | 0 messages.json | 3 +- messages/1.0.24.txt | 32 +++++++++++++++++++ sgit/__init__.py | 2 +- 4 files changed, 35 insertions(+), 2 deletions(-) rename syntax/SublimeGit Commit Message.sublime-settings => SublimeGit Commit Message.sublime-settings (100%) create mode 100644 messages/1.0.24.txt diff --git a/syntax/SublimeGit Commit Message.sublime-settings b/SublimeGit Commit Message.sublime-settings similarity index 100% rename from syntax/SublimeGit Commit Message.sublime-settings rename to SublimeGit Commit Message.sublime-settings diff --git a/messages.json b/messages.json index e38013f..b362d8b 100644 --- a/messages.json +++ b/messages.json @@ -9,5 +9,6 @@ "1.0.20": "messages/1.0.20.txt", "1.0.21": "messages/1.0.21.txt", "1.0.22": "messages/1.0.22.txt", - "1.0.23": "messages/1.0.23.txt" + "1.0.23": "messages/1.0.23.txt", + "1.0.24": "messages/1.0.24.txt" } diff --git a/messages/1.0.24.txt b/messages/1.0.24.txt new file mode 100644 index 0000000..21cce95 --- /dev/null +++ b/messages/1.0.24.txt @@ -0,0 +1,32 @@ +SublimeGit 1.0.24 +================= + +Enhancements: +------------- + - The "SublimeGit: Install License" command has been renamed to + "SublimeGit: Add License", to not pop up when searching for the + "Package Control: Install Package" command. + + - .gitignore file management, now ensures that the file ends with a + newline. (Issue #40) + + - Added a new setting git_status_untracked_files to control the + display of untracked files. (Issue #65) + + - Added a new setting git_status_open_files_transient to control + the file mode of files opened from the status view. (Issue #42) + + - Changed the keyboard shortcut for discard commands in the status + view to use backspace instead of k to be more Vintage friendly. + (Issue #44) + + - Improved handling of multiple remotes with Push, Pull and Fetch + commands. Multiple remotes are now supported, and the commands + better mirror the functionality of the git cli. (Issue #52) + +Bug Fixes: +---------- + - Git Blame command now uses author name and timestamp, to correctly + refer to the original author of the commit. (Issue #39) + + - Git checkout will now list all branches instead of only 25. (Issue #50) diff --git a/sgit/__init__.py b/sgit/__init__.py index a3e220c..d514fb0 100644 --- a/sgit/__init__.py +++ b/sgit/__init__.py @@ -1,6 +1,6 @@ # coding: utf-8 -__version__ = '1.0.23' +__version__ = '1.0.24' # Import all the commands