Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
miaowing committed Jul 21, 2016
1 parent 4af7def commit 93ed9fe
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 4 deletions.
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
# Elsa
# 5sing
中国原创音乐基地5sing桌面版

# Support Platform
* mac os
* windows

![5sing截图](http://7xpilz.com1.z0.glb.clouddn.com/5sing.png)

# Download
Coming Soon!

# Development
```
$ npm install
$ npm run dev
$ npm run build
```

## Feedback
If you any questions, use [Issues](https://github.com/i5sing/5sing/issues).

Sina Weibo: [@赵小小峰](http://weibo.com/5101118493)

## License
MIT Licence.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,13 @@ gulp.task('compile_dev', callback => {

gulp.task('build_package', ['install', 'compile'], callback => {

//electron-packager ./dist elsa --platform=all --arch=all --out=app --overwrite
//electron-packager ./dist 5sing --platform=all --arch=all --out=app --overwrite
packager({
arch: 'all',
// icon: icon,
dir: './dist',
out: 'app',
name: 'elsa',
name: '5sing',
version: '1.2.6',
platform: 'all',
overwrite: true
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"clean": "gulp clean",
"build": "gulp build",
"dev": "gulp dev",
"_build": "electron-packager ./dist elsa --platform=all --arch=all --out=app --overwrite",
"rebuild-sqlite3": "cd node_modules/sqlite3 && npm run prepublish && node-gyp configure --module_name=node_sqlite3 --module_path=../lib/binding/node-v47-darwin-x64 && node-gyp rebuild --target=0.36.4 --arch=x64 --target_platform=darwin --dist-url=https://atom.io/download/atom-shell --module_name=node_sqlite3 --module_path=../lib/binding/node-v47-darwin-x64",
"rebuild-sqlite3-win": "cd node_modules/sqlite3 && npm run prepublish && node-gyp configure --module_name=node_sqlite3 --module_path=../lib/binding/node-v47-win32-x64 && node-gyp node-gyp rebuild --target=0.36.0 --arch=x64 --target_platform=win32 --dist-url=https://atom.io/download/atom-shell --module_name=node_sqlite3 --module_path=../lib/binding/node-v47-win32-x64",
"_build": "electron-packager ./dist 5sing --platform=all --arch=all --out=app --overwrite",
"_dev": "webpack --config build/webpack.config.js",
"_compile": "webpack --config build/webpack.config.proc.js"
},
Expand Down
7 changes: 7 additions & 0 deletions src/components/end_scroll_load.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
/**
* EndScrollLoad组件
*
* Example:
* <EndScrollLoad target="elementId" onLoad={() => {}}>
*
* </EndScrollLoad>
*
* Created by zhaofeng on 7/19/16.
*/
import React, {Component} from 'react';
Expand Down
9 changes: 9 additions & 0 deletions src/components/pagination.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
/**
* 分页组件
* Example:
* <Pagination current={} count={} pageSize={} onChange={}/>
*
* current: 当前页数
* count: 总条数
* pageSize: 每页条数
* onChange: 翻页回调
*
* Created by zhaofeng on 7/13/16.
*/
import React, {Component} from 'react';
Expand Down

0 comments on commit 93ed9fe

Please sign in to comment.