feat(SublimeText2.WebPackages): cache packages
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
CoffeeScript-Sublime-Plugin 0.5.1 Changelog
|
||||
|
||||
Features
|
||||
|
||||
- Added the missing Compile File command (alt+shift+c). This is useful if you
|
||||
just want to quickly compile a .coffee file to a .js file in the same directory.
|
||||
|
||||
Enhancements
|
||||
|
||||
- Added support for showing upgrade and installation messages, like this one.
|
@@ -0,0 +1,9 @@
|
||||
CoffeeScript-Sublime-Plugin 0.5.2 Changelog
|
||||
|
||||
Changes
|
||||
|
||||
- On Mac OS, the shortcut for displaying lexer tokens has changed to alt+shift+x (for leXer tokens). This is because alt+shift+l is used to insert a pipe character on French keyboards.
|
||||
|
||||
Enhancements
|
||||
|
||||
- Improved the documentation.
|
@@ -0,0 +1,13 @@
|
||||
CoffeeScript-Sublime-Plugin 0.5.2 Changelog
|
||||
|
||||
Fixes
|
||||
|
||||
- Several syntax highlighting issues.
|
||||
- Respect noWrapper setting when compiling.
|
||||
|
||||
Enhancements
|
||||
|
||||
- Added a build variant to quickly display the output of the current
|
||||
script via (ctrl+shift+B or cmd+shift+B).
|
||||
- CSON files are now recognised.
|
||||
- Go To Symbol improvements (see: http://i.stack.imgur.com/2vssw.png).
|
@@ -0,0 +1,21 @@
|
||||
# Changelog
|
||||
## Version 0.5.4 History by [aponxi](https://github.com/aponxi)
|
||||
|
||||
### Log:
|
||||
* Added Settings to the Package Settings Menu
|
||||
* Added the following Settings:
|
||||
* `watchOnModified` :
|
||||
Can be `False`, `True`, or an `Integer`.
|
||||
1. If its `false`, the watched CoffeeScript won't be compiled when modified
|
||||
2. If its an `Integer` the watched CoffeeScript will be compiled when modified after X seconds. (If you put in 3 then it will be modified only if it has been 3 seconds after the last compile, if you don't make any modifications though, it won't compile until you do)
|
||||
3. If its `true` ( _default_ ), the watched CoffeeScript will be compiled when modified after 3 seconds.
|
||||
* `watchOnSaved` :
|
||||
Can be `True` or `False`.
|
||||
This enables compiling when the CoffeeScript you were editing is Saved.
|
||||
|
||||
* Added Watch Support
|
||||
By default you can press `alt+shift+w` to start the watch mode. It will open an output view which you can close to stop watching. When you are watching your CoffeeScript the compiled output will be inserted in the output view at the begining. After that you can either compile when you modify the CoffeeScript or when you Save it, or both. You can set these settings by going into the package settings. Use the User Settings so that if you upgrade, you won't lose your settings.
|
||||
|
||||
### Known Issues:
|
||||
|
||||
1. [Issue #1](https://github.com/aponxi/CoffeeScript-Sublime-Plugin/issues/1): If you are watching the file and it compiles whenever you modify without delay, then Sublime Text 2 can be unresponsive. Until this is fixed, please use a delay on `watchOnModified` setting, by either setting it to True, False or something > 0.
|
@@ -0,0 +1,22 @@
|
||||
# Changelog
|
||||
## Version 0.5.5 History by [aponxi](https://github.com/aponxi)
|
||||
|
||||
### Log:
|
||||
* Fixed refreshing on modified. Now there is always a delay by default which is 0.5 seconds.
|
||||
* Now closing the CoffeeScript closes the Compiled JS output.
|
||||
* When you close the Compiled JS Output view, you stop watch mode.
|
||||
* `alt+shift+w` successfully toggles watchmode on and off.
|
||||
* When the CoffeeScript is closed upon watch mode, the code is cleaned up.
|
||||
* Fixed output messages.
|
||||
* Removed unused settings
|
||||
|
||||
The code runs smoother now. Doesn't slow down.
|
||||
|
||||
On this version worked heavily on WatchMode. And it was a hell of a work!
|
||||
|
||||
_
|
||||
__ _ _ __ ___ _ __ __ _(_)
|
||||
/ _` | '_ \ / _ \| '_ \\ \/ / |
|
||||
| (_| | |_) | (_) | | | |> <| |
|
||||
\__,_| .__/ \___/|_| |_/_/\_\_|
|
||||
|_|
|
@@ -0,0 +1,14 @@
|
||||
# Changelog
|
||||
## Version 0.5.6 History by [aponxi](https://github.com/aponxi)
|
||||
|
||||
### Log:
|
||||
* Fixed some minor issues which disabled update on modified
|
||||
* Now after creating output panel, it refreshes.
|
||||
|
||||
|
||||
_
|
||||
__ _ _ __ ___ _ __ __ _(_)
|
||||
/ _` | '_ \ / _ \| '_ \\ \/ / |
|
||||
| (_| | |_) | (_) | | | |> <| |
|
||||
\__,_| .__/ \___/|_| |_/_/\_\_|
|
||||
|_|
|
@@ -0,0 +1,31 @@
|
||||
# v0.6.3 25/Jan/2013
|
||||
* added compileDir option which specifies `coffee -o` arg when compiling.
|
||||
* Fixed settings file name. It was Coffeescript when it should have been CoffeeScript. Fixes #19
|
||||
* compileDir path works only if it exists.
|
||||
* now also works if it doesn't exist.
|
||||
* changed default compileDir option to false thus compiling a coffee script to the same directory as default.
|
||||
|
||||
# v0.6.2 16/Jan/2013
|
||||
- Updated package.json, bumped up version.
|
||||
|
||||
# v0.6.1 16/Jan/2013
|
||||
- Added utf-8 encode/decode to prevent unicode decode errors, fixed #17
|
||||
- Corrected years in 0.6 changelog... Should get used to it by now.
|
||||
- Added error output in panel which fixes #16
|
||||
|
||||
# v0.6 Changelog - 16/Jan/2013
|
||||
|
||||
- Changed menu name to "Better Coffeescript"
|
||||
- Changed menu arguments to be directed to `sublime-better-coffeescript` folders, settings files are still kept as `Coffeescript.sublime-settings`
|
||||
- Fixed lint errors
|
||||
- if delay is lower than < 0.5 then we are saying that minimum delay should be 0.5
|
||||
- added a method that gets the input's filename with .js extension
|
||||
- setting the output view's name as filename.js fixes #13
|
||||
- added compileOnSave option fixes #14
|
||||
- updated readme fixes #6
|
||||
- added compile output class
|
||||
- added compile_output command, it displays the console.logs and what not in a panel
|
||||
- added compile_output command to the context menu (right click). This only works for coffeescripts.
|
||||
- Added that it existed in README.
|
||||
- Added option for showOutputOnSave
|
||||
- Need a way of telling if output is open or closed/hidden #15
|
Reference in New Issue
Block a user