Skip to content

Commit

Permalink
Merge pull request #161 from LordTocs/tocs
Browse files Browse the repository at this point in the history
0.2.1 New Logo, Who Dis?

New Stuff:
* New Logo!
* Add Create Clip Action: Creates a clip on twitch of the last 30 seconds.
  * Sorry it's not configurable, it's a limitation of twitches api 
* Add autocomplete for scenes in the filter action (Thanks GraveEmbrace) 



Bug Fixes:
* Fix empty chat commands not matching every chat message (Thanks dix0nm8)
* Fixed Input emulation not working in some games (Thanks DonMortis)
  * My attempts to use third party libs to do input emulation have not gone well. I've re-implemented this entirely in-house and now it works in games!
* Fixed click and drag weirdness in the action editor
* Fix action queue bug stopping chat command permissions from functioning properly
  • Loading branch information
LordTocs authored Jul 11, 2022
2 parents 577f903 + ceced50 commit a7ea452
Show file tree
Hide file tree
Showing 17 changed files with 2,044 additions and 3,901 deletions.
Binary file modified build/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4,434 changes: 659 additions & 3,775 deletions package-lock.json

Large diffs are not rendered by default.

16 changes: 9 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "castmate",
"version": "0.2.1",
"version": "0.2.2",
"private": "true",
"description": "CastMate is a broadcaster tool that allows Twitch viewers to interact with a broadcasters stream components through Chat Commands, Channel Point rewards, and more.",
"author": "LordTocs & FitzBro",
Expand All @@ -12,15 +12,14 @@
"electron:serve": "vue-cli-service electron:serve --portable",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"rebuild": "npm rebuild --runtime=electron --target=12.2.3 --disturl=https://atom.io/download/atom-shell --abi=87"
"rebuild": "npm rebuild --runtime=electron --target=18.2.0 --abi=103 --arch=x64 --webpack=true",
"erebuild": "electron-rebuild --version=18.2.0 --force"
},
"main": "background.js",
"dependencies": {
"@electron/remote": "^2.0.1",
"@jaames/iro": "^5.5.2",
"@julusian/jpeg-turbo": "^1.1.1",
"@mdi/font": "^6.5.95",
"@nut-tree/nut-js": "^2.0.0",
"@peter-murray/hue-bridge-model": "^2.0.4",
"@twurple/api": "^5.0.13",
"@twurple/auth": "^5.0.13",
Expand All @@ -35,21 +34,22 @@
"core-js": "^3.6.5",
"cs-gamestate": "^2.2.3",
"electron": "^18.2.0",
"electron-rebuild": "^3.2.7",
"electron-serve": "^1.1.0",
"electron-updater": "^4.6.1",
"express": "^4.17.1",
"ffi-napi": "^4.0.3",
"got": "^11.8.3",
"jsdom": "^16.7.0",
"lodash": "^4.17.21",
"mixpanel": "^0.14.0",
"nanoid": "^3.1.32",
"node-hue-api": "^5.0.0-beta.13",
"node-key-sender": "^1.0.11",
"obs-websocket-js": "^4.0.3",
"public-ip": "^4.0.4",
"rcon": "^1.1.0",
"recursive-readdir": "^2.2.2",
"ref-napi": "^3.0.3",
"ref-struct-di": "^1.1.1",
"regedit": "^5.0.0",
"regenerator-runtime": "^0.13.9",
"say": "^0.16.0",
Expand All @@ -61,7 +61,8 @@
"vuetify": "^2.6.0",
"vuex": "^3.6.2",
"websocket": "^1.0.34",
"win32-api": "^9.6.0",
"win32-api": "^13.5.0",
"win32-def": "^13.5.0",
"winston": "^3.3.3",
"ws": "^8.2.3",
"yaml": "^1.10.2"
Expand All @@ -73,6 +74,7 @@
"@vue/cli-service": "^4.5.15",
"babel-eslint": "^10.1.0",
"electron-devtools-installer": "^3.2.0",
"electron-rebuild": "^3.2.7",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"sass": "^1.43.4",
Expand Down
3 changes: 1 addition & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
>
<v-list-item link to="/">
<v-list-item-content>
<v-list-item-title class="title"> CastMate </v-list-item-title>
<!--v-list-item-subtitle> subtext </v-list-item-subtitle-->
<v-list-item-title class="title"> <img src="./assets/logo-mark-dark.svg" style="height: 1.7em"> </v-list-item-title>
</v-list-item-content>
</v-list-item>

Expand Down
Binary file removed src/assets/icons/icon.ico
Binary file not shown.
Binary file modified src/assets/icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a7ea452

Please sign in to comment.