Creature House Expression 3
Informations
Créateur | Messages |
---|---|
kamakalama
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience1 0 DescriptionCreature House Expression is a unique vector raphics editor that is simple to use and provides standard vector editing tools as well as a wide variety of vector brushes, a B-spline pen, onion skinning, and other unique features. It was bought out by Microsoft and renamed "Acrylic" and "Expression Studio" before being deadpooled and was available as a fee download from Microsoft website for several years. Captures d'écranCode source#!/usr/bin/env PlayOnLinux-Bash # Information # Date: 2023-11-16 # Last revision: 2023-11-16 # Wine Version: 7.22 # OS: Linux Mint 21.2 x86_64 # Author: GuerreroAzul # PlayOnLinux : 4.3.4 # Script licence : GPL3 # Program licence : Retail # Running the Scripts [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init # Variable TITLE="Creature House Expression 3" PREFIX="CHE3" POLVERSION="4.3.4" WINEVERSION="7.22" OSVERSION="win7" ARCHITECTURE="x86" COMPANY="Creature House and Microsoft" SITEWEB="http://www.microsoft.com/products/expression/en/graphic_designer/previous/expression3_home.aspx" AUTHOR="GuerreroAzul" DOWNLOAD_URL="https://archive.org/download/creature-house-expression-3-3_202101/CreatureHouseExpression3_3.exe" MD5_CHECKSUM="49fe81e2939d821f1d6729f56a83f9bc" SETUP="CreatureHouseExpression3_3.exe" #Presentation POL_SetupWindow_presentation "$TITLE" "$COMPANY" "$SITEWEB" "$AUTHOR" "$TITLE" # POL Validations POL_RequiredVersion $POLVERSION || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION !nPlease update!" #Linux Validations if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!" fi #Mac Validations if [ "$POL_OS" = "Mac" ]; then POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi #wine Setup And Installation POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "$OS" POL_System_SetArch "$ARQUITECTURE" # Installation POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" # Local Installation if [ "$INSTALL_METHOD" == "LOCAL" ]; then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" INSTALLER="$APP_ANSWER" # Web Installation else DOWNLOAD_URL=$DOWNLOAD_URL MD5_CHECKSUM="$MD5_CHECKSUM" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" INSTALLER="$POL_System_TmpDir/$SETUP" fi #Installation started POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "$INSTALLER" POL_Extension_Write xpr "$TITLE" POL_Shortcut "e3.exe" "$TITLE" #End installation POL_System_TmpDelete POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
GuerreroAzul | Jeudi 16 Novembre 2023 à 20:43 |
GuerreroAzul
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -0,0 +1,85 @@ +#!/usr/bin/env PlayOnLinux-Bash +# Information +# Date: 2023-11-16 +# Last revision: 2023-11-16 +# Wine Version: 7.22 +# OS: Linux Mint 21.2 x86_64 +# Author: GuerreroAzul +# PlayOnLinux : 4.3.4 +# Script licence : GPL3 +# Program licence : Retail + +# Running the Scripts +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" +POL_SetupWindow_Init +POL_Debug_Init + +# Variable +TITLE="Creature House Expression 3" +PREFIX="CHE3" +POLVERSION="4.3.4" +WINEVERSION="7.22" +OSVERSION="win7" +ARCHITECTURE="x86" +COMPANY="Creature House and Microsoft" +SITEWEB="http://www.microsoft.com/products/expression/en/graphic_designer/previous/expression3_home.aspx" +AUTHOR="GuerreroAzul" +DOWNLOAD_URL="https://archive.org/download/creature-house-expression-3-3_202101/CreatureHouseExpression3_3.exe" +MD5_CHECKSUM="49fe81e2939d821f1d6729f56a83f9bc" +SETUP="CreatureHouseExpression3_3.exe" + +#Presentation +POL_SetupWindow_presentation "$TITLE" "$COMPANY" "$SITEWEB" "$AUTHOR" "$TITLE" + +# POL Validations +POL_RequiredVersion $POLVERSION || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION !nPlease update!" + +#Linux Validations +if [ "$POL_OS" = "Linux" ]; then + wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!" +fi + +#Mac Validations +if [ "$POL_OS" = "Mac" ]; then + POL_Call POL_GetTool_samba3 + source "$POL_USER_ROOT/tools/samba3/init" +fi + +#wine Setup And Installation +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" +Set_OS "$OS" +POL_System_SetArch "$ARQUITECTURE" + +# Installation +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" +# Local Installation +if [ "$INSTALL_METHOD" == "LOCAL" ]; then + cd "$HOME" + POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" + INSTALLER="$APP_ANSWER" +# Web Installation +else + DOWNLOAD_URL=$DOWNLOAD_URL + MD5_CHECKSUM="$MD5_CHECKSUM" + + POL_System_TmpCreate "$PREFIX" + cd "$POL_System_TmpDir" + + POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" + INSTALLER="$POL_System_TmpDir/$SETUP" +fi + +#Installation started +POL_Wine start /unix "$INSTALLER" +POL_Wine_WaitExit "$INSTALLER" + +POL_Extension_Write xpr "$TITLE" + +POL_Shortcut "e3.exe" "$TITLE" + +#End installation +POL_System_TmpDelete +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/usr/bin/env PlayOnLinux-Bash # Information # Date: 2023-11-16 # Last revision: 2023-11-16 # Wine Version: 7.22 # OS: Linux Mint 21.2 x86_64 # Author: GuerreroAzul # PlayOnLinux : 4.3.4 # Script licence : GPL3 # Program licence : Retail # Running the Scripts [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" POL_SetupWindow_Init POL_Debug_Init # Variable TITLE="Creature House Expression 3" PREFIX="CHE3" POLVERSION="4.3.4" WINEVERSION="7.22" OSVERSION="win7" ARCHITECTURE="x86" COMPANY="Creature House and Microsoft" SITEWEB="http://www.microsoft.com/products/expression/en/graphic_designer/previous/expression3_home.aspx" AUTHOR="GuerreroAzul" DOWNLOAD_URL="https://archive.org/download/creature-house-expression-3-3_202101/CreatureHouseExpression3_3.exe" MD5_CHECKSUM="49fe81e2939d821f1d6729f56a83f9bc" SETUP="CreatureHouseExpression3_3.exe" #Presentation POL_SetupWindow_presentation "$TITLE" "$COMPANY" "$SITEWEB" "$AUTHOR" "$TITLE" # POL Validations POL_RequiredVersion $POLVERSION || POL_Debug_Fatal "$TITLE won't work with $APPLICATION_TITLE $VERSION !nPlease update!" #Linux Validations if [ "$POL_OS" = "Linux" ]; then wbinfo -V || POL_Debug_Fatal "Please install winbind before installing $TITLE!" fi #Mac Validations if [ "$POL_OS" = "Mac" ]; then POL_Call POL_GetTool_samba3 source "$POL_USER_ROOT/tools/samba3/init" fi #wine Setup And Installation POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "$OS" POL_System_SetArch "$ARQUITECTURE" # Installation POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" # Local Installation if [ "$INSTALL_METHOD" == "LOCAL" ]; then cd "$HOME" POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" INSTALLER="$APP_ANSWER" # Web Installation else DOWNLOAD_URL=$DOWNLOAD_URL MD5_CHECKSUM="$MD5_CHECKSUM" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "$DOWNLOAD_URL" "$MD5_CHECKSUM" INSTALLER="$POL_System_TmpDir/$SETUP" fi #Installation started POL_Wine start /unix "$INSTALLER" POL_Wine_WaitExit "$INSTALLER" POL_Extension_Write xpr "$TITLE" POL_Shortcut "e3.exe" "$TITLE" #End installation POL_System_TmpDelete POL_SetupWindow_Close exit 0 RéponsesLundi 8 Janvier 2024 à 13:37
|
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