mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 20:47:08 +03:00
plugin screen width > 255
This commit is contained in:
Binary file not shown.
@@ -23,7 +23,7 @@ sub playerSettingsFrame {
|
|||||||
|
|
||||||
# New SETD command 0xfe for display width
|
# New SETD command 0xfe for display width
|
||||||
if ($id == 0xfe) {
|
if ($id == 0xfe) {
|
||||||
$value = (unpack('CC', $$data_ref))[1];
|
$value = (unpack('Cn', $$data_ref))[1];
|
||||||
if ($value > 100 && $value < 400) {
|
if ($value > 100 && $value < 400) {
|
||||||
$client->display->widthOverride(1, $value);
|
$client->display->widthOverride(1, $value);
|
||||||
$client->update;
|
$client->update;
|
||||||
|
|||||||
@@ -10,6 +10,6 @@
|
|||||||
<name>PLUGIN_SQUEEZEESP32</name>
|
<name>PLUGIN_SQUEEZEESP32</name>
|
||||||
<description>PLUGIN_SQUEEZEESP32_DESC</description>
|
<description>PLUGIN_SQUEEZEESP32_DESC</description>
|
||||||
<module>Plugins::SqueezeESP32::Plugin</module>
|
<module>Plugins::SqueezeESP32::Plugin</module>
|
||||||
<version>0.12</version>
|
<version>0.20</version>
|
||||||
<creator>Philippe</creator>
|
<creator>Philippe</creator>
|
||||||
</extensions>
|
</extensions>
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
<?xml version='1.0' standalone='yes'?>
|
<?xml version='1.0' standalone='yes'?>
|
||||||
<extensions>
|
<extensions>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin version="0.12" name="SqueezeESP32" minTarget="7.5" maxTarget="*">
|
<plugin version="0.20" name="SqueezeESP32" minTarget="7.5" maxTarget="*">
|
||||||
<link>https://github.com/sle118/squeezelite-esp32</link>
|
<link>https://github.com/sle118/squeezelite-esp32</link>
|
||||||
<creator>Philippe</creator>
|
<creator>Philippe</creator>
|
||||||
<sha>3e60650efdff28cd0da9a7e9d0ddccf3a68d350d</sha>
|
<sha>c17cce48b8fa14f995ca93f51fdab52b4bdcb422</sha>
|
||||||
<email>philippe_44@outlook.com</email>
|
<email>philippe_44@outlook.com</email>
|
||||||
<desc lang="EN">SqueezeESP32 additional player id (100)</desc>
|
<desc lang="EN">SqueezeESP32 additional player id (100)</desc>
|
||||||
<url>http://github.com/sle118/squeezelite-esp32/raw/master/plugin/SqueezeESP32.zip</url>
|
<url>http://github.com/sle118/squeezelite-esp32/raw/master/plugin/SqueezeESP32.zip</url>
|
||||||
|
|||||||
Reference in New Issue
Block a user