Crossword Compiler
Informations
Créateur | Messages |
---|---|
MTres19
|
InformationCet installateur a été accepté par l'équipe. InformationsPlate-formes : Retours d'expérience0 0 DescriptionCrossword Compiler: A quick, easy way to build crossword puzzles in English, Spanish, German, French, or Italian. Builds puzzles either based on your own terms and clues or preselected catagories. Please note that only Freeform/Educational, Word Search, and Sudoku modes work currently.
Captures d'écranCode source#!/bin/bash # Date: 2015-12-28 # Author: MTres19 # Wine version used: 1.8 # Distribution used to test: Kubuntu 15.10 (amd64) # CHANGELOG # [Dadu042] (2019-06-30) # URL fixed. Wine 1.8 -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Crossword Compiler" PREFIX="CrosswordCompiler" WINEVERSION="2.22" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "WordWeb Software" "www.wordwebsoftware.com" "MTres19" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" POL_Call POL_Install_LunaTheme POL_SetupWindow_menu "$(eval_gettext 'Please select a language.')" "$TITLE" "English~Deutsch~Español~Français~Italiano" "~" [ "$APP_ANSWER" = "English" ] && END=".exe" [ "$APP_ANSWER" = "Deutsch" ] && END="_de.exe" [ "$APP_ANSWER" = "Español" ] && END="_es.exe" [ "$APP_ANSWER" = "Français" ] && END="_fr.exe" [ "$APP_ANSWER" = "Italiano" ] && END="_it.exe" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the program.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$APP_ANSWER" fi if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_SetupWindow_message "$(eval_gettext 'Notice: This will only be a demo version.')" "$TITLE" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "https://uk.wordwebsoftware.com/downloads/ccdemo$END" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "ccdemo$END" POL_System_TmpDelete fi POL_Shortcut "ccw$END" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContribuerMembre | Messages |
Dadu042 | Dimanche 30 Juin 2019 à 7:34 |
Dadu042
|
InformationCette mise à jour a été acceptée par l'équipe Differences@@ -4,12 +4,16 @@ # Wine version used: 1.8 # Distribution used to test: Kubuntu 15.10 (amd64) +# CHANGELOG +# [Dadu042] (2019-06-30) +# URL fixed. Wine 1.8 -> 2.22 + [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Crossword Compiler" PREFIX="CrosswordCompiler" -WINEVERSION="1.8" +WINEVERSION="2.22" POL_SetupWindow_Init POL_Debug_Init @@ -43,7 +47,7 @@ POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" - POL_Download "http://www.crossword-compiler.com/wf/ccdemo$END" + POL_Download "https://uk.wordwebsoftware.com/downloads/ccdemo$END" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "ccdemo$END" Nouveau code source#!/bin/bash # Date: 2015-12-28 # Author: MTres19 # Wine version used: 1.8 # Distribution used to test: Kubuntu 15.10 (amd64) # CHANGELOG # [Dadu042] (2019-06-30) # URL fixed. Wine 1.8 -> 2.22 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Crossword Compiler" PREFIX="CrosswordCompiler" WINEVERSION="2.22" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "WordWeb Software" "www.wordwebsoftware.com" "MTres19" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" POL_Call POL_Install_LunaTheme POL_SetupWindow_menu "$(eval_gettext 'Please select a language.')" "$TITLE" "English~Deutsch~Español~Français~Italiano" "~" [ "$APP_ANSWER" = "English" ] && END=".exe" [ "$APP_ANSWER" = "Deutsch" ] && END="_de.exe" [ "$APP_ANSWER" = "Español" ] && END="_es.exe" [ "$APP_ANSWER" = "Français" ] && END="_fr.exe" [ "$APP_ANSWER" = "Italiano" ] && END="_it.exe" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the program.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$APP_ANSWER" fi if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_SetupWindow_message "$(eval_gettext 'Notice: This will only be a demo version.')" "$TITLE" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "https://uk.wordwebsoftware.com/downloads/ccdemo$END" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "ccdemo$END" POL_System_TmpDelete fi POL_Shortcut "ccw$END" "$TITLE" POL_SetupWindow_Close exit 0 Réponses |
MTres19 | Jeudi 31 Décembre 2015 à 19:56 |
MTres19
|
WarningCette mise à jour n'a pas été approuvée par l'équipe. Differences@@ -0,0 +1,57 @@ +#!/bin/bash +# Date: 2015-12-28 +# Author: MTres19 +# Wine version used: 1.8 +# Distribution used to test: Kubuntu 15.10 (amd64) + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +TITLE="Crossword Compiler" +PREFIX="CrosswordCompiler" +WINEVERSION="1.8" + +POL_SetupWindow_Init +POL_Debug_Init +POL_SetupWindow_presentation "$TITLE" "WordWeb Software" "www.wordwebsoftware.com" "MTres19" "$PREFIX" + +POL_Wine_SelectPrefix "$PREFIX" +POL_System_SetArch "x86" +POL_Wine_PrefixCreate "$WINEVERSION" + +POL_Call POL_Install_LunaTheme + +POL_SetupWindow_menu "$(eval_gettext 'Please select a language.')" "$TITLE" "English~Deutsch~Español~Français~Italiano" "~" +[ "$APP_ANSWER" = "English" ] && END=".exe" +[ "$APP_ANSWER" = "Deutsch" ] && END="_de.exe" +[ "$APP_ANSWER" = "Español" ] && END="_es.exe" +[ "$APP_ANSWER" = "Français" ] && END="_fr.exe" +[ "$APP_ANSWER" = "Italiano" ] && END="_it.exe" + +POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" + +if [ "$INSTALL_METHOD" = "LOCAL" ] + then + POL_SetupWindow_browse "$(eval_gettext 'Please select the program.')" "$TITLE" + POL_Wine_WaitBefore "$TITLE" + POL_Wine --ignore-errors "$APP_ANSWER" +fi + +if [ "$INSTALL_METHOD" = "DOWNLOAD" ] + then + POL_SetupWindow_message "$(eval_gettext 'Notice: This will only be a demo version.')" "$TITLE" + + POL_System_TmpCreate "$PREFIX" + cd "$POL_System_TmpDir" + POL_Download "http://www.crossword-compiler.com/wf/ccdemo$END" + + POL_Wine_WaitBefore "$TITLE" + POL_Wine --ignore-errors "ccdemo$END" + + POL_System_TmpDelete +fi + +POL_Shortcut "ccw$END" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file Nouveau code source#!/bin/bash # Date: 2015-12-28 # Author: MTres19 # Wine version used: 1.8 # Distribution used to test: Kubuntu 15.10 (amd64) [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" TITLE="Crossword Compiler" PREFIX="CrosswordCompiler" WINEVERSION="1.8" POL_SetupWindow_Init POL_Debug_Init POL_SetupWindow_presentation "$TITLE" "WordWeb Software" "www.wordwebsoftware.com" "MTres19" "$PREFIX" POL_Wine_SelectPrefix "$PREFIX" POL_System_SetArch "x86" POL_Wine_PrefixCreate "$WINEVERSION" POL_Call POL_Install_LunaTheme POL_SetupWindow_menu "$(eval_gettext 'Please select a language.')" "$TITLE" "English~Deutsch~Español~Français~Italiano" "~" [ "$APP_ANSWER" = "English" ] && END=".exe" [ "$APP_ANSWER" = "Deutsch" ] && END="_de.exe" [ "$APP_ANSWER" = "Español" ] && END="_es.exe" [ "$APP_ANSWER" = "Français" ] && END="_fr.exe" [ "$APP_ANSWER" = "Italiano" ] && END="_it.exe" POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD" if [ "$INSTALL_METHOD" = "LOCAL" ] then POL_SetupWindow_browse "$(eval_gettext 'Please select the program.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "$APP_ANSWER" fi if [ "$INSTALL_METHOD" = "DOWNLOAD" ] then POL_SetupWindow_message "$(eval_gettext 'Notice: This will only be a demo version.')" "$TITLE" POL_System_TmpCreate "$PREFIX" cd "$POL_System_TmpDir" POL_Download "http://www.crossword-compiler.com/wf/ccdemo$END" POL_Wine_WaitBefore "$TITLE" POL_Wine --ignore-errors "ccdemo$END" POL_System_TmpDelete fi POL_Shortcut "ccw$END" "$TITLE" POL_SetupWindow_Close exit 0 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