-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* make song title a link * increase app version, add shayan as contributors, and change onclick to arrow function * modify contributors props * Add you to the readme too
- Loading branch information
Showing
5 changed files
with
34 additions
and
5 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 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
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,17 +1,19 @@ | ||
import {IpcRenderer, Remote} from 'electron'; | ||
import {IpcRenderer, Remote, Shell} from 'electron'; | ||
|
||
declare global { | ||
interface Window { | ||
require: (module: 'electron') => { | ||
ipcRenderer: IpcRenderer, | ||
remote: Remote | ||
shell: Shell | ||
}; | ||
} | ||
} | ||
|
||
const electron = window.require('electron'); | ||
const { ipcRenderer, remote } = electron; | ||
const { ipcRenderer, remote, shell } = electron; | ||
export { | ||
ipcRenderer, | ||
remote | ||
remote, | ||
shell | ||
} |
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 |
---|---|---|
|
@@ -21,6 +21,11 @@ | |
|
||
.name { | ||
padding-right: 10px; | ||
cursor: pointer; | ||
opacity: 0.8; | ||
&:hover { | ||
opacity: 1; | ||
} | ||
} | ||
} | ||
|
||
|