-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed commits: - beautify log output - upgrade roadhog to 2.x - better way to dev - rebuild preload style - fix dynamic list click problem - add setting panel - Use tab for wrapped style rules. - Fix custom style for 大会员 member profile page.
- Loading branch information
1 parent
38d5656
commit 2d26e5f
Showing
80 changed files
with
1,455 additions
and
959 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export default {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "bilibili-client", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"productName": "Bilibili Client", | ||
"description": "mini client of bilibili.", | ||
"main": "dist/main.js", | ||
|
@@ -9,10 +9,13 @@ | |
"email": "[email protected]" | ||
}, | ||
"dependencies": { | ||
"chalk": "^2.3.0", | ||
"electron-config": "^1.0.0", | ||
"electron-is": "^2.4.0", | ||
"electron-log": "^2.2.13", | ||
"electron-debug": "^1.4.0", | ||
"electron-fetch": "^1.1.0" | ||
"electron-fetch": "^1.1.0", | ||
"electron-is": "^2.4.0", | ||
"fancy-log": "^1.3.2", | ||
"devtron": "^1.4.0", | ||
"lodash": "^4.17.4" | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { Log } from '../utils'; | ||
import { create, getPath } from './window'; | ||
import loadMenu from './loadMenu'; | ||
import loadIpc from './loadIpc'; | ||
import checkUpdate from './checkUpdate'; | ||
|
||
export function init() { | ||
Log('[app][application] load'); | ||
const win = create({ | ||
width: 375, | ||
height: 650, | ||
frame: false, | ||
resizable: false, | ||
}); | ||
win.loadURL(getPath()); | ||
win.setAlwaysOnTop(true); | ||
checkUpdate(); | ||
loadMenu(win); | ||
loadIpc(win); | ||
} |
Oops, something went wrong.