Skip to content

Commit

Permalink
#1 update logo and downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
moshfeu committed Dec 2, 2018
1 parent c204be2 commit a3939ab
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ In this version the videos will be saved to a **y2mp3** folder in the **Download

## Download

- [Windows](https://github.com/moshfeu/y2mp3/releases/download/untagged-23c1596e225c1f3179b1/Y2Mp3-1.0.0.Setup.1.0.0.exe)
- [Mac](https://github.com/moshfeu/y2mp3/releases/download/untagged-922c282296c944c12d42/Y2Mp3-1.0.0.dmg)
- Free 💰
- No ads 📣

Find your download: [https://github.com/moshfeu/y2mp3/releases/latest](https://github.com/moshfeu/y2mp3/releases/latest)

## License
MIT
Binary file removed app-resources/logo-full-size.jpg
Binary file not shown.
Binary file added app-resources/logo-full-size.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app-resources/video.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"youtube-playlist": "^1.0.2"
},
"name": "y2mp3",
"appname": "Y2Mp3",
"productName": "Y2Mp3",
"appname": "y2mp3",
"productName": "y2Mp3",
"version": "1.0.0",
"main": "main.js",
"devDependencies": {
Expand Down Expand Up @@ -40,7 +40,7 @@
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-windows": "npm run dist -- --win",
"generate-icons": "./node_modules/.bin/electron-icon-maker --input=app-resources/logo-full-size.jpg --output=resources"
"generate-icons": "./node_modules/.bin/electron-icon-maker --input=app-resources/logo-full-size.png --output=resources"
},
"author": "MosheF",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/components/form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class Form extends React.Component<IFormProps, IFormState> {
<div className={['search-wrapper', containerActive && 'active' || '', hasResult && '-has-result' || '', inProcess && '-in-process' || ''].join(' ')}>
<form onSubmit={this.onSubmit}>
<div className="input-holder">
<input className="search-input" type="url" placeholder="https://www.youtube.com/playlist?list=..." value={terms} onChange={e => this.setState({terms: e.target.value})} />
<input className="search-input" type="url" placeholder="https://www.youtube.com/..." value={terms} onChange={e => this.setState({terms: e.target.value})} />
<button type="button" className="search-icon" onClick={this.searchClick} disabled={inProcess}>
<span></span>
</button>
Expand Down

0 comments on commit a3939ab

Please sign in to comment.