PictureToTV
Informations
Créateur | Messages |
---|---|
Ueliton
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience9 0 DescriptionAward-winning photo/video slideshow software. This feature-packed program comes with beautiful and elegant pre-built effects that you can use. In addition, the powerful and advanced features and tools allow you to craft your slideshows anyway you want. Let your creativity flow with MemoriesOnTV! Website. Captures d'écranCode source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="PictureToTV" TITLE="PictureToTV" WINEVERSION="1.7.28" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine p2tv145.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
petch | Jeudi 4 Juin 2015 à 1:12 |
petch
|
InformationCette mise à jour a été acceptée par l'équipe MessagesAdd missing POL_Wine_WaitBefore Differences@@ -8,7 +8,7 @@ [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + # Variables AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" @@ -17,7 +17,7 @@ WINEVERSION="1.7.28" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" - + POL_SetupWindow_Init POL_SetupWindow_SetID 2545 @@ -40,9 +40,11 @@ if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" POL_Wine p2tv145.exe fi - + # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="PictureToTV" TITLE="PictureToTV" WINEVERSION="1.7.28" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine p2tv145.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
Ronin DUSETTE | Mercredi 3 Juin 2015 à 21:04 |
Ronin DUSETTE
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesMy proposed changes. I didn't test it, but I corrected the things that I said were wrong the last, like, 5 times. hahaha. :D Please test this and, if it works, leave it as-is, take new screenshots, and use this as a base for the rest of your scripts. Differences@@ -0,0 +1,60 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="PictureToTV" +TITLE="PictureToTV" +WINEVERSION="1.7.28" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2545 + +# Enable debugging +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" + +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_Wine p2tv145.exe +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" + POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="PictureToTV" TITLE="PictureToTV" WINEVERSION="1.7.28" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_Wine p2tv145.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMercredi 3 Juin 2015 à 21:07
Mercredi 3 Juin 2015 à 21:08
Mercredi 3 Juin 2015 à 21:10
Mercredi 3 Juin 2015 à 21:14
Mercredi 3 Juin 2015 à 21:19
Mercredi 3 Juin 2015 à 21:33
|
Ueliton | Mercredi 3 Juin 2015 à 20:59 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesOne last try. Differences@@ -0,0 +1,54 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="PictureToTV" +TITLE="PictureToTV" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2545 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_SetupWindow_message "Please do not restart" "$TITLE" + POL_Wine p2tv145.exe +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + POL_Wine "$APP_ANSWER" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="PictureToTV" TITLE="PictureToTV" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "Please do not restart" "$TITLE" POL_Wine p2tv145.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMercredi 3 Juin 2015 à 21:03
|
Ueliton | Mercredi 3 Juin 2015 à 20:35 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,112 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# MemoriesOnTV2 version used to test: 2.2.1 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="MemoriesOnTV2" +TITLE="MemoriesOnTV2" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2546 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# INFO +POL_SetupWindow_message "INFO: This install MemoriesOnTV version 2.\n\nIf you have registration code from others versions...\n\nYou can find the installer on PlayOnLinux / Mac for PictureToTV, MemoriesOnTV3 or Memories On TV(for 4)." "$TITLE" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" + +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922982-dc363817786ff182/motv221.exe" "1d569cde2ef6076e05a12fa47d7a562a" + POL_SetupWindow_message #!/usr/bin/env playonlinux-bash +# CHANGELOG +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="PictureToTV" +TITLE="PictureToTV" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2545 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_Wine p2tv145.exe +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" + POL_SetupWindow_message "Please do not restart." "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit 0 "$TITLE" + POL_Wine motv221.exe +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" + POL_SetupWindow_message "Please do not restart." "$TITLE" + POL_Wine "$APP_ANSWER" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "MemoriesOnTV.exe" "$TITLE" +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # MemoriesOnTV2 version used to test: 2.2.1 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="MemoriesOnTV2" TITLE="MemoriesOnTV2" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2546 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # INFO POL_SetupWindow_message "INFO: This install MemoriesOnTV version 2.\n\nIf you have registration code from others versions...\n\nYou can find the installer on PlayOnLinux / Mac for PictureToTV, MemoriesOnTV3 or Memories On TV(for 4)." "$TITLE" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922982-dc363817786ff182/motv221.exe" "1d569cde2ef6076e05a12fa47d7a562a" POL_SetupWindow_message #!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="PictureToTV" TITLE="PictureToTV" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_Wine p2tv145.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_SetupWindow_message "Please do not restart." "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 "$TITLE" POL_Wine motv221.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_SetupWindow_message "Please do not restart." "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "MemoriesOnTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMercredi 3 Juin 2015 à 20:41
Mercredi 3 Juin 2015 à 20:41
Mercredi 3 Juin 2015 à 20:44
Mercredi 3 Juin 2015 à 20:45
Mercredi 3 Juin 2015 à 20:46
Mercredi 3 Juin 2015 à 20:48
|
Ueliton | Mercredi 3 Juin 2015 à 20:26 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,56 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="PictureToTV" +TITLE="PictureToTV" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2545 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_SetupWindow_message "\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." "$TITLE" + POL_Wine p2tv145.exe +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" + POL_SetupWindow_message "\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="PictureToTV" TITLE="PictureToTV" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." "$TITLE" POL_Wine p2tv145.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_SetupWindow_message "\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMercredi 3 Juin 2015 à 20:27
|
Ueliton | Mercredi 3 Juin 2015 à 20:17 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,56 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="PictureToTV" +TITLE="PictureToTV" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2545 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_SetupWindow_message "$TEXT_INSTRUCTIONS" "$TITLE" + POL_Wine p2tv145.exe +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" + POL_SetupWindow_message "$(eval_gettext '\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART.')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="PictureToTV" TITLE="PictureToTV" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "$TEXT_INSTRUCTIONS" "$TITLE" POL_Wine p2tv145.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext '\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMercredi 3 Juin 2015 à 20:18
Mercredi 3 Juin 2015 à 20:19
Mercredi 3 Juin 2015 à 20:19
Mercredi 3 Juin 2015 à 20:26
|
Ueliton | Mercredi 3 Juin 2015 à 20:05 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,56 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="PictureToTV" +TITLE="PictureToTV" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "https://sites.google.com/site/myubuntustudio/top.png" "https://sites.google.com/site/myubuntustudio/left.png" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2545 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_SetupWindow_message "$TEXT_INSTRUCTIONS" "$TITLE" + POL_Wine p2tv145.exe +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" + POL_SetupWindow_message "$(eval_gettext '\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART.')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="PictureToTV" TITLE="PictureToTV" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "https://sites.google.com/site/myubuntustudio/top.png" "https://sites.google.com/site/myubuntustudio/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "$TEXT_INSTRUCTIONS" "$TITLE" POL_Wine p2tv145.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select $TITLE install file.')" "$TITLE" POL_SetupWindow_message "$(eval_gettext '\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 RéponsesMercredi 3 Juin 2015 à 20:06
Mercredi 3 Juin 2015 à 20:06
Mercredi 3 Juin 2015 à 20:08
Mercredi 3 Juin 2015 à 20:10
Mercredi 3 Juin 2015 à 20:12
|
Ueliton | Mercredi 3 Juin 2015 à 17:05 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. MessagesNew edition Differences@@ -0,0 +1,57 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="PictureToTV" +TEXT_INSTRUCTIONS="$(eval_gettext '\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART.')" +TITLE="PictureToTV" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566724067-7c590f01490190db/left.png" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2545 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_SetupWindow_message "$TEXT_INSTRUCTIONS" "$TITLE" + POL_Wine p2tv145.exe +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + POL_SetupWindow_message "$TEXT_INSTRUCTIONS" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="PictureToTV" TEXT_INSTRUCTIONS="$(eval_gettext '\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART.')" TITLE="PictureToTV" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566724067-7c590f01490190db/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "$TEXT_INSTRUCTIONS" "$TITLE" POL_Wine p2tv145.exe fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" POL_SetupWindow_message "$TEXT_INSTRUCTIONS" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit RéponsesMercredi 3 Juin 2015 à 17:13
|
Ueliton | Mardi 2 Juin 2015 à 22:56 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,62 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# Changed ID +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="Codejam1" +TEXT_INSTRUCTIONS="\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." +TITLE="PictureToTV" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566724067-7c590f01490190db/left.png" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2545 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" + +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine p2tv145.exe + POL_Wine_WaitExit "$TITLE" +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" + POL_Wine_WaitExit "$TITLE" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # Changed ID # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="Codejam1" TEXT_INSTRUCTIONS="\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." TITLE="PictureToTV" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566724067-7c590f01490190db/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2545 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine p2tv145.exe POL_Wine_WaitExit "$TITLE" fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit RéponsesMercredi 3 Juin 2015 à 4:23
Mercredi 3 Juin 2015 à 4:35
Mercredi 3 Juin 2015 à 5:12
Mercredi 3 Juin 2015 à 16:14
Mercredi 3 Juin 2015 à 16:20
|
Ueliton | Mardi 2 Juin 2015 à 22:48 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,62 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# Changed ID +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="Codejam1" +TEXT_INSTRUCTIONS="\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." +TITLE="PictureToTV" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566724067-7c590f01490190db/left.png" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2541 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" + +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine p2tv145.exe + POL_Wine_WaitExit "$TITLE" +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" + POL_Wine_WaitExit "$TITLE" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # Changed ID # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="Codejam1" TEXT_INSTRUCTIONS="\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." TITLE="PictureToTV" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566724067-7c590f01490190db/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2541 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine p2tv145.exe POL_Wine_WaitExit "$TITLE" fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit Réponses |
Ueliton | Mardi 2 Juin 2015 à 22:42 |
Ueliton
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,61 @@ +#!/usr/bin/env playonlinux-bash +# CHANGELOG +# **PlayOnLinux 4.2.8** +# Wine version used: 1.7.28 +# Distribution used to test: openSUSE 13.2 x86_64 +# PictureToTV version used to test: 1.4.5 +# Author: Ueliton +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +# Variables ------------- +AUTHOR="Ueliton" +BINU_SERVER="http://media.binu.com/12630290/stream" +PREFIX="Codejam1" +TEXT_INSTRUCTIONS="\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." +TITLE="PictureToTV" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566724067-7c590f01490190db/left.png" "$TITLE" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2531 +# Enable debugging +POL_Debug_Init +# Presentation +POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" +# Managing prefix and Wine version +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" +# Creating Temp directory +POL_System_TmpCreate "$PREFIX" +cd "$POL_System_TmpDir" + +POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" + +# Installation Method DOWNLOAD +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" + POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine p2tv145.exe + POL_Wine_WaitExit "$TITLE" +fi + +# Installation Method LOCAL +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine "$APP_ANSWER" + POL_Wine_WaitExit "$TITLE" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "PictureToTV.exe" "$TITLE" +POL_SetupWindow_Close +exit \ No newline at end of file Nouveau code source#!/usr/bin/env playonlinux-bash # CHANGELOG # **PlayOnLinux 4.2.8** # Wine version used: 1.7.28 # Distribution used to test: openSUSE 13.2 x86_64 # PictureToTV version used to test: 1.4.5 # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="Codejam1" TEXT_INSTRUCTIONS="\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." TITLE="PictureToTV" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566724067-7c590f01490190db/left.png" "$TITLE" POL_SetupWindow_Init POL_SetupWindow_SetID 2531 # Enable debugging POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "Codejam Pte Ltd" "www.codejam.com" "$AUTHOR" "$PREFIX" # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WORKING_WINE_VERSION" # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_SetupWindow_InstallMethod "DOWNLOAD,LOCAL" # Installation Method DOWNLOAD if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922764-6b5754d737784b51/p2tv145.exe" "de0d261d897450852c5c0be79036b595" POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine p2tv145.exe POL_Wine_WaitExit "$TITLE" fi # Installation Method LOCAL if [ "$INSTALL_METHOD" = "LOCAL" ] then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "PictureToTV.exe" "$TITLE" POL_SetupWindow_Close exit Réponses |
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