Skip to content

Commit

Permalink
Merge pull request #1 from JustCoderdev/Development
Browse files Browse the repository at this point in the history
1.0.1 - 2022.07.09 | Minor fixes
  • Loading branch information
JustCoderdev authored Jul 11, 2022
2 parents d5b0254 + d4de7b5 commit 7afb6aa
Show file tree
Hide file tree
Showing 15 changed files with 533 additions and 508 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
.vscode/
env.py
env.py
temp/
index.spec
23 changes: 21 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,28 @@ Here there is going to be the changelog of the new versions of the plugin

## [Released]

## [1.0.0] - 2022.07.09 | 'Release'
## [1.0.0] - 2022.07.09 | Release

All of the basic features on the plugin

## [1.0.1] - 2022.07.09 | Minor fixes

### Added

- Refresh button example in [helpers](./helpers/touchportal/buttons)

### Changed

- Sdk version change from 3 to 6 to group `refresh_state` and `time_until_refresh` states under the name of `Twitch Activity` throughout Touch Portal menus

- Default value for `Dynamic image (bool)` from false (0) to true (1)
- To avoid problem and misunderstandings any patch is going to add a version to the plugin, so now it's on version 2 🎉

### Fixed

- Logging event exposing `CLIENT-SECRET` and `CLIENT-ID` of Twitch API now removed
- On the showcase page, the refresh button was colored red every time it was updated instead of green

<!-- ## [Unreleased] -->

<!--
Expand All @@ -24,4 +42,5 @@ All of the basic features on the plugin

<!-- [unreleased]: https://github.com/JustCoderdev/TwitchActivity -->

[1.0.0]: https://github.com/JustCoderdev/TwitchActivity/tree/
[1.0.0]: https://github.com/JustCoderdev/TwitchActivity/tree/d5b02548cd3f141b0994c05cfed2e136c222fb90
[1.0.1]: https://github.com/JustCoderdev/TwitchActivity/tree/
10 changes: 6 additions & 4 deletions TwitchActivity/entry.tp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": 3,
"version": 1,
"sdk": 6,
"version": 2,
"name": "Twitch Activity",
"id": "com.github.justcoderdev.twitchactivity",
"configuration": {
Expand Down Expand Up @@ -61,6 +61,7 @@
"type": "choice",
"desc": "Refresh state",
"default": "idle",
"parentGroup": "Twitch Activity",
"valueChoices": [
"refresh",
"idle",
Expand All @@ -71,7 +72,8 @@
"id": "com.github.justcoderdev.twitchactivity.state.time_until_refresh",
"type": "text",
"desc": "Time until refresh",
"default": "600"
"default": "600",
"parentGroup": "Twitch Activity"
}
]
}
Expand All @@ -90,7 +92,7 @@
},
{
"name": "Dynamic image (bool)",
"default": "0",
"default": "1",
"type": "number",
"minValue": 0,
"maxValue": 1
Expand Down
Binary file modified TwitchActivity/index.exe
Binary file not shown.
5 changes: 2 additions & 3 deletions build/scripts/WebHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
from PIL import Image

#* DEBUG
from logging import DEBUG, basicConfig, info
from logging import INFO, basicConfig, info


open('.\log.txt', 'w').write('')

basicConfig(filename='.\log.txt', level=DEBUG)
basicConfig(filename='.\log.txt', level=INFO)


def log(msg: str):
Expand Down
388 changes: 194 additions & 194 deletions build/temp/index/Analysis-00.toc

Large diffs are not rendered by default.

Loading

0 comments on commit 7afb6aa

Please sign in to comment.