Skip to content

Commit c973327

Browse files
committed
Add Installation and Upgrade Messages
- Add 'messages.json', 'messages' folder and '0.3.0.md' as required by Package Control
1 parent b927944 commit c973327

File tree

2 files changed

+60
-0
lines changed

2 files changed

+60
-0
lines changed

messages.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"install": "README.rst",
3+
"0.3.0": "messages/0.3.0.md"
4+
}

messages/0.3.0.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
Changes in 0.3.0
2+
================
3+
4+
- Added support for Sublime Text 3
5+
* Rename ``jump_back`` commmand to ``jump_prev`` to prevent conflict in ST3
6+
* Remove ``jump_back_to_last_modification`` command
7+
* Numerous fixes to ensure Python compatibility
8+
* Add abstraction library for ``sublime.view`` edit functions (``begin_edit``
9+
and ``end_edit``) for which the API differs between ST2 and ST3
10+
* Add calls to ``sublime.error_message`` when errors occur
11+
* Apply general changes needed by Python3, i.e. print as a function
12+
- Major refactoring of code base
13+
* Logically reorder number of functions
14+
* Add unit tests for number of functions
15+
* Update and move existing unit tests to separate files
16+
* Add documentation to majority of functions
17+
* Add documentation to settings files
18+
* Remove unused functions (dead code)
19+
* Remove large swathes of text and place in separate files
20+
* Move small, one-time functions into inner functions or merge into other
21+
other functions
22+
* General formatting to abide to PEP-8 coding standards
23+
- Updated README and other documentation
24+
* Port to reStructuredText
25+
* Add additional sections for different package managers
26+
* Minor rewrites and spelling corrections
27+
* General formatting
28+
- Additional Changes
29+
* Remove ``ctags`` executable files
30+
31+
Fixes
32+
=====
33+
34+
* Broken "Jump Back To Last Modification" command?, #159
35+
* To support customizable filename of tags file, #157
36+
* Corrected wrong documentation, added correct instructions for OS X 10.8, #151
37+
* Error in readme.md, #150
38+
* CTags can't jump_back in ST3, #148
39+
* Can't build CTags in OSX Mountain Lion, #146
40+
* Why does Navigate to Definition (and Jump Back) select text?, #128
41+
* Jump Back should go back to the line you were on, #127
42+
* Silently fails if ctags isn't installed, #93
43+
44+
And the big one:
45+
46+
* Incompatibility with ST3 beta, #115
47+
48+
Resolves
49+
========
50+
51+
N/A
52+
53+
*******************************************************************************
54+
55+
For more detailed information about these changes, run ``git v0.2.0..v0.3.0``
56+
on the Git repository found [here](https://github.com/SublimeText/CTags).

0 commit comments

Comments
 (0)