Skip to content

Commit 14a1059

Browse files
committed
release v0.5.5. improve grunt build, following styles
1 parent e14ffc7 commit 14a1059

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

Gruntfile.js

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,14 @@ module.exports = function (grunt) {
1111
version: '0.10.4'
1212
},
1313
src: [
14-
'./app/**/*',
15-
'!./app/public/stylesheets/sass',
16-
'!./app/public/stylesheets/config.rb',
17-
'!./**/*.sass-cache',
18-
'!./app/public/assets'
14+
'./app/index.html',
15+
'./app/package.json',
16+
'./app/soundnode.icns',
17+
'./app/soundnode.png',
18+
'./app/views/**/*',
19+
'./app/public/js/**/*',
20+
'./app/public/img/**/*',
21+
'./app/public/stylesheets/css/**/*'
1922
]
2023
},
2124

app/public/js/system/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
window.settings = window.settings || {};
33

44
// App version
5-
window.settings.appVersion = '0.5.4';
5+
window.settings.appVersion = '0.5.5';

app/public/stylesheets/sass/_components/_following.scss

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
position: relative;
66
overflow: hidden;
77
margin: 0 5px 60px 5px;
8-
width: 300px;
9-
height: 350px;
8+
width: 210px;
9+
height: 210px;
1010

1111
& .songList_item_box:first-child {
1212
margin-bottom: 20px;
@@ -20,4 +20,8 @@
2020
display: table-cell;
2121
}
2222

23+
& .songList_item_container_artwork {
24+
height: 210px;
25+
}
26+
2327
}

app/public/stylesheets/sass/_components/_songlist.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@
2626
height: 300px;
2727
}
2828

29-
.songList_item_inner {}
30-
3129
.songList_item_container_artwork {
3230
position: relative;
3331
width: 100%;

0 commit comments

Comments
 (0)