Memories On TV

Informations

Creator Message
Ueliton

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 9483
Wine: 1.7.28

Feedbacks

Description

MemoriesOnTV 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.

Website.

Screenshots

MiniatureMiniatureMiniatureMiniature

Source code

Contributions

Filters:

Contribute
Member Message
Ueliton Saturday 6 June 2015 at 17:09
Ueliton

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

Added:

# Solution to overwrite versions already installed

rm -r "$WINEPREFIX/drive_c/$PROGRAMFILES/MemoriesOnTV4"

This command is necessary because, as here you can install two versions of MemoriesOnTV 4, I could observe a problem, to have installed the 4.1.2 version, and then try to override it with the 4.1.0 version without erasing the drive virtual, it does not work, because the installer MemoriesOnTV 4.1.0, do not overwrite the 4.1.2. This solves the problem.

Differences

New source code

Replies

Anonymous
Saturday 6 June 2015 at 18:34
PlayOnLinux already removes any existing wine prefix before installing. So this line should not be necessary
petch Thursday 4 June 2015 at 1:21
petch

Information

This update has been approved by the team.

Message

Update POL_GetSetupImages, fix one missing localization, missing POL_Wine_WaitBefore

Differences

New source code

Replies

Thursday 4 June 2015 at 1:55
I was wondering about the warning against selecting "reboot", is it really necessary?
Thursday 4 June 2015 at 2:35
Thank you for your help.

I believe that the warning is necessary because the program restarts, it may stop the installation.
Thursday 4 June 2015 at 3:19
So the same problem exists on Windows?
Thursday 4 June 2015 at 3:27
I do not use Windows ... I refer to the installation process in PlayOnLinux, it can be stopped if the program restart, and not create shortcuts, for example.
Thursday 4 June 2015 at 3:31
Yes, but I don't see how this problem can happen with PlayOnLinux if it does not exist under Windows too
Thursday 4 June 2015 at 3:32
Have you actually experienced the problem?
Thursday 4 June 2015 at 4:12
No, I have not tested this. Just follow the recommendation that exists in PlayOnLinux own, and reinforced the warning.
Thursday 4 June 2015 at 4:26
I don't think we want to clutter half the scripts with "don't put cats into the microwave" style notices.
Maybe it could be added in the general PlayOnLinux general notices instead
Thursday 4 June 2015 at 4:36
Yeah, you're right ...
Good morning, and good work. Here it's late, I need sleep. : D
Thursday 4 June 2015 at 5:01
I tried to improve the wording, any comments welcome: https://github.com/PlayOnLinux/POL-POM-4/commit/76e5f5367eb28ce89e45b55ae796f954dc3af8bf
Ueliton Wednesday 3 June 2015 at 19:25
Ueliton

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

New source code

Replies

Wednesday 3 June 2015 at 19:29
http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions#POL_GetSetupImages_.284.0.2B.29
Wednesday 3 June 2015 at 19:31
And there are still eval_gettext statements missing from POL_SetupWindow_message. They do work:

https://www.playonlinux.com/en/app-2316-Adobe_Photoshop_CS6.html
Wednesday 3 June 2015 at 19:42
I can not leave without pictures?
Wednesday 3 June 2015 at 19:49
No. You need to put the URLs up, and in the comments here, post the links to the photos and we will upload them. When they are uploaded to our server, they will replace the default POL ones. It is a standard part of the POL scripts.
Wednesday 3 June 2015 at 20:31
Are your screenshots from Windows or from POL? They should be taken from your non-Windows system, showing that it works through POL. 

http://wiki.playonlinux.com/index.php/How_to_Contribute_a_Script#Screenshot_requirements
Ueliton Tuesday 2 June 2015 at 23:05
Ueliton

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

New source code

Replies

Wednesday 3 June 2015 at 1:19
Ok, we're almost there, just a few new things, or things I forgot the first time around (sorry about that, I hope I'm not missing anything):

PREFIX="Codejam"

If Codejam is the publisher and Memories On TV the software name, shouldn't $PREFIX be "MemoriesOnTV" or "MemorieOnTV4", something like that? I'm trying to find something more consistent with your other scripts, and if they have other products...

TEXT_INSTRUCTIONS="\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART."
...
POL_SetupWindow_message "$(eval_gettext '$TEXT_INSTRUCTIONS')" "$TITLE"

Thinking of it, this will break localization; Because translators will be asked to translate '$TEXT_INSTRUCTIONS', and if they don't keep it unchanged (best case), the user will see the original english text.
Either inline the text (but I see it's used in several places), or use
TEXT_INSTRUCTIONS="$(eval_gettext '\nDuring installation please deselect Creation of Icon Launcher/Desktop\n\nDO NOT let RESTART.')"
...
POL_SetupWindow_message "$TEXT_INSTRUCTIONS" "$TITLE"
instead

POL_Wine_WaitBefore "$TITLE"
POL_Wine ${EXE_FILE}
POL_Wine_WaitExit "$TITLE"

POL_Wine_WaitExit should be unnecessary here; Unless POL_Wine ${EXE_FILE} is non-blocking (happens with few programs), in which case it's POL_Wine_WaitBefore "$TITLE" which is unnecessary. Either way, one should never need both for the same POL_Wine (see http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions#POL_Wine_.284.0.2B.29)

cd $POL_USER_ROOT/wineprefix/Codejam/drive_c/Program\ Files/MemoriesOnTV4

Use $WINEPREFIX instead of $POL_USER_ROOT/wineprefix/Codejam for all paths inside the virtual drive; Also don't hardcode "Program Files" since it's subject to localization by Wine (following Windows own behavior), instead use $PROGRAMFILES:
cd "$WINEPREFIX/drive_c/$PROGRAMFILES/MemoriesOnTV4"
Wednesday 3 June 2015 at 16:29
cd $WINEPREFIX/$PREFIX/drive_c/$PROGRAMFILES/MemoriesOnTV4

and

cd $WINEPREFIX/drive_c/$PROGRAMFILES/MemoriesOnTV4

This saving in $ HOME, how do I save in:

/home/openSUSE/PlayOnLinux's virtual drives/MemoriesOnTV4/drive_c/Program Files/MemoriesOnTV4/ (?)

or in

/home/openSUSE/PlayOnLinux's virtual drives/MemoriesOnTV4/drive_c/Program\ Files/MemoriesOnTV4/ (?)
Wednesday 3 June 2015 at 16:39
The problem is $ PROGRAMFILES, this forwarding to $ HOME. Only works using Program \ Files
Wednesday 3 June 2015 at 16:57
I can use this (?):

cd $WINEPREFIX//dosdevices/c:/Program\ Files/MemoriesOnTV4
Wednesday 3 June 2015 at 17:00
It should work the way that petch said. Did you add the quotes around the path after cd? Like he said, you don't want to hardcode the Program Files folder.
Wednesday 3 June 2015 at 17:08
I Just do it:
Wednesday 3 June 2015 at 17:09
cd $WINEPREFIX/drive_c/$PROGRAMFILES/MemoriesOnTV4 but not work
Wednesday 3 June 2015 at 17:10
So, add the quotes around the file path, exactly as petch typed it:

cd "$WINEPREFIX/drive_c/$PROGRAMFILES/MemoriesOnTV4"
Ueliton Monday 1 June 2015 at 23:11
Ueliton

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

New source code

Replies

Monday 1 June 2015 at 23:12
Sorry to post again, missed the creation of the virtual drive (PREFIX) and the shortcut.
Monday 1 June 2015 at 23:18
The time in the CHANGELOG is the Brazil -03
Monday 1 June 2015 at 23:25
# !/usr/bin/env playonlinux-bash

This line is not just a comment, it can be interpreted specifically by Unixen kernels. Adding a space just breaks this

TITLE="MemoriesOnTV"

$TITLE has to match script name in the repository

TITLE="MemoriesOnTV"
WORKING_WINE_VERSION="1.7.28"

Redefined variables

exit 1 ;;

Ideally if you want to abort the script you should call POL_SetupWindow_Close first

POL_Wine start /unix ${EXE_FILE}

start /unix is usually unnecessary, and it has unwanted side effects. Remove it if possible

cd ~/.PlayOn*/wineprefix/Codejam/drive_c/Program\ Files/MemoriesOnTV*

Never hardcode PlayOnLinux/PlayOnMac state directory, use $POL_USER_ROOT
never hardcode "Program Files" either, it's subject to localization. Use $PROGRAMFILES instead.

POL_SetupWindow_wait_next_signal;;

Not sure why your left that here

POL_SetupWindow_message "$TITLE has been successfully installed." "$TITLE"

"Success" messages are deprecated, as they can sometimes appear even after errors. Just let PoL display an error message if it detected that something broke.

POL_Wine_WaitExit "$TITLE"

The script shouldn't be waiting for any Wine process to finish at that point
Ueliton Monday 1 June 2015 at 22:55
Ueliton

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

New source code

Replies

Monday 1 June 2015 at 22:56
You need to resize the fonts in the description, because they are very large.
Monday 1 June 2015 at 22:58
This are the screenshots:"http://media.binu.com/12630290/stream/98566919891-7143d7fbadfa4693/MemoriesOnTVscreenshot1.png" # MemoriesOnTVscreenshot1.png
"http://media.binu.com/12630290/stream/98566919830-972cda1e62b72640/MemoriesOnTVscreenshot2.png" # MemoriesOnTVscreenshot2.png
"http://media.binu.com/12630290/stream/98566919747-b3dd760eb02d2e66/MemoriesOnTVscreenshot3.png" # MemoriesOnTVscreenshot3.png
"http://media.binu.com/12630290/stream/98566919633-b06b5541a62ed438/MemoriesOnTVscreenshot4.png" # MemoriesOnTVscreenshot4.png
Monday 1 June 2015 at 23:02
The icon that will be used in the PlayOnLinux script list and the site: "http://media.binu.com/12630290/stream/98566920031-169779d3852b32ce/MemoriesOnTV-22x22.png" # MemoriesOnTV-22x22.png

The icon that will be used for the installed program: "http://media.binu.com/12630290/stream/98566919968-1dacb10f0623c67c/MemoriesOnTV-48x48.png" # MemoriesOnTV-48x48.png
Ueliton Wednesday 27 May 2015 at 22:23
Ueliton

Warning

This update has not been approved yet by the team.
Use it at your own risk

Message

MemoriesOnTV

Photo slideshow for the Creative

MemoriesOnTV 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. Let your creativity flow with MemoriesOnTV!

Site: http://www.codejam.com/slideshow/index.htm

Images for description:

http://media.binu.com/2627104/stream/98567242579-b1a59b315fc9a300/PlayonLinux1.png

http://media.binu.com/2627104/stream/98567242602-a383d162a97be62a/PlayonLinux02.png

http://media.binu.com/2627104/stream/98567242622-00482b9bed15a272/PlayonLinux01.png

http://media.binu.com/2627104/stream/98567242651-a07c2f3b3b907aaf/PlayonLinux.png



The icon that will be used for the installed program: 

http://media.binu.com/2627104/stream/98567242699-c6bff625bdb03939/MemoriesOnTV-48x48.png

The icon that will be used in the PlayOnLinux script list and the site:

http://media.binu.com/2627104/stream/98567242944-05d8cccb5f47e507/MemoriesOnTV-22x22.png


Sideways banner that is on the left side of the first window when script is ran:

http://media.binu.com/2627104/stream/98567243430-321cf86b4c9f5ddd/left.png

Top corner Icon for install script:

http://media.binu.com/2627104/stream/98567242677-51de85ddd068f0bc/top.png

Differences

New source code

Replies

Ueliton Monday 25 May 2015 at 23:01
Ueliton

Warning

This update has not been approved yet by the team.
Use it at your own risk

Differences

New source code

Replies

Ueliton Sunday 24 May 2015 at 19:07
Ueliton

Message

Add DLL overrides in winecfg:

-gdplus(native, builtin)
-riched20(native, builtin)

Add Windows DLL with POL:

-dotnet 20
-msxml 3
-msxml 6

Replies

Ueliton Sunday 24 May 2015 at 18:45
Ueliton

Message

Someone can help do this script?
#Program name: MemoriesOnTV
# Program version: 4.1.2 Pro, work well with 4.1.0 too
#wine version used 1.7.28(System)
#Distribution used to test: openSUSE 13.2
#.exe download: http://www.codejam.com/file/motv412.exe

#After instalation, for translate, rename the file MotvLOC.dll to MotvLOC_old.dll, and rename the above downloaded file to MotvLOC.dll
Files options for translate:
Dutch(Tino Baanvinger): http://www.codejam.com/file/MotvNLD.dll
French(Wahid Omar): http://www.codejam.com/file/MotvFRA.dll
German(karl Exler): http://www.codejam.com/file/MotvDEU.dll
Hungarian(Balazs Fekete): http://www.codejam.com/file/MotvHUN.dll
Italian(Dino Termini & Riccardo Nifosi): http://www.codejam.com/file/MotvITA.dll
Portuguese(Telio Oliveira): http://www.codejam.com/file/MotvPTB.dll
Russian(Yuri Nazarov): http://www.codejam.com/file/MotvRUS.dll
Spanish(Pedro Tenorio): http://www.codejam.com/file/MotvESP.dll
Turkish(Efecan Erdur): http://www.codejam.com/file/MotvTRK.dll

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