Memories On TV 2
Informations
Creator | Message |
---|---|
Ueliton
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 0 DescriptionMemoriesOnTV is our award-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.
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 # 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" 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 2546 # 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/98566922982-dc363817786ff182/motv221.exe" "1d569cde2ef6076e05a12fa47d7a562a" POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" POL_Wine_WaitBefore "$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 "$(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 "MemoriesOnTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
Ronin DUSETTE | Thursday 4 June 2015 at 6:42 |
Ronin DUSETTE
|
InformationThis update has been approved by the team. MessageFixing unused variable... Differences@@ -13,7 +13,7 @@ BINU_SERVER="http://media.binu.com/12630290/stream" PREFIX="MemoriesOnTV2" TITLE="MemoriesOnTV2" -WORKING_WINE_VERSION="1.7.28" +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 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" 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 2546 # 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/98566922982-dc363817786ff182/motv221.exe" "1d569cde2ef6076e05a12fa47d7a562a" POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" POL_Wine_WaitBefore "$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 "$(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 "MemoriesOnTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
petch | Thursday 4 June 2015 at 1:01 |
petch
|
WarningThis update has not been approved yet by the team. MessageFix POL_GetSetupImages, missing POL_Wine_WaitBefore Differences@@ -7,7 +7,7 @@ # Author: Ueliton [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" - + # Variables ------------- AUTHOR="Ueliton" BINU_SERVER="http://media.binu.com/12630290/stream" @@ -15,20 +15,19 @@ TITLE="MemoriesOnTV2" 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_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" - + # Managing prefix and Wine version POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" - + # Creating Temp directory POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" @@ -39,10 +38,11 @@ if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_Download "$BINU_SERVER/98566922982-dc363817786ff182/motv221.exe" "1d569cde2ef6076e05a12fa47d7a562a" - POL_SetupWindow_message "Please do not restart" "$TITLE" + POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" POL_Wine motv221.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 # 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" # 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/98566922982-dc363817786ff182/motv221.exe" "1d569cde2ef6076e05a12fa47d7a562a" POL_SetupWindow_message "$(eval_gettext 'Please do not restart.')" "$TITLE" POL_Wine_WaitBefore "$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 "$(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 "MemoriesOnTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
Ueliton | Wednesday 3 June 2015 at 21:49 |
Ueliton
|
WarningThis update has not been approved yet by the team. 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 +# 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 "https://sites.google.com/site/myubuntustudio/top.png" "https://sites.google.com/site/myubuntustudio/left.png" "$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" + +# 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/98566922982-dc363817786ff182/motv221.exe" "1d569cde2ef6076e05a12fa47d7a562a" + POL_SetupWindow_message "Please do not restart" "$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 "$(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 "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 "https://sites.google.com/site/myubuntustudio/top.png" "https://sites.google.com/site/myubuntustudio/left.png" "$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" # 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/98566922982-dc363817786ff182/motv221.exe" "1d569cde2ef6076e05a12fa47d7a562a" POL_SetupWindow_message "Please do not restart" "$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 "$(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 "MemoriesOnTV.exe" "$TITLE" POL_SetupWindow_Close exit 0 RepliesWednesday 3 June 2015 at 21:49
|
Ueliton | Wednesday 3 June 2015 at 17:02 |
Ueliton
|
WarningThis update has not been approved yet by the team. MessageNew edited script Differences@@ -0,0 +1,59 @@ +#!/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" +TEXT_INSTRUCTIONS="$(eval_gettext '\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART.')" +TITLE="MemoriesOnTV2" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566920171-18ead4c77c3f40da/left.png" "$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 "$TEXT_INSTRUCTIONS" "$TITLE" + POL_Wine motv221.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 "$APP_ANSWER" +fi +# Delete temp directory +POL_System_TmpDelete +# Create a launcher +POL_Shortcut "MemoriesOnTV.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 # 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" TEXT_INSTRUCTIONS="$(eval_gettext '\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART.')" TITLE="MemoriesOnTV2" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566920171-18ead4c77c3f40da/left.png" "$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 "$TEXT_INSTRUCTIONS" "$TITLE" POL_Wine motv221.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 "$APP_ANSWER" fi # Delete temp directory POL_System_TmpDelete # Create a launcher POL_Shortcut "MemoriesOnTV.exe" "$TITLE" POL_SetupWindow_Close exit RepliesWednesday 3 June 2015 at 17:06
|
Ueliton | Tuesday 2 June 2015 at 22:52 |
Ueliton
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,63 @@ +#!/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="Codejam2" +TEXT_INSTRUCTIONS="\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." +TITLE="MemoriesOnTV2" +WORKING_WINE_VERSION="1.7.28" + +POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566920171-18ead4c77c3f40da/left.png" "$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 or later)." "$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 "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine motv221.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 "MemoriesOnTV.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 # 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="Codejam2" TEXT_INSTRUCTIONS="\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART." TITLE="MemoriesOnTV2" WORKING_WINE_VERSION="1.7.28" POL_GetSetupImages "http://media.binu.com/12630290/stream/98566724475-c96e651946818e07/top.png" "http://media.binu.com/12630290/stream/98566920171-18ead4c77c3f40da/left.png" "$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 or later)." "$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 "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine motv221.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 "MemoriesOnTV.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