Skip to content

Commit

Permalink
fix plugin loudness value being memorized upon tab change
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe44 committed Aug 29, 2023
1 parent 809b555 commit 9f17002
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Binary file modified plugin/SqueezeESP32.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
});
}

var ldValue = 0;
this.lastLd = this.lastLd || 0;
var ldValue;
this.lastLd = this.lastLd;

ldValue = Ext.get('pref_loudness').dom.value || 0;

Expand Down Expand Up @@ -59,8 +59,8 @@
});
}

var ldValue = 0;
this.lastLd = this.lastLd || 0;
var ldValue;
this.lastLd = this.lastLd;

ldValue = $('pref_loudness').value || 0;

Expand Down
2 changes: 1 addition & 1 deletion plugin/SqueezeESP32/install.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<name>PLUGIN_SQUEEZEESP32</name>
<description>PLUGIN_SQUEEZEESP32_DESC</description>
<module>Plugins::SqueezeESP32::Plugin</module>
<version>0.500</version>
<version>0.501</version>
<creator>Philippe</creator>
</extensions>
4 changes: 2 additions & 2 deletions plugin/repo.xml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version='1.0' standalone='yes'?>
<extensions>
<plugins>
<plugin version="0.500" name="SqueezeESP32" minTarget="7.9" maxTarget="*">
<plugin version="0.501" name="SqueezeESP32" minTarget="7.9" maxTarget="*">
<link>https://github.com/sle118/squeezelite-esp32</link>
<creator>Philippe</creator>
<sha>a75e49528bc45e6e48b0dbd0b47ce975795e1fba</sha>
<sha>842ee0f7b8ccaf2e6df4a741565068f9e4c7a27e</sha>
<email>[email protected]</email>
<desc lang="EN">SqueezeESP32 additional player id (100/101)</desc>
<url>http://raw.githubusercontent.com/sle118/squeezelite-esp32/master-v4.3/plugin/SqueezeESP32.zip</url>
Expand Down

0 comments on commit 9f17002

Please sign in to comment.