Skip to content

Commit

Permalink
Raised version to 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
docbobo committed Jul 5, 2022
1 parent 1a97c60 commit de6ca6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var arcam = {};
var roon = new RoonApi({
extension_id: 'org.pruessmann.roon.arcam',
display_name: 'Arcam AVR390/550/850/AV860/SR250',
display_version: '0.0.6',
display_version: '0.0.7',
publisher: 'Doc Bobo',
email: '[email protected]',
website: 'https://github.com/docbobo/roon-extension-arcam',
Expand Down Expand Up @@ -74,6 +74,7 @@ function setup_arcam_connection(host, keepalive) {
if (arcam.client) { arcam.client.disconnect(); delete(arcam.client); }

if (!host) {
debug("Not configured, please check settings.");
svc_status.set_status("Not configured, please check settings.", true);
} else {
debug("Connecting to receiver...");
Expand Down Expand Up @@ -128,6 +129,7 @@ function setup_arcam_connection(host, keepalive) {
});
}, keepalive);
}
debug("setup_arcam_connection (" + host + ") - done." );
}

function create_volume_control(arcam) {
Expand Down Expand Up @@ -221,4 +223,5 @@ function create_volume_control(arcam) {

setup_arcam_connection(mysettings.hostname, mysettings.keepalive);

debug("Starting Roon Discovery." );
roon.start_discovery();
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "roon-extension-arcam",
"version": "0.0.6",
"version": "0.0.7",
"description": "Volume Control extension to control Arcam AV receivers AVR390/550/850/AV860/SR250 via network.",
"main": "app.js",
"author": "Doc Bobo <[email protected]> (https://blog.pruessmann.org/)",
Expand Down

0 comments on commit de6ca6d

Please sign in to comment.