Skip to content

Commit 013faa7

Browse files
committed
v2.2.0 released
1 parent d248310 commit 013faa7

File tree

6 files changed

+127
-29
lines changed

6 files changed

+127
-29
lines changed

README.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,23 @@ Building process is no longer distributed with this repository. You need to get
177177
More information in SublimeCodeIntel/CodeIntelSources/`src <https://github.com/SublimeCodeIntel/CodeIntelSources/src>`_.
178178

179179

180+
Notes
181+
-----
182+
183+
For the next major version of SublimeCodeIntel (v3.0.0) you will have to ensure
184+
that CodeIntel package (https://pypi.python.org/pypi/CodeIntel) is installed on
185+
your system usually by using pip or easy_install. The Code intelligence will be
186+
handled by that package and the command ``codeintel`` it will install.
187+
188+
189+
Please start trying to install the CodeIntel package as soon as possible to make
190+
sure you are ready for the upcoming version of SublimeCodeIntel:
191+
192+
1. Install Python 2 and pip (http://www.pip-installer.org/en/latest/installing.html).
193+
194+
2. Install (or upgrade) ``CodeIntel`` by typing the following in a terminal: ``pip install -U codeintel``
195+
196+
180197
What's New
181198
----------
182199

@@ -186,6 +203,11 @@ v3.0.0 (unreleased, alpha):
186203
Needs to install CodeIntel with pip: `pip install codeintel`
187204

188205

206+
v2.2.0 (2015-03-26):
207+
208+
+ Fixed issue with tabs and autocomplete
209+
210+
189211
v2.1.9 (2015-03-21):
190212

191213
+ Fixed issue with codeintel_enabled()

SublimeCodeIntel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"""
6363
from __future__ import print_function, unicode_literals
6464

65-
VERSION = "2.1.9"
65+
VERSION = "2.2.0"
6666

6767
import os
6868
import re

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@
1919
"2.1.6": "messages/2.1.6.txt",
2020
"2.1.7": "messages/2.1.7.txt",
2121
"2.1.8": "messages/2.1.8.txt",
22-
"2.1.9": "messages/2.1.9.txt"
22+
"2.1.9": "messages/2.1.9.txt",
23+
"2.2.0": "messages/2.2.0.txt"
2324
}

messages/2.2.0.txt

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
SublimeCodeIntel v2.2.0 Release Notes
2+
=====================================
3+
4+
____ _ _ _ ____ _ ___ _ _
5+
/ ___| _ _| |__ | (_)_ __ ___ ___ / ___|___ __| | ___|_ _|_ __ | |_ ___| |
6+
\___ \| | | | '_ \| | | '_ ` _ \ / _ \ | / _ \ / _` |/ _ \| || '_ \| __/ _ \ |
7+
___) | |_| | |_) | | | | | | | | __/ |__| (_) | (_| | __/| || | | | || __/ |
8+
|____/ \__,_|_.__/|_|_|_| |_| |_|\___|\____\___/ \__,_|\___|___|_| |_|\__\___|_|
9+
A full-featured code intelligence and smart autocomplete engine for Sublime Text.
10+
(Code intelligence plugin ported from Open Komodo Editor to Sublime Text)
11+
12+
13+
+-------------------------------- HELP WANTED ---------------------------------+
14+
| Maintaining this project is hard, I do it in my spare time, but I'm |
15+
| basically all alone. If anyone is interested in contributing, please |
16+
| contact me. I really need much more help maintaining SublimeCodeIntel |
17+
| |
18+
| Follow me on twitter @germbravo |
19+
| You can find us at #sublimecodeintel on irc.freenode.net |
20+
| |
21+
| If you like SublimeCodeIntel, please make a donation: |
22+
| http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html |
23+
+------------------------------------------------------------------------------+
24+
25+
26+
Notes
27+
-----
28+
29+
For the next major version of SublimeCodeIntel (v3.0.0) you will have to ensure
30+
that CodeIntel package (https://pypi.python.org/pypi/CodeIntel) is installed on
31+
your system usually by using pip or easy_install. The Code intelligence will be
32+
handled by that package and the command ``codeintel`` it will install.
33+
34+
35+
Please start trying to install the CodeIntel package as soon as possible to make
36+
sure you are ready for the upcoming version of SublimeCodeIntel:
37+
38+
1. Install Python 2 and pip (http://www.pip-installer.org/en/latest/installing.html).
39+
40+
2. Install (or upgrade) ``CodeIntel`` by typing the following in a terminal: ``pip install -U codeintel``
41+
42+
43+
** Restart Sublime Text after reading this **
44+
45+
46+
47+
More information
48+
----------------
49+
Please take the time to read the documentation:
50+
51+
In case of trouble, please read the Troubleshooting section in the README.
52+
53+
* Online - http://sublimecodeintel.github.io/SublimeCodeIntel/
54+
* Git - https://github.com/SublimeCodeIntel/SublimeCodeIntel
55+
56+
57+
CHANGES/FIXES
58+
-------------
59+
v2.2.0 (2015-03-26):
60+
61+
+ Fixed issue with tabs and autocomplete

messages/install.txt

Lines changed: 32 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
11
SublimeCodeIntel
22
================
33

4+
____ _ _ _ ____ _ ___ _ _
5+
/ ___| _ _| |__ | (_)_ __ ___ ___ / ___|___ __| | ___|_ _|_ __ | |_ ___| |
6+
\___ \| | | | '_ \| | | '_ ` _ \ / _ \ | / _ \ / _` |/ _ \| || '_ \| __/ _ \ |
7+
___) | |_| | |_) | | | | | | | | __/ |__| (_) | (_| | __/| || | | | || __/ |
8+
|____/ \__,_|_.__/|_|_|_| |_| |_|\___|\____\___/ \__,_|\___|___|_| |_|\__\___|_|
49
A full-featured code intelligence and smart autocomplete engine for Sublime Text.
5-
(Code intelligence plugin ported from Open Komodo Editor to Sublime Text)
10+
(Code intelligence plugin ported from Open Komodo Editor to Sublime Text)
611

7-
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! HELP WANTED !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
8-
!! Maintaining this project is hard, I do it in my spare time, but I'm !!
9-
!! basically all alone. If anyone is interested in contributing, please !!
10-
!! contact me. I really need much more help maintaining SublimeCodeIntel !!
11-
!! !!
12-
!! Follow me on twitter @germbravo !!
13-
!! You can find us at #sublimecodeintel on irc.freenode.net !!
14-
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1512

16-
** Restart Sublime Text after reading this **
17-
18-
In case of trouble, please read the Troubleshooting section in the README.
13+
+-------------------------------- HELP WANTED ---------------------------------+
14+
| Maintaining this project is hard, I do it in my spare time, but I'm |
15+
| basically all alone. If anyone is interested in contributing, please |
16+
| contact me. I really need much more help maintaining SublimeCodeIntel |
17+
| |
18+
| Follow me on twitter @germbravo |
19+
| You can find us at #sublimecodeintel on irc.freenode.net |
20+
| |
21+
| If you like SublimeCodeIntel, please make a donation: |
22+
| http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html |
23+
+------------------------------------------------------------------------------+
1924

20-
If you like SublimeCodeIntel, please make a donation: http://sublimecodeintel.github.io/SublimeCodeIntel/donate.html
2125

22-
23-
Features:
24-
---------
26+
Features
27+
--------
2528

2629
Supports all the languages Komodo Editor supports for Code Intelligence (CIX, CodeIntel2):
2730

@@ -56,14 +59,25 @@ Provides the following features:
5659
* Manual CodeIntel = ``Control+Shift+space``
5760

5861

59-
For more information:
60-
---------------------
62+
63+
Notes
64+
-----
65+
66+
** Restart Sublime Text after reading this **
67+
68+
69+
More information
70+
----------------
6171
Please take the time to read the documentation:
6272

73+
In case of trouble, please read the Troubleshooting section in the README.
74+
6375
* Online - http://sublimecodeintel.github.io/SublimeCodeIntel/
76+
* Git - https://github.com/SublimeCodeIntel/SublimeCodeIntel
6477

6578

6679
IMPORTANT
80+
---------
6781

6882
Do NOT edit the default SublimeCodeIntel settings. Your changes will be lost
6983
when SublimeCodeIntel is updated. ALWAYS edit the user SublimeCodeIntel settings

packages.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@
1313
"releases": [
1414
{
1515
"sublime_text": "<3000",
16-
"version": "2.1.9",
17-
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.9.zip",
18-
"date": "2015-03-21 00:00:00"
16+
"version": "2.2.0",
17+
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.2.0.zip",
18+
"date": "2015-03-26 00:00:00"
1919
},
2020
{
2121
"sublime_text": ">=3000",
22-
"version": "2.1.9+st3",
23-
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.1.9+st3.zip",
24-
"date": "2015-03-21 00:00:00"
22+
"version": "2.2.0+st3",
23+
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v2.2.0+st3.zip",
24+
"date": "2015-03-26 00:00:00"
2525
},
2626
{
2727
"sublime_text": "*",
28-
"version": "3.0.0-alpha2",
29-
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha2.zip",
30-
"date": "2015-03-21 00:00:00"
28+
"version": "3.0.0-alpha3",
29+
"url": "https://github.com/SublimeCodeIntel/SublimeCodeIntel/archive/v3.0.0-alpha3.zip",
30+
"date": "2015-03-26 00:00:00"
3131
}
3232
]
3333
}

0 commit comments

Comments
 (0)