Add license, and ability to sideload channel.
David Blume

David Blume commited on 2015-11-09 11:18:05
Showing 3 changed files, with 27 additions and 5 deletions.

... ...
@@ -0,0 +1,14 @@
1
+            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
2
+                    Version 2, December 2004
3
+
4
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
5
+
6
+ Everyone is permitted to copy and distribute verbatim or modified
7
+ copies of this license document, and changing it is allowed as long
8
+ as the name is changed.
9
+
10
+            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
11
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
12
+
13
+  0. You just DO WHAT THE FUCK YOU WANT TO.
14
+
... ...
@@ -19,7 +19,14 @@ If you're me, and you want to contribute to the repo, then you can clone it like
19 19
 [Ensure you can sideload a dev channel](http://sdkdocs.roku.com/display/sdkdoc/Loading+and+Running+Your+Application+Walkthrough).
20 20
 Then see the "build_systems" command in Family Photos.sublime-project to see how the channel is zipped and deployed.
21 21
 
22
+# Is it any good?
23
+
24
+[Yes](https://news.ycombinator.com/item?id=3067434).
25
+
22 26
 # To Do
23 27
 
24
-1. Implement the deploy bit you mentioned above.
25
-2. Try the new SDK
28
+1. Try the new SDK
29
+
30
+# Licence
31
+
32
+This software uses the [WTFPL](http://www.wtfpl.net/).
... ...
@@ -2,9 +2,10 @@
2 2
 	"build_systems":
3 3
 	[
4 4
 		{
5
-			"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
6
-			"name": "Cygwin Make",
7
-			"shell_cmd": "C:/cygwin64/bin/bash --login $project_base_name/build",
5
+			"name": "Run",
6
+			"linux": {
7
+				"shell_cmd": "source ~/.rokurc && curl -s -S --user rokudev:ahov --digest -F \"archive=@$project_base_name.zip\" -F \"mysubmit=Install\" --output /dev/null --write-out \"%{http_code}\" http://10.12.12.50/plugin_install",
8
+			},
8 9
 			"working_dir": "$project_path"
9 10
 		},
10 11
 		{
11 12