build: Packaging Script for Windows

* added packaging script for windows
* renamed sublime plugin.
* added tictactoe project to packages projects
This commit is contained in:
malte_langkabel
2015-11-16 15:42:23 +01:00
parent fc816240cb
commit 8f0213e18c
24 changed files with 625 additions and 3 deletions
@@ -52,7 +52,7 @@ class ServerStartupListener(sublime_plugin.EventListener):
if (not self.running):
self.running = True
settings = sublime.load_settings('CoatiCommunicator.sublime-settings')
settings = sublime.load_settings('CoatiPlugin.sublime-settings')
host_ip = settings.get('host_ip')
coati_to_plugin_port = settings.get('coati_to_sublime_port')
@@ -74,7 +74,7 @@ class SetActiveTokenCommand(sublime_plugin.TextCommand):
text = "setActiveToken" + MESSAGE_SPLIT_STRING + filePath + MESSAGE_SPLIT_STRING + str(row) + MESSAGE_SPLIT_STRING + str(col) + "<EOM>"
data = text.encode()
settings = sublime.load_settings('CoatiCommunicator.sublime-settings')
settings = sublime.load_settings('CoatiPlugin.sublime-settings')
host_ip = settings.get('host_ip')
plugin_to_coati_port = settings.get('sublime_to_coati_port')
+1 -1
View File
@@ -1,5 +1,5 @@
How to Install:
Just copy and past this "CoatiCommunicator" folder into your Packages folder of Sublime Text. (You can find
Just copy and past this "CoatiPlugin" folder into your Packages folder of Sublime Text. (You can find
that folder from within Sublime via the menu: Preferences -> Browse Packages...). Restart Sublime before
starting to use the plugin.
Binary file not shown.
Binary file not shown.
Binary file not shown.