Skip to content

Commit fa090a1

Browse files
updated version to 0.13.0, updated changelog and messages.json
1 parent 00a50e4 commit fa090a1

File tree

4 files changed

+99
-3
lines changed

4 files changed

+99
-3
lines changed

_generated_2018_01_14_at_01_07_53.py renamed to _generated_2018_01_14_at_01_20_41.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from shutil import copyfile
44
from threading import Timer
55

6-
PLUGIN_VERSION = "0.11.11"
6+
PLUGIN_VERSION = "0.13.0"
77

88
PACKAGE_PATH = os.path.abspath(os.path.dirname(__file__))
99
PACKAGE_NAME = os.path.basename(PACKAGE_PATH)

changelog/0.13.0.txt

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
v0.13.0
2+
3+
## Fixes
4+
5+
- fix regions bug for errors and unused_variables features
6+
- fix menu_disabled error setting sync functions in enable_menu_project_type_event_listener
7+
8+
## Improvements
9+
- added unusedd_variables feature
10+
- added sort_javascript_imports feature
11+
- extended surround_with options
12+
- started working on refactor command
13+
- added $(which command_name) in manage_cli_command when it is defined a custom nodejs path
14+
- added timeout for check_output function
15+
- hide .je-project-settings from flow file list
16+
17+
- code refactoring
18+
- deleted find_flow_config function
19+
20+
21+
22+
=================================================================
23+
** THIS PLUGIN IS IN BETA! Thanks for your support in advance! **
24+
=================================================================
25+
26+
If you like it, remember to star it ⭐ on GitHub: https://github.com/pichillilorenzo/JavaScriptEnhancements
27+
28+
** USAGE **
29+
===========
30+
31+
See how it works on the Wiki: 👉👉 https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki 👈👈
32+
33+
34+
** WHAT IS THIS? **
35+
===================
36+
37+
This plugin uses Flow (javascript static type checker from Facebook) under the hood.
38+
39+
It offers better javascript autocomplete and a lot of features about creating,
40+
developing and managing javascript projects, such as:
41+
42+
- Cordova projects (run cordova emulate, build, compile, serve, etc. directly from Sublime Text!)
43+
- Ionic v1 and v2 projects (same as Cordova projects!)
44+
- Angular v1 and v2 projects
45+
- React projects (only about the creation for the moment)
46+
- React Native projects (only about the creation for the moment. I will add also NativeScript support)
47+
- Express projects (only about the creation for the moment)
48+
- Yeoman generators
49+
- Local bookmarks project
50+
- JavaScript real-time errors
51+
- etc.
52+
53+
You could use it also in existing projects (see the Wiki - https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Using-it-with-an-existing-project)!
54+
55+
It turns Sublime Text into a JavaScript IDE like!
56+
57+
This project is based on my other Sublime Text plugin JavaScript Completions (https://github.com/pichillilorenzo/JavaScript-Completions)
58+
59+
** NOTE **
60+
If you want use this plugin, you may want uninstall/disable the JavaScript Completions plugin, if installed.
61+
62+
** OS SUPPORTED NOW **
63+
======================
64+
65+
👉 Linux (64-bit)
66+
👉 Mac OS X
67+
👉 Windows (64-bit): released without the use of TerminalView plugin. For each feature (like also creating a project) will be used the cmd.exe shell (so during the creation of a project don't close it until it finishes!). Unfortunately the TerminalView plugin supports only Linux-based OS 😞. Has someone any advice or idea about that? Is there something similar to the TerminalView plugin for Windows?? Thanks!
68+
69+
❗❗ Dependencies ❗❗
70+
=======================
71+
72+
In order to work properly, this plugin has some dependencies:
73+
74+
👉 Sublime Text 3 (build 3124 or newer)
75+
👉 Node.js and npm (https://nodejs.org or nvm (https://github.com/creationix/nvm))
76+
👉 TerminalView (only for Linux and Mac OS X) sublime text plugin (https://github.com/Wramberg/TerminalView)
77+
78+
Not required, but useful for typescript files (Flow wont work on this type of files):
79+
80+
👉 TypeScript sublime text plugin (https://github.com/Microsoft/TypeScript-Sublime-Plugin)
81+
82+
** Flow Requirements **
83+
=======================
84+
85+
It use [Flow](https://github.com/facebook/flow) for type checking and auto-completions.
86+
87+
👉 Mac OS X
88+
👉 Linux (64-bit)
89+
👉 Windows (64-bit)
90+
91+
Email me for any questions or doubts about this new project on: [email protected]
92+
93+
Thanks for your support! 😄😄
94+
95+
MIT License

make/_init.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from shutil import copyfile
44
from threading import Timer
55

6-
PLUGIN_VERSION = "0.11.11"
6+
PLUGIN_VERSION = "0.13.0"
77

88
PACKAGE_PATH = os.path.abspath(os.path.dirname(__file__))
99
PACKAGE_NAME = os.path.basename(PACKAGE_PATH)

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@
88
"0.1.14": "changelog/0.1.14.txt",
99
"0.11.0": "changelog/0.11.0.txt",
1010
"0.11.1": "changelog/0.11.1.txt",
11-
"0.11.11": "changelog/0.11.11.txt"
11+
"0.11.11": "changelog/0.11.11.txt",
12+
"0.13.0": "changelog/0.13.0.txt"
1213
}

0 commit comments

Comments
 (0)