-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed a bug which affected minification of file on OSX,
optimized background operation in ST3, added debug info to the console
- Loading branch information
Showing
3 changed files
with
48 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Version 1.0.4 | ||
------------- | ||
|
||
* Fixed an issue which prevented the minification processes to run on the OSX platform | ||
(The issue was caused by the fact that we must run uglifyjs in a system shell on Windows, | ||
however runnning the same minification commands in a system shell simply won't work on OSX) | ||
* Fixed an issue which prevented the sublime.set_timeout_async method to be used when available | ||
(All minification commands still run in the background using python's threading module, | ||
however it is unnecessary when the sublime.set_timeout_async method is provided, e.g: in ST3) | ||
* Added some debug info to be displayed in the console |