Skip to content

Commit

Permalink
Update docs and get ready for the next big update.
Browse files Browse the repository at this point in the history
  • Loading branch information
PakL committed Nov 10, 2017
1 parent 8405e6f commit debe6e0
Show file tree
Hide file tree
Showing 31 changed files with 2,288 additions and 343 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,13 @@ To make TTVST unique for your streaming needs it's possible to create your own o

The TTVStreamerTool is developed and tested on an Windows 10 x64 system. I guess everything >= Windows 8 should work.

Linux or MacOS are **not** supported. *You could download the source code and tweak it here and there to make it work though...*
Linux or MacOS are **not** supported. (And propably never will be.)

### Download & Install

Download the zip in the v0.1.2 release and unpack it somewhere you don't need elevated writing rights. This is because the auto updater needs to overwrite some files there. You could start the program as an administrator but this is not recommended.
Download the Setup.exe of the latest release and execute it. The application will install and create a few shortcuts. From then on the application should keep itself updated. Since I don't have the time or money for an code signing certificate the Setup.exe might be blocked from executing. It's up to you to trust this application. Do not install a Setup.exe that was not downloaded from the releases page of this project. Stay safe!

After unpacking start the tool by double clicking the `ttv-streamertool.exe`.

» [Version 0.1.2 release](https://github.com/PakL/TTVStreamerTool/releases/tag/v0.1.2)
» [Find tha latest release](https://github.com/PakL/TTVStreamerTool/releases/)

### Screenshot

Expand Down
12 changes: 6 additions & 6 deletions docs/Addons.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Channel.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Chat.html

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions docs/Cockpit.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Follows.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Overlays.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/TTVLogin.html

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions docs/TTVTool.html

Large diffs are not rendered by default.

741 changes: 726 additions & 15 deletions docs/ToolSettings.html

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions docs/ToolUI.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/TwitchChat.html

Large diffs are not rendered by default.

1,406 changes: 1,166 additions & 240 deletions docs/TwitchTv.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/UIPage.html

Large diffs are not rendered by default.

9 changes: 4 additions & 5 deletions docs/index.html

Large diffs are not rendered by default.

29 changes: 22 additions & 7 deletions docs/lib_addons.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/lib_auth.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/lib_chat.js.html

Large diffs are not rendered by default.

28 changes: 24 additions & 4 deletions docs/lib_cockpit.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/lib_overlay.js.html

Large diffs are not rendered by default.

179 changes: 178 additions & 1 deletion docs/lib_settings.js.html

Large diffs are not rendered by default.

23 changes: 15 additions & 8 deletions docs/mod_tool.js.html

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions docs/mod_toolui.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/mod_twitchchat.js.html

Large diffs are not rendered by default.

77 changes: 74 additions & 3 deletions docs/mod_twitchtv.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/mod_uipage.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/tutorial-Getting Started.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/var_channel.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/var_follows.js.html

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions lib/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,41 +60,53 @@ class ToolSettings {
}

/**
* Loads and returns weither or not to show follow alerts
*
* @member {Boolean}
* @readonly
*/
get showFollowAlert() {
return this.getBoolean('showfollowalert', true)
}
/**
* Loads and returns weither or not to show subscription alerts
*
* @member {Boolean}
* @readonly
*/
get showSubscriptionAlert() {
return this.getBoolean('showsubscriptionalert', true)
}
/**
* Loads and returns weither or not to show raid alerts
*
* @member {Boolean}
* @readonly
*/
get showRaidAlert() {
return this.getBoolean('showraidalert', true)
}
/**
* Loads and returns weither or not to show host alerts
*
* @member {Boolean}
* @readonly
*/
get showHostAlert() {
return this.getBoolean('showhostalert', true)
}
/**
* Loads and returns weither or not to show ban alerts
*
* @member {Boolean}
* @readonly
*/
get showBanAlert() {
return this.getBoolean('showbanalert', true)
}
/**
* Loads and returns weither or not to show timeout alerts
*
* @member {Boolean}
* @readonly
*/
Expand All @@ -103,6 +115,8 @@ class ToolSettings {
}

/**
* Loads and returns weither or not to show the viewers list
*
* @member {Boolean}
* @readonly
*/
Expand All @@ -120,6 +134,12 @@ class ToolSettings {
return this.getJSON('highlights', [])
}

/**
* Loads and returns weither or not to invert the application's colors
*
* @member {Boolean}
* @readonly
*/
get lightDesignMode() {
return this.getBoolean('lightdesignmode', false)
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ttv-streamertool",
"version": "0.1.7",
"version": "0.2.0",
"main": "main.js",
"description": "TTVST is an application aimed at Twitch streamer.",
"author": {
Expand Down

0 comments on commit debe6e0

Please sign in to comment.