Index: squeezeplay/share/jive/net/NetworkThread.lua =================================================================== --- squeezeplay/share/jive/net/NetworkThread.lua (revision 7749) +++ squeezeplay/share/jive/net/NetworkThread.lua (working copy) @@ -60,7 +60,7 @@ -- jive.net.NetworkThread is a base class module(..., oo.class) -local squeezenetworkHostname = "www.squeezenetwork.com" +local squeezenetworkHostname = "www.mysqueezebox.com" -- _add @@ -375,7 +375,7 @@ end --- Set the squeezenetwork hostname, used with test.squeezenetwork.com +-- Set the squeezenetwork hostname function setSNHostname(self, hostname) squeezenetworkHostname = hostname end Index: squeezeplay/share/jive/net/SlimProto.lua =================================================================== --- squeezeplay/share/jive/net/SlimProto.lua (revision 7749) +++ squeezeplay/share/jive/net/SlimProto.lua (working copy) @@ -420,9 +420,9 @@ end serverip = self.lastServerip elseif serverip == 1 then - serverip = "www.squeezenetwork.com" + serverip = self.jnt:getSNHostname() elseif serverip == 2 then - serverip = "www.test.squeezenetwork.com" + serverip = "www.test.mysqueezebox.com" else serverip = _ipstring(serverip) end Index: squeezeplay/share/jive/slim/Player.lua =================================================================== --- squeezeplay/share/jive/slim/Player.lua (revision 7749) +++ squeezeplay/share/jive/slim/Player.lua (working copy) @@ -1753,9 +1753,9 @@ if server:isSqueezeNetwork() then local sn_hostname = jnt:getSNHostname() - if string.match(sn_hostname, ".*test.squeezenetwork.com$") then + if string.match(sn_hostname, ".*test.mysqueezebox.com$") then data.server_address = Udap.packNumber(2, 4) - elseif string.match(sn_hostname, ".*squeezenetwork.com$") then + elseif string.match(sn_hostname, ".*mysqueezebox.com$") then data.server_address = Udap.packNumber(1, 4) -- XXXX testing only REMOVE ME! Index: squeezeplay_baby/share/applets/SqueezeboxBaby/SqueezeboxBabyMeta.lua =================================================================== --- squeezeplay_baby/share/applets/SqueezeboxBaby/SqueezeboxBabyMeta.lua (revision 7749) +++ squeezeplay_baby/share/applets/SqueezeboxBaby/SqueezeboxBabyMeta.lua (working copy) @@ -75,7 +75,7 @@ Sample:setEffectAttenuation(Sample.MAXVOLUME / 25) -- SN hostname - jnt:setSNHostname("baby.squeezenetwork.com") + jnt:setSNHostname("0.4.7.baby.r.mysqueezebox.com") -- BSP is a resident Applet appletManager:loadApplet("SqueezeboxBaby") Index: squeezeplay_desktop/share/applets/DesktopJive/DesktopJiveMeta.lua =================================================================== --- squeezeplay_desktop/share/applets/DesktopJive/DesktopJiveMeta.lua (revision 7749) +++ squeezeplay_desktop/share/applets/DesktopJive/DesktopJiveMeta.lua (working copy) @@ -95,7 +95,7 @@ }) -- SN hosthame - jnt:setSNHostname("jive.squeezenetwork.com") + jnt:setSNHostname("0.4.7.desktop.r.mysqueezebox.com") appletManager:addDefaultSetting("ScreenSavers", "whenStopped", "false:false") appletManager:addDefaultSetting("Playback", "enableAudio", 1) Index: squeezeplay_fab4/share/applets/SqueezeboxFab4/SqueezeboxFab4Meta.lua =================================================================== --- squeezeplay_fab4/share/applets/SqueezeboxFab4/SqueezeboxFab4Meta.lua (revision 7749) +++ squeezeplay_fab4/share/applets/SqueezeboxFab4/SqueezeboxFab4Meta.lua (working copy) @@ -68,7 +68,7 @@ Sample:setEffectAttenuation(Sample.MAXVOLUME) -- SN hosthame - jnt:setSNHostname("fab4.squeezenetwork.com") + jnt:setSNHostname("0.4.7.fab4.r.mysqueezebox.com") -- BSP is a resident Applet appletManager:loadApplet("SqueezeboxFab4") Index: squeezeplay_jive/share/applets/SqueezeboxJive/SqueezeboxJiveMeta.lua =================================================================== --- squeezeplay_jive/share/applets/SqueezeboxJive/SqueezeboxJiveMeta.lua (revision 7749) +++ squeezeplay_jive/share/applets/SqueezeboxJive/SqueezeboxJiveMeta.lua (working copy) @@ -73,7 +73,7 @@ LocalPlayer:setDeviceType("controller", "Controller") -- SH hostname - jnt:setSNHostname("jive.squeezenetwork.com") + jnt:setSNHostname("0.4.7.jive.r.mysqueezebox.com") -- Set the minimum support server version SlimServer:setMinimumVersion("7.0")