Skip to content

Commit

Permalink
0.2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
philippe44 committed May 29, 2016
1 parent 088e733 commit 7d5b319
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.2.9.0
- move <server> parameter from global to <common> (parameter copy for compatibility needs to be removed later)
- fix server switch & rediscovery
- add -x64 static version

0.2.8.0
- if MAC cannot be retrieved, create a fake one from UDN
Expand Down
2 changes: 1 addition & 1 deletion application/squeezetiny/squeezedefs.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef __SQUEEZEDEFS_H
#define __SQUEEZEDEFS_H

#define VERSION "v0.2.9.0-dev-1"" ("__DATE__" @ "__TIME__")"
#define VERSION "v0.2.9.0"" ("__DATE__" @ "__TIME__")"

#if defined(linux)
#define LINUX 1
Expand Down
1 change: 1 addition & 0 deletions plugin/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.2.9.0
- move <server> parameter from global to <common> (parameter copy for compatibility needs to be removed later)
- fix server switch & rediscovery
- add -x64 static version

0.2.8.0
- if MAC cannot be retrieved, create a fake one from UDN
Expand Down
4 changes: 2 additions & 2 deletions plugin/Squeeze2upnp.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sub binaries {
if ($os->{'os'} eq 'Linux') {

if ($os->{'osArch'} =~ /x86_64/) {
return qw(squeeze2upnp-x86-64);
return qw(squeeze2upnp-x86-64 squeeze2upnp-x86-64-static);
}
if ($os->{'binArch'} =~ /i386/) {
return qw(squeeze2upnp-x86 squeeze2upnp-x86-static);
Expand All @@ -37,7 +37,7 @@ sub binaries {
}

# fallback to offering all linux options for case when architecture detection does not work
return qw(squeeze2upnp-x86-64 squeeze2upnp-x86 squeeze2upnp-x86-static squeeze2upnp-armv6hf squeeze2upnp-armv6hf-static squeeze2upnp-armv5 squeeze2upnp-armv5-static squeeze2upnp-ppc squeeze2upnp-ppc-static);
return qw(squeeze2upnp-x86-64 squeeze2upnp-x86-64-static squeeze2upnp-x86 squeeze2upnp-x86-static squeeze2upnp-armv6hf squeeze2upnp-armv6hf-static squeeze2upnp-armv5 squeeze2upnp-armv5-static squeeze2upnp-ppc squeeze2upnp-ppc-static);
}

if ($os->{'os'} eq 'Darwin') {
Expand Down
14 changes: 7 additions & 7 deletions plugin/install.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?xml version='1.0' standalone='yes'?>
<extensions>
<creator>Philippe</creator>
<email>[email protected]</email>
<version>0.2.9.0-dev-1</version>
<description>PLUGIN_UPNPBRIDGE_DESC</description>
<profilesURL>http://sourceforge.net/projects/lms-to-upnp/files/profiles.xml/download</profilesURL>
<optionsURL>plugins/UPnPBridge/settings/basic.html</optionsURL>
<name>PLUGIN_UPNPBRIDGE</name>
<module>Plugins::UPnPBridge::Plugin</module>
<defaultState>enabled</defaultState>
<targetApplication>
<id>SlimServer</id>
<maxVersion>*.*</maxVersion>
<minVersion>7.7</minVersion>
<id>SlimServer</id>
</targetApplication>
<module>Plugins::UPnPBridge::Plugin</module>
<version>0.2.9.0</version>
<name>PLUGIN_UPNPBRIDGE</name>
<profilesURL>http://sourceforge.net/projects/lms-to-upnp/files/profiles.xml/download</profilesURL>
<creator>Philippe</creator>
<email>[email protected]</email>
</extensions>

0 comments on commit 7d5b319

Please sign in to comment.