From b02b80303632ce49ed0780e79ed8dfe052ed6ef8 Mon Sep 17 00:00:00 2001 From: Paul Sori Date: Thu, 1 Nov 2018 14:23:10 -0400 Subject: [PATCH] Version bump --- README.md | 4 +++- docs/json_config.md | 2 +- modules/config/configure-commander.js | 2 +- mstream-command-line-boot-wrapper.js | 2 +- mstream-electron.js | 2 +- package.json | 2 +- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 26bcefa..c452a98 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/json_config.md b/docs/json_config.md index ecf8860..049a9e9 100644 --- a/docs/json_config.md +++ b/docs/json_config.md @@ -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, diff --git a/modules/config/configure-commander.js b/modules/config/configure-commander.js index 4c5b299..1650f50 100644 --- a/modules/config/configure-commander.js +++ b/modules/config/configure-commander.js @@ -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 ', 'Select Port', /^\d+$/i, 3000) .option('-i, --userinterface ', 'Specify folder name that will be served as the UI', 'public') diff --git a/mstream-command-line-boot-wrapper.js b/mstream-command-line-boot-wrapper.js index 6106142..d8b3c3b 100755 --- a/mstream-command-line-boot-wrapper.js +++ b/mstream-command-line-boot-wrapper.js @@ -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'); diff --git a/mstream-electron.js b/mstream-electron.js index 19203f5..32c8eee 100644 --- a/mstream-electron.js +++ b/mstream-electron.js @@ -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; diff --git a/package.json b/package.json index 7c5953e..3d60fa1 100644 --- a/package.json +++ b/package.json @@ -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": {