PictureToTV
Informations
Creator | Message |
---|---|
Ueliton
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks9 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. ScreenshotsSource code#!/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:
ContributeMember | Message |
petch | Thursday 4 June 2015 at 1:12 |
petch
|
InformationThis update has been approved by the team. MessageAdd 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 New source code#!/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 Replies |
Ronin DUSETTE | Wednesday 3 June 2015 at 21:04 |
Ronin DUSETTE
|
WarningThis update has not been approved yet by the team. MessageMy 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 New source code#!/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 RepliesWednesday 3 June 2015 at 21:07
Wednesday 3 June 2015 at 21:08
Wednesday 3 June 2015 at 21:10
Wednesday 3 June 2015 at 21:14
Wednesday 3 June 2015 at 21:19
Wednesday 3 June 2015 at 21:33
|
Ueliton | Wednesday 3 June 2015 at 20:59 |
Ueliton
|
WarningThis update has not been approved yet by the team. MessageOne 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 New source code#!/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 RepliesWednesday 3 June 2015 at 21:03
|
Ueliton | Wednesday 3 June 2015 at 20:35 |
Ueliton
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 RepliesWednesday 3 June 2015 at 20:41
Wednesday 3 June 2015 at 20:41
Wednesday 3 June 2015 at 20:44
Wednesday 3 June 2015 at 20:45
Wednesday 3 June 2015 at 20:46
Wednesday 3 June 2015 at 20:48
|
Ueliton | Wednesday 3 June 2015 at 20:26 |
Ueliton
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 RepliesWednesday 3 June 2015 at 20:27
|
Ueliton | Wednesday 3 June 2015 at 20:17 |
Ueliton
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 RepliesWednesday 3 June 2015 at 20:18
Wednesday 3 June 2015 at 20:19
Wednesday 3 June 2015 at 20:19
Wednesday 3 June 2015 at 20:26
|
Ueliton | Wednesday 3 June 2015 at 20:05 |
Ueliton
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 RepliesWednesday 3 June 2015 at 20:06
Wednesday 3 June 2015 at 20:06
Wednesday 3 June 2015 at 20:08
Wednesday 3 June 2015 at 20:10
Wednesday 3 June 2015 at 20:12
|
Ueliton | Wednesday 3 June 2015 at 17:05 |
Ueliton
|
WarningThis update has not been approved yet by the team. MessageNew 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 New source code#!/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 RepliesWednesday 3 June 2015 at 17:13
|
Ueliton | Tuesday 2 June 2015 at 22:56 |
Ueliton
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 RepliesWednesday 3 June 2015 at 4:23
Wednesday 3 June 2015 at 4:35
Wednesday 3 June 2015 at 5:12
Wednesday 3 June 2015 at 16:14
Wednesday 3 June 2015 at 16:20
|
Ueliton | Tuesday 2 June 2015 at 22:48 |
Ueliton
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 Replies |
Ueliton | Tuesday 2 June 2015 at 22:42 |
Ueliton
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 Replies |
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