Origin from OriginLab
Informations
Creator | Message |
---|---|
Scindix
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks0 1 DescriptionOrigin from OriginLab is a plotting and analysis software widely used in science. You can enter your measurements, plot and analize them with fit functions that are derived from your theory. ScreenshotsSource code#!/bin/bash # Date : (2016-01-20 08-09) # Last revision : (2016-01-20 08-09) # Wine version used : 1.7.49 # Distribution used to test : Arch Linux (kernel 4.2.5-1) # Author : Cedric Wehrum [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Origin from OriginLab" PREFIX="OriginLabOriginPro" 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 2717 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "OriginLab" "http://www.originlab.com/" "Cedric Wehrum" "$PREFIX" POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" #For me Origin crashes with other versions of wine POL_Wine_PrefixCreate "1.9.1" #Components needed according to http://www.originlab.com/forum/topic.asp?TOPIC_ID=10428 #POL_Call POL_Install_vcrun2008 A more recent version is needed, see below POL_Call POL_Install_corefonts POL_Call POL_Install_ie8 POL_Call POL_Install_msxml3 POL_Call POL_Install_gdiplus #I figured this one out on my own. It seems that many things crash without a native msvcr110.dll POL_Call POL_Install_vcrun2012 POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" # Wait till Origin is installed POL_Wine_WaitBefore "$TITLE" # Installing POL_Wine "$APP_ANSWER" # Create a shortcut, show the user a message that everything went successfully and exit POL_Shortcut "Origin[0-9][0-9][0-9][0-9]/Origin*.exe" "$TITLE" "$TITLE.png" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit |
Contributions
Filters:
ContributeMember | Message |
Stitchz | Wednesday 21 November 2018 at 13:07 |
Stitchz
|
MessageI've been trying to rum Origin lab using Wine for a few years now. While not immediately obvious, there are some problems running this program. You can easily tell the graphical interface is not running like in Windows, by minimizing any window inside OriginLab. Instead of minimizing to window-like mini-toolbar as it should, in Wine the window minimizes to an icon. Other minor, but eventually use-breaking graphical glitches follow. Is there a solution for this? Cheers! Replies |
Scindix | Friday 22 January 2016 at 20:45 |
Scindix
|
InformationThis update has been approved by the team. MessageA Mac user told me that Origin crashes sometimes for her. We fixed the problem by switching to wine 1.9.1 Differences@@ -19,7 +19,7 @@ POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" #For me Origin crashes with other versions of wine -POL_Wine_PrefixCreate "1.8-rc2-staging" +POL_Wine_PrefixCreate "1.9.1" #Components needed according to http://www.originlab.com/forum/topic.asp?TOPIC_ID=10428 #POL_Call POL_Install_vcrun2008 A more recent version is needed, see below POL_Call POL_Install_corefonts New source code#!/bin/bash # Date : (2016-01-20 08-09) # Last revision : (2016-01-20 08-09) # Wine version used : 1.7.49 # Distribution used to test : Arch Linux (kernel 4.2.5-1) # Author : Cedric Wehrum [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Origin from OriginLab" PREFIX="OriginLabOriginPro" 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 2717 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "OriginLab" "http://www.originlab.com/" "Cedric Wehrum" "$PREFIX" POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" #For me Origin crashes with other versions of wine POL_Wine_PrefixCreate "1.9.1" #Components needed according to http://www.originlab.com/forum/topic.asp?TOPIC_ID=10428 #POL_Call POL_Install_vcrun2008 A more recent version is needed, see below POL_Call POL_Install_corefonts POL_Call POL_Install_ie8 POL_Call POL_Install_msxml3 POL_Call POL_Install_gdiplus #I figured this one out on my own. It seems that many things crash without a native msvcr110.dll POL_Call POL_Install_vcrun2012 POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" # Wait till Origin is installed POL_Wine_WaitBefore "$TITLE" # Installing POL_Wine "$APP_ANSWER" # Create a shortcut, show the user a message that everything went successfully and exit POL_Shortcut "Origin[0-9][0-9][0-9][0-9]/Origin*.exe" "$TITLE" "$TITLE.png" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit RepliesSaturday 24 November 2018 at 9:06
Saturday 24 November 2018 at 9:06
Saturday 24 November 2018 at 9:06
|
petch | Thursday 21 January 2016 at 13:32 |
petch
|
WarningThis update has not been approved yet by the team. MessageUse graphic resources Differences@@ -10,6 +10,7 @@ TITLE="Origin from OriginLab" PREFIX="OriginLabOriginPro" +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 2717 POL_Debug_Init @@ -35,7 +36,7 @@ POL_Wine "$APP_ANSWER" # Create a shortcut, show the user a message that everything went successfully and exit -POL_Shortcut "Origin[0-9][0-9][0-9][0-9]/Origin*.exe" "$TITLE" +POL_Shortcut "Origin[0-9][0-9][0-9][0-9]/Origin*.exe" "$TITLE" "$TITLE.png" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close New source code#!/bin/bash # Date : (2016-01-20 08-09) # Last revision : (2016-01-20 08-09) # Wine version used : 1.7.49 # Distribution used to test : Arch Linux (kernel 4.2.5-1) # Author : Cedric Wehrum [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Origin from OriginLab" PREFIX="OriginLabOriginPro" 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 2717 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "OriginLab" "http://www.originlab.com/" "Cedric Wehrum" "$PREFIX" POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" #For me Origin crashes with other versions of wine POL_Wine_PrefixCreate "1.8-rc2-staging" #Components needed according to http://www.originlab.com/forum/topic.asp?TOPIC_ID=10428 #POL_Call POL_Install_vcrun2008 A more recent version is needed, see below POL_Call POL_Install_corefonts POL_Call POL_Install_ie8 POL_Call POL_Install_msxml3 POL_Call POL_Install_gdiplus #I figured this one out on my own. It seems that many things crash without a native msvcr110.dll POL_Call POL_Install_vcrun2012 POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" # Wait till Origin is installed POL_Wine_WaitBefore "$TITLE" # Installing POL_Wine "$APP_ANSWER" # Create a shortcut, show the user a message that everything went successfully and exit POL_Shortcut "Origin[0-9][0-9][0-9][0-9]/Origin*.exe" "$TITLE" "$TITLE.png" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit RepliesThursday 21 January 2016 at 14:06
Thursday 21 January 2016 at 17:23
Thursday 21 January 2016 at 17:38
Thursday 21 January 2016 at 17:42
Saturday 24 November 2018 at 9:07
|
Scindix | Thursday 21 January 2016 at 12:54 |
Scindix
|
WarningThis update has not been approved yet by the team. MessageImprovements suggested by petch. Differences@@ -0,0 +1,42 @@ +#!/bin/bash +# Date : (2016-01-20 08-09) +# Last revision : (2016-01-20 08-09) +# Wine version used : 1.7.49 +# Distribution used to test : Arch Linux (kernel 4.2.5-1) +# Author : Cedric Wehrum +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Origin from OriginLab" +PREFIX="OriginLabOriginPro" + +POL_SetupWindow_Init +POL_SetupWindow_SetID 2717 +POL_Debug_Init +POL_SetupWindow_presentation "$TITLE" "OriginLab" "http://www.originlab.com/" "Cedric Wehrum" "$PREFIX" + +POL_System_SetArch "x86" +POL_Wine_SelectPrefix "$PREFIX" +#For me Origin crashes with other versions of wine +POL_Wine_PrefixCreate "1.8-rc2-staging" +#Components needed according to http://www.originlab.com/forum/topic.asp?TOPIC_ID=10428 +#POL_Call POL_Install_vcrun2008 A more recent version is needed, see below +POL_Call POL_Install_corefonts +POL_Call POL_Install_ie8 +POL_Call POL_Install_msxml3 +POL_Call POL_Install_gdiplus +#I figured this one out on my own. It seems that many things crash without a native msvcr110.dll +POL_Call POL_Install_vcrun2012 + +POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" +# Wait till Origin is installed +POL_Wine_WaitBefore "$TITLE" +# Installing +POL_Wine "$APP_ANSWER" + +# Create a shortcut, show the user a message that everything went successfully and exit +POL_Shortcut "Origin[0-9][0-9][0-9][0-9]/Origin*.exe" "$TITLE" +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/bin/bash # Date : (2016-01-20 08-09) # Last revision : (2016-01-20 08-09) # Wine version used : 1.7.49 # Distribution used to test : Arch Linux (kernel 4.2.5-1) # Author : Cedric Wehrum [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Origin from OriginLab" PREFIX="OriginLabOriginPro" POL_SetupWindow_Init POL_SetupWindow_SetID 2717 POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "OriginLab" "http://www.originlab.com/" "Cedric Wehrum" "$PREFIX" POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" #For me Origin crashes with other versions of wine POL_Wine_PrefixCreate "1.8-rc2-staging" #Components needed according to http://www.originlab.com/forum/topic.asp?TOPIC_ID=10428 #POL_Call POL_Install_vcrun2008 A more recent version is needed, see below POL_Call POL_Install_corefonts POL_Call POL_Install_ie8 POL_Call POL_Install_msxml3 POL_Call POL_Install_gdiplus #I figured this one out on my own. It seems that many things crash without a native msvcr110.dll POL_Call POL_Install_vcrun2012 POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" # Wait till Origin is installed POL_Wine_WaitBefore "$TITLE" # Installing POL_Wine "$APP_ANSWER" # Create a shortcut, show the user a message that everything went successfully and exit POL_Shortcut "Origin[0-9][0-9][0-9][0-9]/Origin*.exe" "$TITLE" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit RepliesEdited by petch |
Scindix | Wednesday 20 January 2016 at 11:46 |
Scindix
|
WarningThis update has not been approved yet by the team. MessageInitial commit. Everything I tested worked with it. Confirmed to work with Linux (latest Arch Linux) and MacOS (unknown version, wasn't my Mac) ScreenshotsEmpty document Install resources and imagesDifferences@@ -0,0 +1,45 @@ +#!/bin/bash +# Date : (2016-01-20 08-09) +# Last revision : (2016-01-20 08-09) +# Wine version used : 1.7.49 +# Distribution used to test : Arch Linux (kernel 4.2.5-1) +# Author : Cedric Wehrum +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Origin Pro" +PREFIX="OriginLabOriginPro" + +POL_SetupWindow_Init +POL_Debug_Init +POL_SetupWindow_presentation "$TITLE" "OriginLab" "http://www.originlab.com/" "Cedric Wehrum" "$PREFIX" + +POL_System_SetArch "x86" +POL_Wine_SelectPrefix "$PREFIX" +#For me Origin crashes sometimes with other versions of wine +POL_Wine_PrefixCreate "1.8-rc2-staging" +#Components needed according to http://www.originlab.com/forum/topic.asp?TOPIC_ID=10428 +#POL_Call POL_Install_vcrun2008 A more recent version is needed, see below +POL_Call POL_Install_corefonts +POL_Call POL_Install_ie8 +POL_Call POL_Install_msxml3 +POL_Call POL_Install_gdiplus +#I figured this one out on my own. It seems that many things crash without a native msvcr110.dll +POL_Call POL_Install_vcrun2012 + +POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" +# Installing +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" + +#Search for the name of the executable as different versions have slightly different names. +#We are currently in system32, so we have to go up two layers +cd ./../../ +exeName="$(ls -R | grep ^Origin[0-9]*\.exe$)" +# Create a shortcut, show the user a message that everything went successfully and exit +POL_Shortcut "$exeName" "$TITLE" +POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" + +POL_SetupWindow_Close +exit \ No newline at end of file New source code#!/bin/bash # Date : (2016-01-20 08-09) # Last revision : (2016-01-20 08-09) # Wine version used : 1.7.49 # Distribution used to test : Arch Linux (kernel 4.2.5-1) # Author : Cedric Wehrum [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Origin Pro" PREFIX="OriginLabOriginPro" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "OriginLab" "http://www.originlab.com/" "Cedric Wehrum" "$PREFIX" POL_System_SetArch "x86" POL_Wine_SelectPrefix "$PREFIX" #For me Origin crashes sometimes with other versions of wine POL_Wine_PrefixCreate "1.8-rc2-staging" #Components needed according to http://www.originlab.com/forum/topic.asp?TOPIC_ID=10428 #POL_Call POL_Install_vcrun2008 A more recent version is needed, see below POL_Call POL_Install_corefonts POL_Call POL_Install_ie8 POL_Call POL_Install_msxml3 POL_Call POL_Install_gdiplus #I figured this one out on my own. It seems that many things crash without a native msvcr110.dll POL_Call POL_Install_vcrun2012 POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run.')" "$TITLE" # Installing 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" #Search for the name of the executable as different versions have slightly different names. #We are currently in system32, so we have to go up two layers cd ./../../ exeName="$(ls -R | grep ^Origin[0-9]*\.exe$)" # Create a shortcut, show the user a message that everything went successfully and exit POL_Shortcut "$exeName" "$TITLE" POL_SetupWindow_message "$(eval_gettext '$TITLE has been successfully installed.')" "$TITLE" POL_SetupWindow_Close exit RepliesThursday 21 January 2016 at 4:52
Thursday 21 January 2016 at 11:44
Thursday 21 January 2016 at 11:58
Thursday 21 January 2016 at 12:51
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