Skip to content

Commit

Permalink
updated changelog name
Browse files Browse the repository at this point in the history
  • Loading branch information
pichillilorenzo committed Jan 8, 2018
1 parent 0496c28 commit 5c2b5d8
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5390,7 +5390,7 @@ def start():
print(node.getCurrentNodeJSVersion())
except Exception as err:
print(err)
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")
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")
if response == sublime.DIALOG_YES:
sublime.active_window().run_command("open_url", args={"url": "https://nodejs.org"})
elif response == sublime.DIALOG_NO:
Expand All @@ -5402,7 +5402,7 @@ def start():
print(npm.getCurrentNPMVersion())
except Exception as err:
print(err)
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")
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")
if response == sublime.DIALOG_YES:
sublime.active_window().run_command("open_url", args={"url": "https://nodejs.org"})
elif response == sublime.DIALOG_NO:
Expand Down
2 changes: 1 addition & 1 deletion changelog/0.11.00.txt → changelog/0.11.0.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v0.11.00
v0.11.0

## Fixes

Expand Down
17 changes: 12 additions & 5 deletions changelog/0.1.01.txt → changelog/0.11.1.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
v0.1.01
v0.11.1

## Just a little improvement
## Fixes

- some bug fixes for create project feature

## Improvements

- Added support for Windows without TermivalView plugin but using the cmd.exe shell


=================================================================
Expand Down Expand Up @@ -31,9 +37,9 @@ developing and managing javascript projects, such as:
- Yeoman generators
- Local bookmarks project
- JavaScript real-time errors
- etc.
- etc. (I will add also React Native and NativeScript support)

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

It turns Sublime Text into a JavaScript IDE like!

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

👉 Linux (64-bit)
👉 Mac OS X
👉 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!

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

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

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

Expand Down
4 changes: 2 additions & 2 deletions make/_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def start():
print(node.getCurrentNodeJSVersion())
except Exception as err:
print(err)
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")
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")
if response == sublime.DIALOG_YES:
sublime.active_window().run_command("open_url", args={"url": "https://nodejs.org"})
elif response == sublime.DIALOG_NO:
Expand All @@ -160,7 +160,7 @@ def start():
print(npm.getCurrentNPMVersion())
except Exception as err:
print(err)
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")
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")
if response == sublime.DIALOG_YES:
sublime.active_window().run_command("open_url", args={"url": "https://nodejs.org"})
elif response == sublime.DIALOG_NO:
Expand Down
4 changes: 2 additions & 2 deletions messages.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"install": "changelog/install.txt",
"0.1.0": "changelog/0.1.0.txt",
"0.1.01": "changelog/0.1.01.txt",
"0.1.10": "changelog/0.1.10.txt",
"0.1.11": "changelog/0.1.11.txt",
"0.1.12": "changelog/0.1.12.txt",
"0.1.13": "changelog/0.1.13.txt",
"0.1.14": "changelog/0.1.14.txt",
"0.11.00": "changelog/0.11.00.txt"
"0.11.0": "changelog/0.11.0.txt",
"0.11.1": "changelog/0.11.1.txt"
}

0 comments on commit 5c2b5d8

Please sign in to comment.