Skip to content

Commit 314f1b8

Browse files
committed
Version bump
1 parent 8ccad82 commit 314f1b8

5 files changed

Lines changed: 66 additions & 6 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ More information in SublimeCodeIntel/CodeIntelSources/`src <https://github.com/S
144144

145145
What's New
146146
----------
147-
v2.0.1 (??-??-????):
147+
v2.0.1 (19-07-2013):
148148

149149
- Removed some Linux dependencies to GLIBC_2.4.
150150

SublimeCodeIntel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
}
6969
"""
7070

71-
VERSION = "2.0"
71+
VERSION = "2.0.1"
7272

7373
import os
7474
import re

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
"1.2.0": "messages/1.2.0.txt",
44
"1.3.0": "messages/1.3.0.txt",
55
"1.4.0": "messages/1.4.0.txt",
6-
"2.0.0": "messages/2.0.0.txt"
6+
"2.0.0": "messages/2.0.0.txt",
7+
"2.0.1": "messages/2.0.1.txt"
78
}

messages/2.0.1.txt

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
SublimeCodeIntel v2.0.1 Release Notes
2+
=====================================
3+
[Please restart Sublime Text 2 after reading this. In case of trouble, please read the Troubleshooting section in the README]
4+
5+
Code intelligence plugin ported from Open Komodo Editor to Sublime Text 2.
6+
7+
Supports all the languages Komodo Editor supports for Code Intelligence (CIX, CodeIntel2):
8+
9+
JavaScript, Mason, XBL, XUL, RHTML, SCSS, Python, HTML, Ruby, Python3, XML, Sass, XSLT, Django, HTML5, Perl, CSS, Twig, Less, Smarty, Node.js, Tcl, TemplateToolkit, PHP.
10+
11+
Provides the following features:
12+
13+
Jump to Symbol Definition - Jump to the file and line of the definition of a symbol.
14+
Imports autocomplete - Shows autocomplete with the available modules/symbols in real time.
15+
Function Call tooltips - Displays information in the status bar about the working function.
16+
Plugin should work in all three platforms (MacOS X, Windows and Linux).
17+
18+
+ Shortcuts for jump to definition have changed:
19+
20+
For Mac OS X:
21+
* Jump to definition = ``Control+Click``
22+
* Jump to definition = ``Control+Command+Alt+Up``
23+
* Go back = ``Control+Command+Alt+Left``
24+
* Manual CodeIntel = ``Control+Shift+space``
25+
26+
For Linux:
27+
* Jump to definition = ``Super+Click``
28+
* Jump to definition = ``Control+Super+Alt+Up``
29+
* Go back = ``Control+Super+Alt+Left``
30+
* Manual CodeIntel = ``Control+Shift+space``
31+
32+
For Windows:
33+
* Jump to definition = ``Alt+Click``
34+
* Jump to definition = ``Control+Windows+Alt+Up``
35+
* Go back = ``Control+Windows+Alt+Left``
36+
* Manual CodeIntel = ``Control+Shift+space``
37+
38+
39+
For more information:
40+
---------------------
41+
Please take the time to read the documentation:
42+
43+
* Online - https://github.com/SublimeCodeIntel/SublimeCodeIntel
44+
45+
46+
IMPORTANT
47+
48+
Do NOT edit the default SublimeCodeIntel settings. Your changes will be lost
49+
when SublimeCodeIntel is updated. ALWAYS edit the user SublimeCodeIntel settings
50+
by selecting "Preferences->Package Settings->SublimeCodeIntel->Settings - User".
51+
Note that individual settings you include in your user settings will **completely**
52+
replace the corresponding default setting, so you must provide that setting in its entirety.
53+
54+
55+
CHANGES/FIXES
56+
57+
- Removed some Linux dependencies to GLIBC_2.4.
58+
59+
- Sublime Text 2 built-in auto complete no longer disabled by default (use `"sublime_auto_complete": false` setting instad).

packages.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"description": "Full-featured code intelligence and smart autocomplete engine",
77
"author": "German M. Bravo (Kronuz)",
88
"homepage": "http://github.com/SublimeCodeIntel/SublimeCodeIntel",
9-
"last_modified": "2013-07-11 0:00:00",
9+
"last_modified": "2013-07-19 0:00:00",
1010
"platforms": {
1111
"*": [
1212
{
13-
"version": "2.0.0",
14-
"url": "https://nodeload.github.com/SublimeCodeIntel/SublimeCodeIntel/zip/v2.0"
13+
"version": "2.0.1",
14+
"url": "https://nodeload.github.com/SublimeCodeIntel/SublimeCodeIntel/zip/v2.0.1"
1515
}
1616
]
1717
}

0 commit comments

Comments
 (0)