Crossword Compiler
Informatie
Creator | Bericht |
---|---|
MTres19
|
WarningThis installer is a beta script. It means that it might not work as expected InformatiePlatforms: Feedbacks0 0 OmschrijvingCrossword 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.
SchermafdrukkenBroncode#!/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:
ContributeMember | Bericht |
Dadu042 | Zondag 30 Juni\ 2019 om 7:34 |
Dadu042
|
InformationThis update has been approved by the team. 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" New source code#!/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 Antwoorden |
MTres19 | Donderdag 31 December 2015 om 19:56 |
MTres19
|
WarningThis update has not been approved yet by the team. 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 New source code#!/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 Antwoorden |
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