Skip to content

Commit

Permalink
update version to 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
litefeel committed Dec 25, 2013
1 parent 4b2fefb commit 855ba95
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 10 deletions.
37 changes: 30 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,43 @@
sublime-TortoiseSVN
===================

Sublime-TortoiseSVN
=============
sublime-TortoiseSVN is a tiny and simple plugin for [Sublime Text](http://www.sublimetext.com) .
It's behavior is similar to [subclipse](http://subclipse.tigris.org/) in [Eclipse](http://www.eclipse.org/).
**It runs only on Windows and needs the TortoiseSVN and TortoiseSVN command line tools (TortoiseProc.exe).**

Usage
-----
============
Install it using [Sublime Package Control](http://wbond.net/sublime_packages/package_control).
If TortoiseSVN is not installed at `C:\\Program Files\\TortoiseSVN\\bin\\TortoiseProc.exe`, specify the correct path
by setting property "tortoiseproc_path" in your TortoiseSVN.sublime-settings file.

- [alt+c] : commit current file.
- [alt+u] : update current file.

The default key bindings are
- [alt+c] : commit current file.
- [alt+u] : update current file.
- [alt+r] : revert current file.

Right click folder or file in SiderBar can commit/update also.
You can also call TortoiseSVN commands when right-clicking folders or files in the side bar.


IMPORTANT
==============

Do NOT edit the default Sublime-TortoiseSVN settings. Your changes will be lost
when Sublime-TortoiseSVN is updated. ALWAYS edit the user Sublime-TortoiseSVN settings
by selecting "Preferences->Package Settings->TortoiseSVN->Settings - User".
Note that individual settings you include in your user settings will **completely**
replace the corresponding default setting, so you must provide that setting in its entirety.

Settings
==============

If your TortoiseProc.exe path is not the default, please modify the path by selecting
"Preferences->Package Settings->TortoiseSVN->Settings - User" in the menu.

The default setting is:

{
// Auto close update dialog when no errors, conflicts and merges
"autoCloseUpdateDialog": false,
"tortoiseproc_path": "C:\\Program Files\\TortoiseSVN\\bin\\TortoiseProc.exe"
}
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"install": "messages/install.txt",
"1.2.0": "messages/1.2.0.txt",
"1.3.0": "messages/1.3.0.txt",
"1.3.1": "messages/1.3.1.txt"
"1.3.1": "messages/1.3.1.txt",
"1.3.2": "messages/1.3.2.txt"
}
5 changes: 5 additions & 0 deletions messages/1.3.2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Sublime-TortoiseSVN 1.3.2 changelog
=============================

- Add: config:autoCloseUpdateDialog, default false.
Auto close update dialog when no errors, conflicts and merges
6 changes: 4 additions & 2 deletions messages/install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,7 @@ If your TortoiseProc.exe path is not the default, please modify the path by sele
The default setting is:

{
"tortoiseproc_path": "C:\\Program Files\\TortoiseSVN\\bin\\TortoiseProc.exe"
}
// Auto close update dialog when no errors, conflicts and merges
"autoCloseUpdateDialog": false,
"tortoiseproc_path": "C:\\Program Files\\TortoiseSVN\\bin\\TortoiseProc.exe"
}

0 comments on commit 855ba95

Please sign in to comment.