diff --git a/app/app.js b/app/app.js index 6392cdd..1ef05c3 100644 --- a/app/app.js +++ b/app/app.js @@ -33,6 +33,9 @@ const app = new Vue({ this.darkTheme = !this.darkTheme; streamlabs.userSettings.set('dark_theme', this.darkTheme); }, + openRelease: function() { + streamlabsOBS.v1.External.openExternalLink('https://github.com/tso/sc2-auto-scene-switcher/releases/tag/v0.0.7'); + }, } }); diff --git a/app/dark.css b/app/dark.css index 4da45a8..b6fd59b 100644 --- a/app/dark.css +++ b/app/dark.css @@ -2,7 +2,7 @@ html, body { background-color: rgb(26, 36, 44); } -h3, label { +p, h3, label { color: rgb(190, 190, 190); margin-bottom: 0; } diff --git a/app/index.html b/app/index.html index 9494ccc..0fc85fe 100644 --- a/app/index.html +++ b/app/index.html @@ -1,50 +1,54 @@ - - - - Starcraft II Auto Scene Switcher - - - - - - - - - -
- - - - -

StarCraft II Auto Scene Switcher

- -
- - - - - - - - -
- -
- - -
-
- - + + + + Starcraft II Auto Scene Switcher + + + + + + + + + +
+ + + + +

StarCraft II Auto Scene Switcher

+

+ Remember that you need to run the proxy server to allow this app + to access the StarCraft II client API. You can download that here. +

+ +
+ + + + + + + + +
+ +
+ + +
+
+ + diff --git a/app/manifest.json b/app/manifest.json index 4f8565e..197eed9 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,16 +1,17 @@ -{ - "version": "0.0.6", - "name": "StarCraft II Auto Scene Switcher", - "permissions": [ - "slobs.scenes-sources" - ], - "sources": [], - "pages": [ - { - "slot": "top_nav", - "file": "index.html", - "allowPopout": false, - "persistent": true - } - ] -} +{ + "version": "0.0.7", + "name": "StarCraft II Auto Scene Switcher", + "permissions": [ + "slobs.scenes-sources", + "slobs.external-links" + ], + "sources": [], + "pages": [ + { + "slot": "top_nav", + "file": "index.html", + "allowPopout": false, + "persistent": true + } + ] +}