CassyLab 2

Informations

Créateur Messages
Scindix

Information

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

Informations

Plate-formes :
Téléchargements : 6766
Wine: 1.7.49

Retours d'expérience

Description

CASSYLab 2 is a program used in science and education to gather measurements and analyze them. Unfortunately the USB components do not work under wine. But it is still usable to view, analyze and export data from CassyLab files. A free test version with a limited function set is available.

Captures d'écran

MiniatureMiniatureMiniature

Code source

Contributions

Filters:

Contribuer
Membre Messages
petch Jeudi 21 Janvier 2016 à 13:49
petch

Information

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

Messages

Use graphic resources

Differences

Nouveau code source

Réponses

Scindix Jeudi 21 Janvier 2016 à 13:39
Scindix

Warning

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

Messages

Improvements suggested by petch

Differences

Nouveau code source

Réponses

Scindix Mercredi 20 Janvier 2016 à 11:37
Scindix

Warning

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

Messages

Initial commit. Note that some analyzing functions crash. But the program is the only way to read data in CassyLab 2 files. So this might be still crucial for some people (including me).

Screenshots

http://postimg.org/image/lpz013unn/

http://postimg.org/image/7kt6zalmb/

http://postimg.org/image/42h72wkqb/

Install resources and images

22x22: http://s5.postimg.org/wunymdsdv/CASSYLab2_22x22.png

48x48: http://s5.postimg.org/e125pdu5v/CASSYLab2_48x48.png

left: http://postimg.org/image/4x3qoxskz/

top: http://s5.postimg.org/46b0j5q7n/top.png

Differences

Nouveau code source

Réponses

Jeudi 21 Janvier 2016 à 4:41
POL_Wine start /unix "$APP_ANSWER"
# Wine returns immediately. So we have to wait for the user to confirm that the installation is over.
POL_SetupWindow_message "$(eval_gettext 'Please wait while $TITLE is installed.') $(eval_gettext 'Click next when the installer has finished.')" "$TITLE"

start /unix is not needed 95% of the time, and has the side effect of making POL_Wine asynchronous, as you noticed. Try to remove it, and then you can use POL_Wine_WaitBefore "$TITLE" or POL_Wine_WaitExit "$TITLE" to get a standard waiting message.
See the discussion in http://wiki.playonlinux.com/index.php/Scripting_-_Chapter_11:_List_of_Functions#POL_Wine_.284.0.2B.29

POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.') $(eval_gettext 'Visit http://www.ld-didactic.de/en/service/software-download/cassylab2.html for the manual')" "$TITLE"

POL_SetupWindow_message won't make the URL clickable, it may be better do something like

POL_SetupWindow_question "$(eval_gettext 'Do you want to open the online manual?')" "$TITLE"
[ "$APP_ANSWER" = "TRUE" ] && POL_Browser "http://www.ld-didactic.de/en/service/software-download/cassylab2.html"
Jeudi 21 Janvier 2016 à 4:44
TITLE="CASSYLab 2"
Also $TITLE has to match the script name in the repository exactly, including the case (that's a requirement of the embedded debugger so that bug reports are send correctly)

Edité par Scindix

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