Skip to content

Commit

Permalink
Bump to 0.2.0, new icons and minor style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop committed Feb 27, 2017
1 parent b5f616b commit 393e483
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/components/AlbumFinder.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default class AlbumFinder extends Component {

return (
<div style={{width: '100%', height: '100%'}}>
<form style={{display: 'flex'}} className="form-inline" onSubmit={(event) => {event.preventDefault(); return false;}}>
<form style={{display: 'flex', marginTop: '4px'}} className="form-inline" onSubmit={(event) => {event.preventDefault(); return false;}}>
<div style={{width: '90%', marginRight:'auto'}} className="input-group">
<div className="input-group-addon searchicon"><i className="fa fa-search"/></div>
<DebounceInput
Expand Down
2 changes: 1 addition & 1 deletion app/components/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default class Home extends Component {
seekFromPosition: 0,
songStreamLoading: false,
sidebarContents: enums.SidebarMenuItemEnum.DEFAULT,
mainContents: enums.MainContentItemEnum.SEARCH
mainContents: enums.MainContentItemEnum.ALBUMS
};

this.alertOptions = {
Expand Down
4 changes: 2 additions & 2 deletions app/components/SidebarMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ export default class SidebarMenu extends Component {
</tr>
<tr>
<td className={styles.sidebar_options_cell}>
<a href='#' onClick={this.props.toggleMainContents.bind(null, enums.MainContentItemEnum.SEARCH)}><i className="fa fa-search"/> Search</a>
<a href='#' onClick={this.props.toggleMainContents.bind(null, enums.MainContentItemEnum.ALBUMS)}><i className="fa fa-search"/> Find albums</a>
</td>
</tr>
<tr>
<td className={styles.sidebar_options_cell}>
<a href='#' onClick={this.props.toggleMainContents.bind(null, enums.MainContentItemEnum.ALBUMS)}><i className="fa fa-search"/> Find albums</a>
<a href='#' onClick={this.props.toggleMainContents.bind(null, enums.MainContentItemEnum.SEARCH)}><i className="fa fa-search"/> Search</a>
</td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nuclear",
"productName": "nuclear",
"version": "0.1.0",
"version": "0.2.0",
"description": " An Electron-based, multiplatform music player app that streams from multiple sources ",
"main": "./main.js",
"author": {
Expand Down
Binary file modified resources/icon.icns
Binary file not shown.
Binary file modified resources/icon.ico
Binary file not shown.
Binary file modified resources/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 393e483

Please sign in to comment.