Skip to content
This repository was archived by the owner on Jun 26, 2024. It is now read-only.

Commit 9f1cb8b

Browse files
author
trazyn
committed
Release v1.3.1
1 parent 8d78d67 commit 9f1cb8b

File tree

4 files changed

+48
-16
lines changed

4 files changed

+48
-16
lines changed

.codeclimate.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: "2" # required to adjust maintainability checks
2+
checks:
3+
argument-count:
4+
config:
5+
threshold: 4
6+
complex-logic:
7+
config:
8+
threshold: 4
9+
file-lines:
10+
config:
11+
threshold: 1000
12+
method-complexity:
13+
config:
14+
threshold: 6
15+
method-count:
16+
config:
17+
threshold: 20
18+
method-lines:
19+
config:
20+
threshold: 500
21+
nested-control-flow:
22+
config:
23+
threshold: 4
24+
return-statements:
25+
config:
26+
threshold: 4
27+
28+
engines:
29+
duplication:
30+
enabled: false
31+
config:
32+
languages:
33+
javascript:
34+
mass_threshold: 65

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,27 +48,27 @@
4848
Download the last version on the [website](https://github.com/trazyn/ieaseMusic/releases/latest) or below.
4949

5050
#### Mac(10.9+)
51-
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.3.0/ieaseMusic-1.3.0-mac.dmg) the `.dmg` file, Or use `homebrew`:
51+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.3.1/ieaseMusic-1.3.1-mac.dmg) the `.dmg` file, Or use `homebrew`:
5252
```
5353
brew cask install ieasemusic
5454
```
5555

5656
#### Linux
5757

58-
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.3.0/ieaseMusic-1.3.0-linux-amd64.deb) the `.deb` file for 'Debian / Ubuntu':
58+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.3.1/ieaseMusic-1.3.1-linux-amd64.deb) the `.deb` file for 'Debian / Ubuntu':
5959
```
60-
$ sudo dpkg -i ieaseMusic-1.3.0-linux-amd64.deb
60+
$ sudo dpkg -i ieaseMusic-1.3.1-linux-amd64.deb
6161
```
6262

63-
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.3.0/ieaseMusic-1.3.0-linux-x86_64.rpm) the `.rpm` file for 'Centos/RHEL':
63+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.3.1/ieaseMusic-1.3.1-linux-x86_64.rpm) the `.rpm` file for 'Centos/RHEL':
6464
```
65-
$ sudo yum localinstall ieaseMusic-1.3.0-linux-x86_64.rpm
65+
$ sudo yum localinstall ieaseMusic-1.3.1-linux-x86_64.rpm
6666
```
6767

68-
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.3.0/iease-music-1.3.0-x86_64.AppImage) the `.Appimage` file for other distribution:
68+
[Download](https://github.com/trazyn/ieaseMusic/releases/download/v1.3.1/iease-music-1.3.1-x86_64.AppImage) the `.Appimage` file for other distribution:
6969
```
70-
$ chmod u+x iease-music-1.3.0-x86_64.AppImage
71-
$ ./iease-music-1.3.0-x86_64.AppImage
70+
$ chmod u+x iease-music-1.3.1-x86_64.AppImage
71+
$ ./iease-music-1.3.1-x86_64.AppImage
7272
```
7373

7474
Archlinux `pacman` install:

submodules/downloader/viewport/views/List/classes.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,10 @@ export default theme => ({
151151
position: 'absolute',
152152
right: 6,
153153
top: '50%',
154-
height: 24,
155-
transform: 'translateY(-50%)',
154+
width: 32,
155+
fontSize: 24,
156+
textAlign: 'center',
157+
transform: 'translateY(-45%)',
156158
cursor: 'pointer',
157159
},
158160
});

submodules/downloader/viewport/views/List/index.js

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,9 @@ class List extends Component {
6767
<main>
6868
<nav>
6969
<i
70-
className={classes.close}
70+
className={clazz('ion-ios-close-empty', classes.close)}
7171
onClick={() => this.close()}
72-
>
73-
<img
74-
className={classes.close}
75-
src="../../../src/assets/close.png" />
76-
</i>
72+
/>
7773
</nav>
7874

7975
<section>

0 commit comments

Comments
 (0)