Memories On TV

Informations

Créateur Messages
Ueliton

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 9470
Wine: 1.7.28

Retours d'expérience

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.

Captures d'écran

MiniatureMiniatureMiniatureMiniature

Code source

Contributions

Filters:

Contribuer
Membre Messages
Ueliton Samedi 6 Juin 2015 à 17:09
Ueliton

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

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

Nouveau code source

Réponses

Anonymous
Samedi 6 Juin 2015 à 18:34
PlayOnLinux already removes any existing wine prefix before installing. So this line should not be necessary
petch Jeudi 4 Juin 2015 à 1:21
petch

Information

Cette mise à jour a été acceptée par l'équipe

Messages

Update POL_GetSetupImages, fix one missing localization, missing POL_Wine_WaitBefore

Differences

Nouveau code source

Réponses

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

I believe that the warning is necessary because the program restarts, it may stop the installation.
Jeudi 4 Juin 2015 à 3:19
So the same problem exists on Windows?
Jeudi 4 Juin 2015 à 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.
Jeudi 4 Juin 2015 à 3:31
Yes, but I don't see how this problem can happen with PlayOnLinux if it does not exist under Windows too
Jeudi 4 Juin 2015 à 3:32
Have you actually experienced the problem?
Jeudi 4 Juin 2015 à 4:12
No, I have not tested this. Just follow the recommendation that exists in PlayOnLinux own, and reinforced the warning.
Jeudi 4 Juin 2015 à 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
Jeudi 4 Juin 2015 à 4:36
Yeah, you're right ...
Good morning, and good work. Here it's late, I need sleep. : D
Jeudi 4 Juin 2015 à 5:01
I tried to improve the wording, any comments welcome: https://github.com/PlayOnLinux/POL-POM-4/commit/76e5f5367eb28ce89e45b55ae796f954dc3af8bf
Ueliton Mercredi 3 Juin 2015 à 19:25
Ueliton

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

Nouveau code source

Réponses

Mercredi 3 Juin 2015 à 19:29
http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions#POL_GetSetupImages_.284.0.2B.29
Mercredi 3 Juin 2015 à 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
Mercredi 3 Juin 2015 à 19:42
I can not leave without pictures?
Mercredi 3 Juin 2015 à 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.
Mercredi 3 Juin 2015 à 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 Mardi 2 Juin 2015 à 23:05
Ueliton

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

Nouveau code source

Réponses

Mercredi 3 Juin 2015 à 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"
Mercredi 3 Juin 2015 à 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/ (?)
Mercredi 3 Juin 2015 à 16:39
The problem is $ PROGRAMFILES, this forwarding to $ HOME. Only works using Program \ Files
Mercredi 3 Juin 2015 à 16:57
I can use this (?):

cd $WINEPREFIX//dosdevices/c:/Program\ Files/MemoriesOnTV4
Mercredi 3 Juin 2015 à 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.
Mercredi 3 Juin 2015 à 17:08
I Just do it:
Mercredi 3 Juin 2015 à 17:09
cd $WINEPREFIX/drive_c/$PROGRAMFILES/MemoriesOnTV4 but not work
Mercredi 3 Juin 2015 à 17:10
So, add the quotes around the file path, exactly as petch typed it:

cd "$WINEPREFIX/drive_c/$PROGRAMFILES/MemoriesOnTV4"
Ueliton Lundi 1 Juin 2015 à 23:11
Ueliton

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

Nouveau code source

Réponses

Lundi 1 Juin 2015 à 23:12
Sorry to post again, missed the creation of the virtual drive (PREFIX) and the shortcut.
Lundi 1 Juin 2015 à 23:18
The time in the CHANGELOG is the Brazil -03
Lundi 1 Juin 2015 à 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 Lundi 1 Juin 2015 à 22:55
Ueliton

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

Nouveau code source

Réponses

Lundi 1 Juin 2015 à 22:56
You need to resize the fonts in the description, because they are very large.
Lundi 1 Juin 2015 à 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
Lundi 1 Juin 2015 à 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 Mercredi 27 Mai 2015 à 22:23
Ueliton

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Messages

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

Nouveau code source

Réponses

Ueliton Lundi 25 Mai 2015 à 23:01
Ueliton

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

Nouveau code source

Réponses

Ueliton Dimanche 24 Mai 2015 à 19:07
Ueliton

Messages

Add DLL overrides in winecfg:

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

Add Windows DLL with POL:

-dotnet 20
-msxml 3
-msxml 6

Réponses

Ueliton Dimanche 24 Mai 2015 à 18:45
Ueliton

Messages

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

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