Crossword Compiler

Informations

Creator Message
MTres19 Anonymous

Information

This installer has been approved by the team.

Informations

Platforms:
Downloads: 10035
Wine: 2.22

Feedbacks

Description

Crossword 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.

 

Website.

Screenshots

MiniatureMiniature

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

Contributions

Filters:

Contribute
Member Message
Dadu042 Sunday 30 June 2019 at 7:34
Dadu042

Information

This 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

Replies

MTres19 Thursday 31 December 2015 at 19:56
MTres19 Anonymous

Warning

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

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

Replies