Sonos
Informations
Créateur | Messages |
---|---|
SKAL
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience2 0 DescriptionSonos is a system of HiFi wireless speakers and audio components designed for every space in your home. It unites your digital music collection in one app that you control from any device. Play what you want in every room - no skips, delays or drops. Code source#!/bin/bash # Date : (2014-10-29 11-00) # Last revision : (2014-10-29 11-00) # Wine version used : wine-1.6.2 # Distribution used to test : Ubuntu 14.04.1 LTS # Author : SKAL # Last Ver : 1.01 # Changelog # 2.00 implemented dowload part # 1.02 Some minor changes, thank you Ronin DUSETTE # 1.01 Set the virtual desktop AUTOMATICALY, started use translation system # left the POL_System_TmpCreate part for a future dowload feature # 1.0 first release # [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables TITLE="Sonos" PREFIX="SonosPlayer" BIN="SonosDesktopController511.exe" #WINEVERSION="" POL_SetupWindow_Init # enable debug POL_Debug_Init # presentation program POL_SetupWindow_presentation "$TITLE" "Sonos Inc." "http://www.sonos.com" "SKAL" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" # Virtual Disc configuration POL_System_SetArch "x86" Set_OS "winxp" # Install dotnet40 POL_Call POL_Install_dotnet40 # Presentation POL_SetupWindow_message "$(eval_gettext 'At the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" # POL_SetupWindow_message "$(eval_gettext 'You can download the Sonos windows client at the following link \n\nhttp://www.sonos.com/redir/controller_software_pc \n\nAt the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" # Choose Installation type POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # Download the file POL_Download "http://www.sonos.com/redir/controller_software_pc" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$BIN" fi # Set display Set_Desktop On 1024 768 POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.\nIf you do not like the resolution used, you can change it in the “Graphics” tab of the wine configuration panel after the installation')" "Last Warning" POL_System_TmpDelete POL_Shortcut "Sonos.exe" "$TITLE" POL_SetupWindow_Close exit |
Contributions
Filters:
ContribuerMembre | Messages |
SKAL | Dimanche 2 Novembre 2014 à 9:32 |
SKAL
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesFixed the download part. Now everything works! Differences@@ -4,15 +4,16 @@ # Wine version used : wine-1.6.2 # Distribution used to test : Ubuntu 14.04.1 LTS # Author : SKAL -# Last Ver : 1.01 +# Last Ver : 2.01 # Changelog +# 2.01 Now also the download part works + minor changes # 2.00 implemented dowload part # 1.02 Some minor changes, thank you Ronin DUSETTE # 1.01 Set the virtual desktop AUTOMATICALY, started use translation system # left the POL_System_TmpCreate part for a future dowload feature # 1.0 first release # - + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" @@ -22,19 +23,19 @@ TITLE="Sonos" PREFIX="SonosPlayer" BIN="SonosDesktopController511.exe" -#WINEVERSION="" - +WINEVERSION="1.6.2" + POL_SetupWindow_Init - + # enable debug POL_Debug_Init - + # presentation program POL_SetupWindow_presentation "$TITLE" "Sonos Inc." "http://www.sonos.com" "SKAL" "$PREFIX" - - + + POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" @@ -44,7 +45,7 @@ POL_System_SetArch "x86" Set_OS "winxp" -# Install dotnet40 +# Install dotnet40 POL_Call POL_Install_dotnet40 # Presentation @@ -63,19 +64,19 @@ then cd "$POL_System_TmpDir" # Download the file - POL_Download "http://www.sonos.com/redir/controller_software_pc" + POL_Download "http://update.sonos.com/software/pc/dcr/$BIN" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$BIN" fi -# Set display -Set_Desktop On 1024 768 +# Set display +Set_Desktop On 1024 768 POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.\nIf you do not like the resolution used, you can change it in the “Graphics” tab of the wine configuration panel after the installation')" "Last Warning" - + POL_System_TmpDelete - + POL_Shortcut "Sonos.exe" "$TITLE" - + POL_SetupWindow_Close exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2014-10-29 11-00) # Last revision : (2014-10-29 11-00) # Wine version used : wine-1.6.2 # Distribution used to test : Ubuntu 14.04.1 LTS # Author : SKAL # Last Ver : 2.01 # Changelog # 2.01 Now also the download part works + minor changes # 2.00 implemented dowload part # 1.02 Some minor changes, thank you Ronin DUSETTE # 1.01 Set the virtual desktop AUTOMATICALY, started use translation system # left the POL_System_TmpCreate part for a future dowload feature # 1.0 first release # [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables TITLE="Sonos" PREFIX="SonosPlayer" BIN="SonosDesktopController511.exe" WINEVERSION="1.6.2" POL_SetupWindow_Init # enable debug POL_Debug_Init # presentation program POL_SetupWindow_presentation "$TITLE" "Sonos Inc." "http://www.sonos.com" "SKAL" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" # Virtual Disc configuration POL_System_SetArch "x86" Set_OS "winxp" # Install dotnet40 POL_Call POL_Install_dotnet40 # Presentation POL_SetupWindow_message "$(eval_gettext 'At the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" # POL_SetupWindow_message "$(eval_gettext 'You can download the Sonos windows client at the following link \n\nhttp://www.sonos.com/redir/controller_software_pc \n\nAt the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" # Choose Installation type POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # Download the file POL_Download "http://update.sonos.com/software/pc/dcr/$BIN" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$BIN" fi # Set display Set_Desktop On 1024 768 POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.\nIf you do not like the resolution used, you can change it in the “Graphics” tab of the wine configuration panel after the installation')" "Last Warning" POL_System_TmpDelete POL_Shortcut "Sonos.exe" "$TITLE" POL_SetupWindow_Close exit Réponses |
SKAL | Samedi 1 Novembre 2014 à 10:26 |
SKAL
|
InformationCette mise à jour a été acceptée par l'équipe MessagesI was trying to implement also the autodownload part in the script, but the POL_Download command seems not to work. Could you help me to understand why? thanks to all Differences@@ -0,0 +1,81 @@ +#!/bin/bash +# Date : (2014-10-29 11-00) +# Last revision : (2014-10-29 11-00) +# Wine version used : wine-1.6.2 +# Distribution used to test : Ubuntu 14.04.1 LTS +# Author : SKAL +# Last Ver : 1.01 +# Changelog +# 2.00 implemented dowload part +# 1.02 Some minor changes, thank you Ronin DUSETTE +# 1.01 Set the virtual desktop AUTOMATICALY, started use translation system +# left the POL_System_TmpCreate part for a future dowload feature +# 1.0 first release +# + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + + +# Variables + +TITLE="Sonos" +PREFIX="SonosPlayer" +BIN="SonosDesktopController511.exe" +#WINEVERSION="" + +POL_SetupWindow_Init + +# enable debug +POL_Debug_Init + +# presentation program +POL_SetupWindow_presentation "$TITLE" "Sonos Inc." "http://www.sonos.com" "SKAL" "$PREFIX" + + + + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate +POL_System_TmpCreate "$PREFIX" + +# Virtual Disc configuration + +POL_System_SetArch "x86" +Set_OS "winxp" + +# Install dotnet40 +POL_Call POL_Install_dotnet40 + +# Presentation +POL_SetupWindow_message "$(eval_gettext 'At the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" + +# POL_SetupWindow_message "$(eval_gettext 'You can download the Sonos windows client at the following link \n\nhttp://www.sonos.com/redir/controller_software_pc \n\nAt the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" + +# Choose Installation type +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +if [ "$INSTALL_METHOD" = "LOCAL" ] +then + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN" + POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" + POL_Wine "$APP_ANSWER" +elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] +then + cd "$POL_System_TmpDir" + # Download the file + POL_Download "http://www.sonos.com/redir/controller_software_pc" + POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" + POL_Wine "$BIN" +fi + +# Set display +Set_Desktop On 1024 768 +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.\nIf you do not like the resolution used, you can change it in the “Graphics” tab of the wine configuration panel after the installation')" "Last Warning" + +POL_System_TmpDelete + + +POL_Shortcut "Sonos.exe" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2014-10-29 11-00) # Last revision : (2014-10-29 11-00) # Wine version used : wine-1.6.2 # Distribution used to test : Ubuntu 14.04.1 LTS # Author : SKAL # Last Ver : 1.01 # Changelog # 2.00 implemented dowload part # 1.02 Some minor changes, thank you Ronin DUSETTE # 1.01 Set the virtual desktop AUTOMATICALY, started use translation system # left the POL_System_TmpCreate part for a future dowload feature # 1.0 first release # [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables TITLE="Sonos" PREFIX="SonosPlayer" BIN="SonosDesktopController511.exe" #WINEVERSION="" POL_SetupWindow_Init # enable debug POL_Debug_Init # presentation program POL_SetupWindow_presentation "$TITLE" "Sonos Inc." "http://www.sonos.com" "SKAL" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" # Virtual Disc configuration POL_System_SetArch "x86" Set_OS "winxp" # Install dotnet40 POL_Call POL_Install_dotnet40 # Presentation POL_SetupWindow_message "$(eval_gettext 'At the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" # POL_SetupWindow_message "$(eval_gettext 'You can download the Sonos windows client at the following link \n\nhttp://www.sonos.com/redir/controller_software_pc \n\nAt the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" # Choose Installation type POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" "$BIN" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$APP_ANSWER" elif [ "$INSTALL_METHOD" = "DOWNLOAD" ] then cd "$POL_System_TmpDir" # Download the file POL_Download "http://www.sonos.com/redir/controller_software_pc" POL_SetupWindow_wait "$(eval_gettext 'Please wait while $TITLE is installed.')" "$TITLE" POL_Wine "$BIN" fi # Set display Set_Desktop On 1024 768 POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.\nIf you do not like the resolution used, you can change it in the “Graphics” tab of the wine configuration panel after the installation')" "Last Warning" POL_System_TmpDelete POL_Shortcut "Sonos.exe" "$TITLE" POL_SetupWindow_Close exit Réponses |
SKAL | Mercredi 29 Octobre 2014 à 18:49 |
SKAL
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesHere is a second version with some improvement Differences@@ -0,0 +1,55 @@ +#!/bin/bash +# Date : (2014-10-29 11-00) +# Last revision : (2014-10-29 11-00) +# Wine version used : wine-1.6.2 +# Distribution used to test : Ubuntu 14.04.1 LTS +# Author : SKAL +# Last Ver : 1.01 +# Changelog +# 1.01 Set the virtual desktop AUTOMATICALY, started use translation system +# left the POL_System_TmpCreate part for a future dowload feature +# 1.0 first release +# + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Sonos" +PREFIX="SonosPlayer" + + +POL_SetupWindow_Init + +# enable debug +POL_Debug_Init + +# presentation program +POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.sonos.com" "SKAL" "$PREFIX" + + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate + +POL_System_TmpCreate "$PREFIX" + + +POL_Call POL_Install_dotnet40 +Set_OS "winxp" "sp3" + +POL_SetupWindow_message "$(eval_gettext 'You can download the Sonos windows client at the following link \n\nhttp://www.sonos.com/redir/controller_software_pc \n\nAt the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" + +POL_SetupWindow_InstallMethod "LOCAL" + +POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" +POL_SetupWindow_wait "Installation in progress." "$TITLE installation" +POL_Wine start /unix "$APP_ANSWER" + +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.\nIf you do not like the resolution used, you can change it in the “Graphics” tab of the wine configuration panel after the installation')" "Last Warning" + +POL_System_TmpDelete +Set_Desktop On 1024 768 + +POL_Shortcut "Sonos.exe" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2014-10-29 11-00) # Last revision : (2014-10-29 11-00) # Wine version used : wine-1.6.2 # Distribution used to test : Ubuntu 14.04.1 LTS # Author : SKAL # Last Ver : 1.01 # Changelog # 1.01 Set the virtual desktop AUTOMATICALY, started use translation system # left the POL_System_TmpCreate part for a future dowload feature # 1.0 first release # [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Sonos" PREFIX="SonosPlayer" POL_SetupWindow_Init # enable debug POL_Debug_Init # presentation program POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.sonos.com" "SKAL" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" POL_Call POL_Install_dotnet40 Set_OS "winxp" "sp3" POL_SetupWindow_message "$(eval_gettext 'You can download the Sonos windows client at the following link \n\nhttp://www.sonos.com/redir/controller_software_pc \n\nAt the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!')" "Sonos installation" POL_SetupWindow_InstallMethod "LOCAL" POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine start /unix "$APP_ANSWER" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.\nIf you do not like the resolution used, you can change it in the “Graphics” tab of the wine configuration panel after the installation')" "Last Warning" POL_System_TmpDelete Set_Desktop On 1024 768 POL_Shortcut "Sonos.exe" "$TITLE" POL_SetupWindow_Close exit RéponsesMercredi 29 Octobre 2014 à 20:06
|
SKAL | Mercredi 29 Octobre 2014 à 13:02 |
SKAL
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesWas missing the install script :P Differences@@ -0,0 +1,53 @@ +#!/bin/bash +# Date : (2014-10-29 11-00) +# Last revision : (2014-10-29 11-00) +# Wine version used : wine-1.6.2 +# Distribution used to test : Ubuntu 14.04.1 LTS +# Author : SKAL +# Ver : 1.0 +# Changelog +# 1.0 first release + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Sonos" +PREFIX="SonosPlayer" + + +POL_SetupWindow_Init + +# enable debug +# POL_Debug_Init + +# presentation program +POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.sonos.com" "SKAL" "$PREFIX" + + +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate + +POL_System_TmpCreate "$PREFIX" + + +POL_Call POL_Install_dotnet40 +Set_OS "winxp" "sp3" + +POL_SetupWindow_message "You can download the Sonos windows client at the following link \n\nhttp://www.sonos.com/redir/controller_software_pc \n\nAt the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!" "Sonos installation" + +POL_SetupWindow_InstallMethod "LOCAL" + +POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" +POL_SetupWindow_wait "Installation in progress." "$TITLE installation" +POL_Wine start /unix "$APP_ANSWER" + +POL_SetupWindow_wait "Message" "Title" + +POL_SetupWindow_message "To make the program work you have to emulate a virtual desktop. This can be done on the “Graphics” tab in the wine configuration panel after the installation " "Last Warning" + +POL_System_TmpDelete + +POL_Shortcut "Sonos.exe" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/bin/bash # Date : (2014-10-29 11-00) # Last revision : (2014-10-29 11-00) # Wine version used : wine-1.6.2 # Distribution used to test : Ubuntu 14.04.1 LTS # Author : SKAL # Ver : 1.0 # Changelog # 1.0 first release [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Sonos" PREFIX="SonosPlayer" POL_SetupWindow_Init # enable debug # POL_Debug_Init # presentation program POL_SetupWindow_presentation "$TITLE" "$TITLE" "http://www.sonos.com" "SKAL" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate POL_System_TmpCreate "$PREFIX" POL_Call POL_Install_dotnet40 Set_OS "winxp" "sp3" POL_SetupWindow_message "You can download the Sonos windows client at the following link \n\nhttp://www.sonos.com/redir/controller_software_pc \n\nAt the end of the installation DO NOT EXECUTE THE PROGRAMM AUTOMATICALY!!" "Sonos installation" POL_SetupWindow_InstallMethod "LOCAL" POL_SetupWindow_browse "Please select the installation file to run." "$TITLE installation" POL_SetupWindow_wait "Installation in progress." "$TITLE installation" POL_Wine start /unix "$APP_ANSWER" POL_SetupWindow_wait "Message" "Title" POL_SetupWindow_message "To make the program work you have to emulate a virtual desktop. This can be done on the “Graphics” tab in the wine configuration panel after the installation " "Last Warning" POL_System_TmpDelete POL_Shortcut "Sonos.exe" "$TITLE" POL_SetupWindow_Close exit RéponsesMercredi 29 Octobre 2014 à 13:34
Mercredi 29 Octobre 2014 à 18:13
Mercredi 29 Octobre 2014 à 18:20
Mercredi 29 Octobre 2014 à 18:24
Mercredi 29 Octobre 2014 à 18:25
Mercredi 29 Octobre 2014 à 18:54
Mercredi 29 Octobre 2014 à 20:07
|
This site allows content generated by members, and we promptly remove any content that infringes copyright according to our Terms of Service. To report copyright infringement, please send a notice to dmca-notice@playonlinux.com