Skip to content

Commit f836362

Browse files
committed
Bump up the version to v0.6.0
1 parent 6570c30 commit f836362

File tree

9 files changed

+102
-50
lines changed

9 files changed

+102
-50
lines changed

.webstore/descriptions/en.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ The original source code can be found at: https://github.com/c-rainbow/twitch-au
1010

1111

1212
Release notes
13+
v0.6.0 (2022-08-21)
14+
- Fixed a bug that the radio mode was stuck for ~30 seconds before the audio is played.
15+
- Used authorization header to get access token if the user is logged in
16+
1317
v0.5.1 (2022-07-12)
1418
- Fixed a bug that the radio mode was stuck for ~15 seconds before the audio is played.
1519
- Fixed a bug that the radio mode button is always disabled for some people

.webstore/descriptions/ko.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99

1010
Release notes
11+
v0.6.0 (2022-08-21)
12+
- 광고가 재생되는 동안 라디오 모드가 30초정도 무음이었던 버그를 수정하였습니다.
13+
- 라디오모드를 실행할 때 사용자의 로그인 정보를 이용하도록 수정하였습니다.
14+
1115
v0.5.1 (2022-07-12)
1216
- 광고가 재생되는 동안 라디오 모드가 15초정도 무음이었던 버그를 수정하였습니다.
1317
- 일부 사용자에게서 라디오모드가 실행되지 않던 버그를 수정하였습니다.

_locales/en/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"description": "Config name in popup"
2525
},
2626
"POPUP_EXT_NAME": {
27-
"message": "Twitch Radio Mode v0.5.1",
27+
"message": "Twitch Radio Mode v0.6.0",
2828
"description": "Title of extension in popup window"
2929
},
3030
"EXT_CONFIG_HEADER": {

_locales/ko/messages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"description": "팝업 설정에서 사용하는 설정 내용"
2525
},
2626
"POPUP_EXT_NAME": {
27-
"message": "트위치 라디오 모드 v0.5.1",
27+
"message": "트위치 라디오 모드 v0.6.0",
2828
"description": "팝업창에 나타날 앱 이름"
2929
},
3030
"EXT_CONFIG_HEADER": {

dist/background.js

Lines changed: 36 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/contentscript.js

Lines changed: 53 additions & 34 deletions
Large diffs are not rendered by default.

manifest.firefox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 2,
33
"name": "__MSG_EXT_NAME__",
4-
"version": "0.5.1",
4+
"version": "0.6.0",
55

66
"browser_action": {
77
"default_popup": "popup/popup.html"

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "__MSG_EXT_NAME__",
4-
"version": "0.5.1",
4+
"version":"0.6.0",
55

66
"action": {
77
"default_popup": "popup/popup.html"

popup/popup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<img id="extension-logo" src="icon_48w.png"/>
1010
</div>
1111
<div class="extension-title">
12-
<h2 id="extension-title-text">Twitch Radio Mode v0.5.1</h2>
12+
<h2 id="extension-title-text">Twitch Radio Mode v0.6.0</h2>
1313
</div>
1414
<div class="extension-config">
1515
<h4 id="extension-config-header">Configs</h4>

0 commit comments

Comments
 (0)