Skip to content

Commit

Permalink
rebrand as Stretto and add icon files for electron build
Browse files Browse the repository at this point in the history
  • Loading branch information
benkaiser committed Jan 4, 2016
1 parent e1bff80 commit 44e7beb
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 26 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Node Music Player
Stretto (previously Node Music Player)
=================
#### An open source web-based music player

[![Join the chat at https://gitter.im/benkaiser/node-music-player](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/benkaiser/node-music-player?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Join the chat at https://gitter.im/benkaiser/stretto](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/benkaiser/stretto?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

![screenshot](https://cloud.githubusercontent.com/assets/608054/12073955/0b9a34c6-b0ef-11e5-83f5-04c6f3fed33c.png)

Expand All @@ -16,7 +16,7 @@ To purchase or download their music visit [their website](https://socialxclub.ba

### User Installation Instructions

Visit the [releases page](https://github.com/benkaiser/node-music-player/releases) for the latest release, and select the download for your platform. Unzip the download and run either the `Node Music Player.exe` on Windows, `Node Music Player.app` on Mac or the `Node Music Player` executable on Linux.
Visit the [releases page](https://github.com/benkaiser/stretto/releases) for the latest release, and select the download for your platform. Unzip the download and run either the `Stretto.exe` on Windows, `Stretto.app` on Mac or the `Stretto` executable on Linux.

### Dev Installation Instructions
##### Dependencies
Expand All @@ -35,8 +35,8 @@ Windows support is not guaranteed and is up to someone else to submit any pull r

After all the dependencies have been installed, run these commands to install the music player:
```
git clone https://github.com/benkaiser/node-music-player.git
cd node-music-player/
git clone https://github.com/benkaiser/stretto.git
cd stretto/
npm install
grunt
```
Expand All @@ -49,7 +49,7 @@ Go to `localhost:2000` in your browser (or known ip of server if it is on a diff

### Android Sync App

If you want to sync your Node Music Player playlists to your phone, [check out the android sync app repository](https://github.com/benkaiser/android-node-music-sync).
If you want to sync your Stretto playlists to your phone, [check out the android sync app repository](https://github.com/benkaiser/android-node-music-sync).

### Remote Control Shortcuts

Expand Down Expand Up @@ -87,7 +87,7 @@ bindsym $mod+Prior exec curl http://localhost:2000/command/my_remote_name/next

### Planned features

- See the projects public [Trello board](https://trello.com/b/cXdOSOoR/node-music-player) for features planned / implemented. If you want to request a feature, please [create an issue](https://github.com/benkaiser/node-music-player/issues/new).
- See the projects public [Trello board](https://trello.com/b/cXdOSOoR/stretto) for features planned / implemented. If you want to request a feature, please [create an issue](https://github.com/benkaiser/stretto/issues/new).

### License

Expand Down
6 changes: 3 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "node-music-player",
"version": "0.0.1",
"description": "Nodejs based music player",
"name": "stretto",
"version": "0.0.2",
"description": "Web based music player",
"main": "server.js",
"private": true,
"dependencies": {
Expand Down
Binary file added electronres/icon.icns
Binary file not shown.
Binary file added electronres/icon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "node-music-player",
"name": "stretto",
"version": "0.0.1",
"main": "electron.js",
"private": true,
Expand Down
39 changes: 24 additions & 15 deletions views/base/main_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,30 @@
<body>
{% if menu %}
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<a class="navbar-brand" href="/">Node Music Player</a>
<ul class="nav navbar-nav">
<li><a href="/">Music</a></li>
<li class='dropdown'>
<a class='pointer dropdown-toggle' data-toggle='dropdown'>Scan Library <span class="caret"></span></a>
<ul class='dropdown-menu' role='menu'>
<li><a class='pointer' id='soft_scan'>Regular Scan</a></li>
<li><a class='pointer' id='hard_scan'>Hard Rescan</a></li>
</ul>
</li>
<li><a class='pointer' id='load_sync_view'>Sync Libraries</a></li>
</ul>
<ul class="nav navbar-nav pull-right">
{% block extra_nav %}{% endblock %}
</ul>
<div class="navbar-header">
<a class="navbar-brand" href="/">Stretto</a>
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div class="navbar-collapse collapse" id="navbar-main">
<ul class="nav navbar-nav">
<li><a href="/">Music</a></li>
<li class='dropdown'>
<a class='pointer dropdown-toggle' data-toggle='dropdown'>Scan Library <span class="caret"></span></a>
<ul class='dropdown-menu' role='menu'>
<li><a class='pointer' id='soft_scan'>Regular Scan</a></li>
<li><a class='pointer' id='hard_scan'>Hard Rescan</a></li>
</ul>
</li>
<li><a class='pointer' id='load_sync_view'>Sync Libraries</a></li>
</ul>
<ul class="nav navbar-nav pull-right">
{% block extra_nav %}{% endblock %}
</ul>
</div>
</nav>
{% endif %}
{% block content %}
Expand Down

0 comments on commit 44e7beb

Please sign in to comment.