CassyLab 2

Informations

Creator Message
Scindix

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 6764
Wine: 1.7.49

Feedbacks

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.

Screenshots

MiniatureMiniatureMiniature

Source code

Contributions

Filters:

Contribute
Member Message
petch Thursday 21 January 2016 at 13:49
petch

Information

This update has been approved by the team.

Message

Use graphic resources

Differences

New source code

Replies

Scindix Thursday 21 January 2016 at 13:39
Scindix

Warning

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

Message

Improvements suggested by petch

Differences

New source code

Replies

Scindix Wednesday 20 January 2016 at 11:37
Scindix

Warning

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

Message

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

New source code

Replies

Thursday 21 January 2016 at 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"
Thursday 21 January 2016 at 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)

Edited by 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