Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
cb92aaa
electron migration start point, bootstrap app using electron prebuilt…
Oct 14, 2016
30177a2
remove not in use codecs/libs from Chrome for NW.js
Oct 14, 2016
48513be
remove all nw.gui references, remove navbar for authenticated and una…
weblancaster Oct 16, 2016
7e74551
Angular app can now bootstrap, display tracks and play them.
weblancaster Oct 28, 2016
a45f3b3
Replace grunt tasks to npm scripts
weblancaster Oct 28, 2016
3a411e6
Add electron native media shortcuts
weblancaster Oct 28, 2016
9d19829
Notification window new implementation.
weblancaster Oct 29, 2016
72d9c6f
Fix packaging command
weblancaster Oct 30, 2016
5fed528
fix toastr request, code refactoring
weblancaster Oct 30, 2016
a3616d2
add clean to npm scripts
weblancaster Nov 2, 2016
54e1807
add the menubar commands, links back
weblancaster Nov 5, 2016
d716ee0
fix cookie issue when trying to login to facebook.
weblancaster Dec 12, 2016
bc73712
Code refactoring app startup, angular http.get methods to latest vers…
weblancaster Dec 12, 2016
73c0e8e
Fix crash when trying to open application back after destroy has been…
weblancaster Dec 12, 2016
b8fafb5
fix wepack build, fix news/about/updater views
weblancaster Dec 13, 2016
f8fc7fa
remove logs
weblancaster Dec 14, 2016
1a3daea
Fix numfmt issue for volume range, use instead window
weblancaster Dec 19, 2016
7fd8d3e
Fix a couple of http request, fix rate limit notification modal (clos…
weblancaster Dec 19, 2016
ca43179
display notification when API limit reached, closes #923, Log user ou…
weblancaster Dec 21, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
7 changes: 7 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
presets: [
'es2015',
'stage-0',
'react'
]
}
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_size = 2
indent_style = space
max_line_length = 80
trim_trailing_whitespace = true
Expand Down
65 changes: 50 additions & 15 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,31 +1,68 @@
{
"rules": {
"block-scoped-var": 1,
"brace-style": [1, "1tbs"],
"camelcase": [1, {"properties": "always"}],
"brace-style": [
1,
"1tbs"
],
"camelcase": [
1,
{
"properties": "always"
}
],
"comma-dangle": 1,
"comma-spacing": [1, {"before": false, "after": true}],
"comma-style": [1, "last"],
"curly": [2, "multi"],
"eol-last": 1,
"generator-star-spacing": [1, "after"],
"comma-spacing": [
1,
{
"before": false,
"after": true
}
],
"comma-style": [
1,
"last"
],
"eol-last": 0,
"generator-star-spacing": [
1,
"after"
],
"guard-for-in": 1,
"indent": [1, 2],
"indent": [
1,
2
],
"no-eq-null": 2,
"no-extra-parens": 1,
"no-lonely-if": 1,
"no-mixed-spaces-and-tabs": [1, "smart-tabs"],
"no-mixed-spaces-and-tabs": [
1,
"smart-tabs"
],
"no-spaced-func": 1,
"no-throw-literal": 2,
"no-trailing-spaces": 0,
"no-underscore-dangle": 0,
"no-undefined": 2,
"no-unused-vars": 1,
"no-var": 1,
"quotes": [0, "double", "avoid-escape"],
"quotes": [
0,
"double",
"avoid-escape"
],
"radix": 1,
"semi-spacing": [1, {"before": false, "after": true}],
"strict": [1],
"semi-spacing": [
1,
{
"before": false,
"after": true
}
],
"strict": [
1
],
"vars-on-top": 1,
"wrap-iife": 1,
"react/display-name": 0,
Expand Down Expand Up @@ -69,6 +106,4 @@
"plugins": [
"react"
]
}


}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ npm-debug.log
app/public/stylesheets/css/app.css
app/public/stylesheets/css/app.css.map
fpm/packages/*.deb

userConfig.json
13 changes: 0 additions & 13 deletions .jshintrc

This file was deleted.

31 changes: 0 additions & 31 deletions Gruntfile.js

This file was deleted.

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ See the [Development page](https://github.com/Soundnode/soundnode-app/wiki/Devel

## Contributors

Thanks to a friend at [Studio-424](http://studio-424.com/) for designing the logo.

and Thanks to all [contributors](https://github.com/Soundnode/soundnode-app/graphs/contributors) that are helping or helped to make Soundnode better.
Thanks to all [contributors](https://github.com/Soundnode/soundnode-app/graphs/contributors) that are helping or have help make Soundnode better.

## License

Expand Down
17 changes: 0 additions & 17 deletions app/.editorconfig

This file was deleted.

Loading