Skip to content
This repository has been archived by the owner on Feb 5, 2020. It is now read-only.

Commit

Permalink
-support for 0.0.5
Browse files Browse the repository at this point in the history
-live_edit is now optional
-update readme
  • Loading branch information
facelessuser committed Apr 8, 2013
1 parent bdea19e commit bb518ed
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
7 changes: 7 additions & 0 deletions README.md
Expand Up @@ -3,6 +3,13 @@ ColorSchemeEditor

Color Scheme Editor for Sublime Text

# Supported Platforms
## Windows
<img src="http://dl.dropbox.com/u/342698/ColorSchemeEditor/Screenshot%20-%204_1_2013%20%2C%202_28_30%20PM.png" border="0"/>

## OSX
<img src="http://dl.dropbox.com/u/342698/ColorSchemeEditor/Screen%20Shot%202013-04-01%20at%203.34.20%20PM.png" border="0"/>

# License

ColorSchemeEditor plugin is released under the MIT license.
Expand Down
3 changes: 2 additions & 1 deletion color_scheme_editor.py
Expand Up @@ -8,7 +8,7 @@
import codecs
from plistlib import writePlistToBytes

MIN_EXPECTED_VERSION = "0.0.3"
MIN_EXPECTED_VERSION = "0.0.5"
PLUGIN_NAME = "ColorSchemeEditor"
THEME_EDITOR = None
TEMP_FOLDER = "ColorSchemeEditorTemp"
Expand Down Expand Up @@ -104,6 +104,7 @@ def run(self, no_direct_edit=True, current_theme=False, new_theme=False):
(["-d"] if bool(p_settings.get("debug", False)) else []) +
(["-n"] if new_theme else []) +
(["-s"] if file_select else []) +
(["-L"] if bool(p_settings.get("live_edit", True)) else []) +
["-l", join(sublime.packages_path(), "User")] +
([actual_scheme_file] if actual_scheme_file is not None and exists(actual_scheme_file) else [])
)
Expand Down
4 changes: 4 additions & 0 deletions color_scheme_editor.sublime-settings
Expand Up @@ -2,6 +2,10 @@
// Enable debugging in the log file: subclrschm.log
"debug": false,

// Enable or disable live editing
// (live editing saves to the file right after changes are made)
"live_edit": true,

// Executable paths
"osx": "${Packages}/User/subclrschm.app",
"windows": "${Packages}\\User\\subclrschm.exe"
Expand Down

0 comments on commit bb518ed

Please sign in to comment.