Version bump

This commit is contained in:
Paul Sori 2018-11-01 14:23:10 -04:00
parent 8aa0c83f01
commit b02b803036
6 changed files with 8 additions and 6 deletions

View File

@ -69,12 +69,14 @@ mstream -l username -z password
* [JSON configuration docs page](docs/json_config.md)
mStream can also be booted using a JSON file using the `-j` flag. Using a JSON config file allows for advanced configuration options, such as multiple users and folders. When booting with a JSON config file, all other flags will be ignored. An example config with multiple users is shown below.
mStream can also be booted using a JSON file using the `-j` flag.
```shell
mstream -j /path/to/config.json
```
Using a JSON config file allows for advanced configuration options, such as multiple users and folders. When booting with a JSON config file, all other flags will be ignored.
Editing a JSON config by hand is tedious. There's a number of special flags that will launch a prompt to guide you through editing the config. It's recommended you run the `--wizard` program if this is your first time using mStream
```shell

View File

@ -7,7 +7,7 @@ Using a JSON config with mStream allows for more advanced configurations. This
"port": 3030,
"userinterface":"public",
"secret": "b6j7j5e6u5g36ubn536uyn536unm5m67u5365vby435y54ymn",
"scanOptions":{
"scanOptions":{
"skipImg": true,
"scanInterval": 1.5,
"pause": 50,

View File

@ -6,7 +6,7 @@ exports.setup = function (args) {
const colors = require('colors');
program
.version('3.8.2')
.version('3.9.0')
// Server Config
.option('-p, --port <port>', 'Select Port', /^\d+$/i, 3000)
.option('-i, --userinterface <folder>', 'Specify folder name that will be served as the UI', 'public')

View File

@ -29,7 +29,7 @@ console.log(`
| '_ \` _ \\\\___ \\| __| '__/ _ \\/ _\` | '_ \` _ \\
| | | | | |___) | |_| | | __/ (_| | | | | | |
|_| |_| |_|____/ \\__|_| \\___|\\__,_|_| |_| |_|
Music Streaming Sever v3.8.2`);
Music Streaming Sever v3.9.0`);
console.log();
console.log('Donate:');
console.log('https://www.patreon.com/mstream');

View File

@ -6,7 +6,7 @@ const publicIp = require('public-ip');
const semver = require('semver')
const superagent = require('superagent');
const currentVer = '0.9.1';
const currentVer = '0.11.0';
var apiKey;
const ddnsDomain = 'https://ddns.mstream.io';
let appIcon = null;

View File

@ -1,6 +1,6 @@
{
"name": "mstream",
"version": "3.8.2",
"version": "3.9.0",
"description": "music streaming server",
"main": "mstream-command-line-boot-wrapper.js",
"bin": {