Skip to content

Commit 438554b

Browse files
committed
0.4.0 release
1 parent 8d9d2d2 commit 438554b

File tree

9 files changed

+19
-13
lines changed

9 files changed

+19
-13
lines changed

.webstore/descriptions/en.txt

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

1111

1212
Release notes
13+
v0.4.0 (2022-05-07)
14+
- Hotfix: Twitch's DOM change made the radio mode button invisible
15+
- Tooltip messages are back
16+
- Added a tooltip message to refresh the page in case of any issues
17+
- Updated all dependencies
18+
1319
v0.3.1 (2021-05-17)
1420
- Hotfix: Twitch's CSS change exposed tooltip text when the radio mode button is not on hover state. Temporarily removed all tooltip messages
1521

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Please install webpack and other dependencies for the project.
4848
After you build the project, two files (dist/background.js, dist/conentscript.js) will be updated with the current TypeScript code.
4949

5050
```
51-
> webpack
51+
> npm run build
5252
```
5353

5454
Load the extension in Chrome browser as instructed in _Install_ section.

_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.3.1",
27+
"message": "Twitch Radio Mode v0.4.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.3.1",
27+
"message": "트위치 라디오 모드 v0.4.0",
2828
"description": "팝업창에 나타날 앱 이름"
2929
},
3030
"EXT_CONFIG_HEADER": {

dist/contentscript.js

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

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "__MSG_EXT_NAME__",
3-
"version": "0.3.1",
3+
"version": "0.4.0",
44
"default_locale": "en",
55
"description": "__MSG_EXT_DESCRIPTION__",
66
"manifest_version": 2,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "twitch_audio",
3-
"version": "0.2.0",
3+
"version": "0.4.0",
44
"description": "This extension for Google Chrome browser lets users play the stream in radio mode.",
55
"private": true,
66
"scripts": {

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.3.1</h2>
12+
<h2 id="extension-title-text">Twitch Radio Mode v0.4.0</h2>
1313
</div>
1414
<div class="extension-config">
1515
<h4 id="extension-config-header">Configs</h4>

readme/README.ko.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
웹팩으로 빌드 시 dist/background.js 와 dist/contentscript.js 파일이 업데이트됩니다.
3636

3737
```
38-
> webpack
38+
> npm run build
3939
```
4040

4141
컴파일된 코드를 크롬 브라우저에서 설치해 주세요.

0 commit comments

Comments
 (0)