Skip to content

Commit 5c2b5d8

Browse files
updated changelog name
1 parent 0496c28 commit 5c2b5d8

File tree

5 files changed

+19
-12
lines changed

5 files changed

+19
-12
lines changed

_generated_2018_01_08_at_23_15_43.py renamed to _generated_2018_01_09_at_00_20_38.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5390,7 +5390,7 @@ def start():
53905390
print(node.getCurrentNodeJSVersion())
53915391
except Exception as err:
53925392
print(err)
5393-
response = sublime.yes_no_cancel_dialog("Error during installation: \"node.js\" seems not installed on your system. Node.js and npm are required to be able to use JavaScript Enhancements plugin.\n\nIf you are using \"nvm\" or you have a different path for node.js and npm, please then change the path on:\n\nPreferences > Package Settings > JavaScript Enhancements > Settings\n\nand restart Sublime Text.\n\nIf this doesn't work then try also to add the path of their binaries in the PATH key-value on the same JavaScript Enhancements settings file. This variable will be used to add them in the $PATH environment variable, so put the symbol \":\" in front of your path.\n\nDo you want open the website of node.js?", "Yes, open it", "Or use nvm")
5393+
response = sublime.yes_no_cancel_dialog("Error during installation: \"node.js\" seems not installed on your system. Node.js and npm are required to be able to use JavaScript Enhancements plugin.\n\nIf you are using \"nvm\" or you have a different path for node.js and npm, please then change the path on:\n\nPreferences > Package Settings > JavaScript Enhancements > Settings\n\nand restart Sublime Text.\n\nIf this doesn't work then try also to add the path of their binaries in the PATH key-value on the same JavaScript Enhancements settings file. This variable will be used to add them in the $PATH environment variable, so put the symbol \":\" (instead \";\" for Windows) in front of your path.\n\nDo you want open the website of node.js?", "Yes, open it", "Or use nvm")
53945394
if response == sublime.DIALOG_YES:
53955395
sublime.active_window().run_command("open_url", args={"url": "https://nodejs.org"})
53965396
elif response == sublime.DIALOG_NO:
@@ -5402,7 +5402,7 @@ def start():
54025402
print(npm.getCurrentNPMVersion())
54035403
except Exception as err:
54045404
print(err)
5405-
response = sublime.yes_no_cancel_dialog("Error during installation: \"npm\" seems not installed on your system. Node.js and npm are required to be able to use JavaScript Enhancements plugin.\n\nIf you are using \"nvm\" or you have a different path for node.js and npm, please change their custom path on:\n\nPreferences > Package Settings > JavaScript Enhancements > Settings\n\nand restart Sublime Text.\n\nIf this doesn't work then try also to add the path of their binaries in the PATH key-value on the same JavaScript Enhancements settings file. This variable will be used to add them in the $PATH environment variable, so put the symbol \":\" in front of your path.\n\nDo you want open the website of node.js?", "Yes, open it", "Or use nvm")
5405+
response = sublime.yes_no_cancel_dialog("Error during installation: \"npm\" seems not installed on your system. Node.js and npm are required to be able to use JavaScript Enhancements plugin.\n\nIf you are using \"nvm\" or you have a different path for node.js and npm, please change their custom path on:\n\nPreferences > Package Settings > JavaScript Enhancements > Settings\n\nand restart Sublime Text.\n\nIf this doesn't work then try also to add the path of their binaries in the PATH key-value on the same JavaScript Enhancements settings file. This variable will be used to add them in the $PATH environment variable, so put the symbol \":\" (instead \";\" for Windows) in front of your path.\n\nDo you want open the website of node.js?", "Yes, open it", "Or use nvm")
54065406
if response == sublime.DIALOG_YES:
54075407
sublime.active_window().run_command("open_url", args={"url": "https://nodejs.org"})
54085408
elif response == sublime.DIALOG_NO:

changelog/0.11.00.txt renamed to changelog/0.11.0.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v0.11.00
1+
v0.11.0
22

33
## Fixes
44

changelog/0.1.01.txt renamed to changelog/0.11.1.txt

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
v0.1.01
1+
v0.11.1
22

3-
## Just a little improvement
3+
## Fixes
4+
5+
- some bug fixes for create project feature
6+
7+
## Improvements
8+
9+
- Added support for Windows without TermivalView plugin but using the cmd.exe shell
410

511

612
=================================================================
@@ -31,9 +37,9 @@ developing and managing javascript projects, such as:
3137
- Yeoman generators
3238
- Local bookmarks project
3339
- JavaScript real-time errors
34-
- etc.
40+
- etc. (I will add also React Native and NativeScript support)
3541

36-
You could use it also in existing projects (see the Wiki - https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki)!
42+
You could use it also in existing projects (see the Wiki - https://github.com/pichillilorenzo/JavaScriptEnhancements/wiki/Using-it-with-an-existing-project)!
3743

3844
It turns Sublime Text into a JavaScript IDE like!
3945

@@ -47,6 +53,7 @@ If you want use this plugin, you may want uninstall/disable the JavaScript Compl
4753

4854
👉 Linux (64-bit)
4955
👉 Mac OS X
56+
👉 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!
5057

5158
❗❗ Dependencies ❗❗
5259
=======================
@@ -55,7 +62,7 @@ In order to work properly, this plugin has some dependencies:
5562

5663
👉 Sublime Text 3 (build 3124 or newer)
5764
👉 Node.js and npm (https://nodejs.org or nvm (https://github.com/creationix/nvm))
58-
👉 TerminalView sublime text plugin (https://github.com/Wramberg/TerminalView)
65+
👉 TerminalView (only for Linux and Mac OS X) sublime text plugin (https://github.com/Wramberg/TerminalView)
5966

6067
Not required, but useful for typescript files (Flow wont work on this type of files):
6168

make/_init.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def start():
148148
print(node.getCurrentNodeJSVersion())
149149
except Exception as err:
150150
print(err)
151-
response = sublime.yes_no_cancel_dialog("Error during installation: \"node.js\" seems not installed on your system. Node.js and npm are required to be able to use JavaScript Enhancements plugin.\n\nIf you are using \"nvm\" or you have a different path for node.js and npm, please then change the path on:\n\nPreferences > Package Settings > JavaScript Enhancements > Settings\n\nand restart Sublime Text.\n\nIf this doesn't work then try also to add the path of their binaries in the PATH key-value on the same JavaScript Enhancements settings file. This variable will be used to add them in the $PATH environment variable, so put the symbol \":\" in front of your path.\n\nDo you want open the website of node.js?", "Yes, open it", "Or use nvm")
151+
response = sublime.yes_no_cancel_dialog("Error during installation: \"node.js\" seems not installed on your system. Node.js and npm are required to be able to use JavaScript Enhancements plugin.\n\nIf you are using \"nvm\" or you have a different path for node.js and npm, please then change the path on:\n\nPreferences > Package Settings > JavaScript Enhancements > Settings\n\nand restart Sublime Text.\n\nIf this doesn't work then try also to add the path of their binaries in the PATH key-value on the same JavaScript Enhancements settings file. This variable will be used to add them in the $PATH environment variable, so put the symbol \":\" (instead \";\" for Windows) in front of your path.\n\nDo you want open the website of node.js?", "Yes, open it", "Or use nvm")
152152
if response == sublime.DIALOG_YES:
153153
sublime.active_window().run_command("open_url", args={"url": "https://nodejs.org"})
154154
elif response == sublime.DIALOG_NO:
@@ -160,7 +160,7 @@ def start():
160160
print(npm.getCurrentNPMVersion())
161161
except Exception as err:
162162
print(err)
163-
response = sublime.yes_no_cancel_dialog("Error during installation: \"npm\" seems not installed on your system. Node.js and npm are required to be able to use JavaScript Enhancements plugin.\n\nIf you are using \"nvm\" or you have a different path for node.js and npm, please change their custom path on:\n\nPreferences > Package Settings > JavaScript Enhancements > Settings\n\nand restart Sublime Text.\n\nIf this doesn't work then try also to add the path of their binaries in the PATH key-value on the same JavaScript Enhancements settings file. This variable will be used to add them in the $PATH environment variable, so put the symbol \":\" in front of your path.\n\nDo you want open the website of node.js?", "Yes, open it", "Or use nvm")
163+
response = sublime.yes_no_cancel_dialog("Error during installation: \"npm\" seems not installed on your system. Node.js and npm are required to be able to use JavaScript Enhancements plugin.\n\nIf you are using \"nvm\" or you have a different path for node.js and npm, please change their custom path on:\n\nPreferences > Package Settings > JavaScript Enhancements > Settings\n\nand restart Sublime Text.\n\nIf this doesn't work then try also to add the path of their binaries in the PATH key-value on the same JavaScript Enhancements settings file. This variable will be used to add them in the $PATH environment variable, so put the symbol \":\" (instead \";\" for Windows) in front of your path.\n\nDo you want open the website of node.js?", "Yes, open it", "Or use nvm")
164164
if response == sublime.DIALOG_YES:
165165
sublime.active_window().run_command("open_url", args={"url": "https://nodejs.org"})
166166
elif response == sublime.DIALOG_NO:

messages.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"install": "changelog/install.txt",
33
"0.1.0": "changelog/0.1.0.txt",
4-
"0.1.01": "changelog/0.1.01.txt",
54
"0.1.10": "changelog/0.1.10.txt",
65
"0.1.11": "changelog/0.1.11.txt",
76
"0.1.12": "changelog/0.1.12.txt",
87
"0.1.13": "changelog/0.1.13.txt",
98
"0.1.14": "changelog/0.1.14.txt",
10-
"0.11.00": "changelog/0.11.00.txt"
9+
"0.11.0": "changelog/0.11.0.txt",
10+
"0.11.1": "changelog/0.11.1.txt"
1111
}

0 commit comments

Comments
 (0)