4D Workshop

Informatie

Creator Bericht
majenko Anonymous

Information

This installer has been approved by the team.

Informatie

Platforms:
Downloads: 3171
Wine: System

Feedbacks

Omschrijving

4D Workshop is a comprehensive software IDE for Microsoft Windows that provides an integrated software development platform for all of the 4D family of processors and modules. The IDE combines the Editor, Compiler, Linker and Downloader to develop complete 4DGL application code. All user application code is developed within the Workshop4 IDE.

 

Broncode

#!/bin/bash
 
# Date : (2015-11-09 22-49)
# Last revision : (2019-06-02 10-29)
# Wine version used :
# Distribution used to test : Debian Jessie
# Author : Majenko Technologies
 
POL_Debug_Init
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="4D Workshop"
PREFIX="4DWorkshop"
  
POL_SetupWindow_Init
 
POL_SetupWindow_presentation "$TITLE" "4D Systems" "http://www.4dsystems.com.au/product/4D_Workshop_4_IDE/" "Majenko Technologies" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_System_TmpCreate "$PREFIX"
POL_Call POL_Install_gdiplus
 
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE"
    POL_Wine start /unix "$APP_ANSWER"
    POL_Wine_WaitExit "$TITLE"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "https://www.4dsystems.com.au/downloads/Software/4D-Workshop4-IDE/WORKSHOP4%20INSTALLER.4.5.0.17b.exe"
    POL_Wine start /unix "$POL_System_TmpDir/WORKSHOP4%20INSTALLER.4.5.0.17b.exe"
    POL_Wine_WaitExit "$TITLE"
fi
POL_System_TmpDelete
 
POL_Shortcut "WORKSHOP4.exe" "$TITLE"
  
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Bericht
Dadu042 Zondag 2 Juni\ 2019 om 10:27
Dadu042

Information

This update has been approved by the team.

Bericht

Fix download URL.

Differences

@@ -0,0 +1,43 @@
+#!/bin/bash
+ 
+# Date : (2015-11-09 22-49)
+# Last revision : (2019-06-02 10-29)
+# Wine version used :
+# Distribution used to test : Debian Jessie
+# Author : Majenko Technologies
+ 
+POL_Debug_Init
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+ 
+TITLE="4D Workshop"
+PREFIX="4DWorkshop"
+  
+POL_SetupWindow_Init
+ 
+POL_SetupWindow_presentation "$TITLE" "4D Systems" "http://www.4dsystems.com.au/product/4D_Workshop_4_IDE/" "Majenko Technologies" "$PREFIX"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate
+POL_System_TmpCreate "$PREFIX"
+POL_Call POL_Install_gdiplus
+ 
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+    POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE"
+    POL_Wine start /unix "$APP_ANSWER"
+    POL_Wine_WaitExit "$TITLE"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+    cd "$POL_System_TmpDir"
+    POL_Download "https://www.4dsystems.com.au/downloads/Software/4D-Workshop4-IDE/WORKSHOP4%20INSTALLER.4.5.0.17b.exe"
+    POL_Wine start /unix "$POL_System_TmpDir/WORKSHOP4%20INSTALLER.4.5.0.17b.exe"
+    POL_Wine_WaitExit "$TITLE"
+fi
+POL_System_TmpDelete
+ 
+POL_Shortcut "WORKSHOP4.exe" "$TITLE"
+  
+POL_SetupWindow_Close
+exit
\ No newline at end of file

New source code

#!/bin/bash
 
# Date : (2015-11-09 22-49)
# Last revision : (2019-06-02 10-29)
# Wine version used :
# Distribution used to test : Debian Jessie
# Author : Majenko Technologies
 
POL_Debug_Init
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
 
TITLE="4D Workshop"
PREFIX="4DWorkshop"
  
POL_SetupWindow_Init
 
POL_SetupWindow_presentation "$TITLE" "4D Systems" "http://www.4dsystems.com.au/product/4D_Workshop_4_IDE/" "Majenko Technologies" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_System_TmpCreate "$PREFIX"
POL_Call POL_Install_gdiplus
 
POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE"
    POL_Wine start /unix "$APP_ANSWER"
    POL_Wine_WaitExit "$TITLE"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "https://www.4dsystems.com.au/downloads/Software/4D-Workshop4-IDE/WORKSHOP4%20INSTALLER.4.5.0.17b.exe"
    POL_Wine start /unix "$POL_System_TmpDir/WORKSHOP4%20INSTALLER.4.5.0.17b.exe"
    POL_Wine_WaitExit "$TITLE"
fi
POL_System_TmpDelete
 
POL_Shortcut "WORKSHOP4.exe" "$TITLE"
  
POL_SetupWindow_Close
exit

Antwoorden

Aangepast door Dadu042

majenko Dinsdag 10 November 2015 om 2:01
majenko Anonymous

Warning

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

Differences

@@ -0,0 +1,43 @@
+#!/bin/bash
+
+# Date : (2015-11-09 22-49)
+# Last revision : (2015-11-09 22-40)
+# Wine version used :
+# Distribution used to test : Debian Jessie
+# Author : Majenko Technologies
+
+POL_Debug_Init
+
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="4D Workshop"
+PREFIX="4DWorkshop"
+ 
+POL_SetupWindow_Init
+
+POL_SetupWindow_presentation "$TITLE" "4D Systems" "http://www.4dsystems.com.au/product/4D_Workshop_4_IDE/" "Majenko Technologies" "$PREFIX"
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate
+POL_System_TmpCreate "$PREFIX"
+POL_Call POL_Install_gdiplus
+
+POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
+if [ "$INSTALL_METHOD" = "LOCAL" ]
+then
+    POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE"
+    POL_Wine start /unix "$APP_ANSWER"
+    POL_Wine_WaitExit "$TITLE"
+elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
+then
+    cd "$POL_System_TmpDir"
+    POL_Download "http://www.4dsystems.com.au/downloads/Software/4D-Workshop4-IDE/WORKSHOP4%20INSTALLER.4.2.0.16b.exe"
+    POL_Wine start /unix "$POL_System_TmpDir/WORKSHOP4%20INSTALLER.4.2.0.16b.exe"
+    POL_Wine_WaitExit "$TITLE"
+fi
+POL_System_TmpDelete
+
+POL_Shortcut "WORKSHOP4.exe" "$TITLE"
+ 
+POL_SetupWindow_Close
+exit

New source code

#!/bin/bash

# Date : (2015-11-09 22-49)
# Last revision : (2015-11-09 22-40)
# Wine version used :
# Distribution used to test : Debian Jessie
# Author : Majenko Technologies

POL_Debug_Init

[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"

TITLE="4D Workshop"
PREFIX="4DWorkshop"
 
POL_SetupWindow_Init

POL_SetupWindow_presentation "$TITLE" "4D Systems" "http://www.4dsystems.com.au/product/4D_Workshop_4_IDE/" "Majenko Technologies" "$PREFIX"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate
POL_System_TmpCreate "$PREFIX"
POL_Call POL_Install_gdiplus

POL_SetupWindow_InstallMethod "LOCAL,DOWNLOAD"
if [ "$INSTALL_METHOD" = "LOCAL" ]
then
    POL_SetupWindow_browse "$(eval_gettext 'Please select the installation file to run.')" "$TITLE"
    POL_Wine start /unix "$APP_ANSWER"
    POL_Wine_WaitExit "$TITLE"
elif [ "$INSTALL_METHOD" = "DOWNLOAD" ]
then
    cd "$POL_System_TmpDir"
    POL_Download "http://www.4dsystems.com.au/downloads/Software/4D-Workshop4-IDE/WORKSHOP4%20INSTALLER.4.2.0.16b.exe"
    POL_Wine start /unix "$POL_System_TmpDir/WORKSHOP4%20INSTALLER.4.2.0.16b.exe"
    POL_Wine_WaitExit "$TITLE"
fi
POL_System_TmpDelete

POL_Shortcut "WORKSHOP4.exe" "$TITLE"
 
POL_SetupWindow_Close
exit

Antwoorden