Estas Aqui

IRPFbolsa

Informations

Creator Mensajes
rcarraretto Anonymous

Warning

This installer is a beta script. It means that it might not work as expected

Informations

Platforms:
Downloads: 2508
Wine: 6.0

Feedbacks

Description

IRPFbolsa is a software to manage the IRS requirements around stock market trades in Brazil. Website.

Source code

#!/usr/bin/env playonlinux-bash
# Date : (2021-02-17)
# Last revision : see changelog
# Wine version used : 6.0 (x86)
# Distribution used to test : Xubuntu 20.04 amd64
# Author : Ricardo Carraretto
#
# CHANGELOG
# [Ricardo Carraretto] (2020-09-11)
#   First script.
# [Ricardo Carraretto] (2021-02-17)
#   Updated to run under wine6.0
#
# KNOWN ISSUES:
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
TITLE="IRPFbolsa"
PREFIX="IRPFbolsa"
WINEVERSION="6.0"
EDITOR="IRPFbolsa"
GAME_URL="https://www.irpfbolsa.com.br/"
AUTHOR="Ricardo Carraretto"
       
# Initialization
POL_SetupWindow_Init
 
# Debug
POL_Debug_Init
    
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "Note: this script was successfully tested with IRPFbolsa 5.367.\n\nIRPFbolsa requires the installation of Internet Explorer 6.0, Microsoft Data Access Components 2.8 SP1 and Microsoft Jet 4.0 SP8. These dependencies will be handled by this installer script.\n\nPlease make sure you have unzip installed prior to continuing.\n\n" "$TITLE"  
POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
 
# Download installation files
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
INSTALLER_ZIP="$POL_System_TmpDir/IRPFbolsa.zip"
# Note: MD5 not provided because the vendor updates the installation files frequently
POL_Download "https://irpfbolsa.com.br/IRPFbolsa.zip"
POL_Download "https://irpfbolsa.com.br/setup_IRPFbolsa.exe"
INSTALLER_EXE="$POL_System_TmpDir/setup_IRPFbolsa.exe"  
unzip "$INSTALLER_ZIP" -d "$POL_System_TmpDir"
POL_Download "https://download.microsoft.com/download/4/3/9/4393c9ac-e69e-458d-9f6d-2fe191c51469/Jet40SP8_9xNT.exe" "d1028c0f98b4ffe5ede854327b77fbb9"
INSTALLER_JET40_EXE="$POL_System_TmpDir/Jet40SP8_9xNT.exe"
 
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
   
# Dependencies
Set_OS "win7"
POL_SetupWindow_message "Installing dependency 1/4: Microsoft Internet Explorer 6.0." "$TITLE"  
POL_Call POL_Install_ie6
POL_SetupWindow_message "Installing dependency 2/4: Microsoft Data Access Components 2.8 SP1." "$TITLE" 
POL_Call POL_Install_mdac28
POL_SetupWindow_message "Installing dependency 3/4: Microsoft Jet 4.0 SP8." "$TITLE" 
POL_Wine "$INSTALLER_JET40_EXE"
POL_SetupWindow_message "Installing dependency 4/4: Microsoft MFC42 DLLs." "$TITLE" 
POL_Call POL_Install_mfc42

# DLL Override
POL_Call POL_Function_OverrideDLL native,builtin msado15
    
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_SetupWindow_message "Installing IRPFbolsa." "$TITLE"
Set_OS "win7"
POL_Wine "$INSTALLER_EXE"
# Installer puts files outside of virtual drive. This fix is needed to allow the proper shortcut to be created 
mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa"
cp "$POL_System_TmpDir/IRPFbolsa.exe" "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa/IRPFbolsa.exe"  
POL_Wine_WaitExit "$TITLE"
 
# Simulate reboot  
POL_Wine_reboot
 
# Clean up temporary files
POL_System_TmpDelete
 
# Create shortcut
POL_Shortcut "IRPFbolsa.exe" "$TITLE" "" "" "Office;Finance;"
POL_Shortcut_QuietDebug "$TITLE"
 
# Finish install
POL_SetupWindow_Close
exit

Contributions

Filters:

Contribute
Member Mensajes
rcarraretto Wednesday 17 February 2021 at 22:48
rcarraretto Anonymous

Information

This update has been approved by the team.

Mensajes

Update POL Installer to support latest IRPFbolsa and also to run under wine 6.0.

Differences

@@ -1,38 +1,39 @@
 #!/usr/bin/env playonlinux-bash
-# Date : (2020-09-11)
+# Date : (2021-02-17)
 # Last revision : see changelog
-# Wine version used : 4.0.3 (x86)
+# Wine version used : 6.0 (x86)
 # Distribution used to test : Xubuntu 20.04 amd64
 # Author : Ricardo Carraretto
 #
 # CHANGELOG
 # [Ricardo Carraretto] (2020-09-11)
 #   First script.
+# [Ricardo Carraretto] (2021-02-17)
+#   Updated to run under wine6.0
 #
 # KNOWN ISSUES:
-#
- 
+  
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
-   
+    
 TITLE="IRPFbolsa"
 PREFIX="IRPFbolsa"
-WINEVERSION="4.0.3"
+WINEVERSION="6.0"
 EDITOR="IRPFbolsa"
 GAME_URL="https://www.irpfbolsa.com.br/"
 AUTHOR="Ricardo Carraretto"
-      
+       
 # Initialization
 POL_SetupWindow_Init
-
+ 
 # Debug
 POL_Debug_Init
-   
+    
 # Presentation
 POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
-POL_SetupWindow_message "Note: this script was successfully tested with IRPFbolsa 5.355.\n\nIRPFbolsa requires the installation of Internet Explorer 6.0, Microsoft Data Access Components 2.8 SP1 and Microsoft Jet 4.0 SP8. These dependencies will be handled by this installer script.\n\nPlease make sure you have unzip installed prior to continuing.\n\n" "$TITLE"   
+POL_SetupWindow_message "Note: this script was successfully tested with IRPFbolsa 5.367.\n\nIRPFbolsa requires the installation of Internet Explorer 6.0, Microsoft Data Access Components 2.8 SP1 and Microsoft Jet 4.0 SP8. These dependencies will be handled by this installer script.\n\nPlease make sure you have unzip installed prior to continuing.\n\n" "$TITLE"  
 POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
-
+ 
 # Download installation files
 POL_System_TmpCreate "$PREFIX"
 cd "$POL_System_TmpDir"
@@ -40,44 +41,49 @@
 # Note: MD5 not provided because the vendor updates the installation files frequently
 POL_Download "https://irpfbolsa.com.br/IRPFbolsa.zip"
 POL_Download "https://irpfbolsa.com.br/setup_IRPFbolsa.exe"
-INSTALLER_EXE="$POL_System_TmpDir/setup_IRPFbolsa.exe"   
+INSTALLER_EXE="$POL_System_TmpDir/setup_IRPFbolsa.exe"  
 unzip "$INSTALLER_ZIP" -d "$POL_System_TmpDir"
 POL_Download "https://download.microsoft.com/download/4/3/9/4393c9ac-e69e-458d-9f6d-2fe191c51469/Jet40SP8_9xNT.exe" "d1028c0f98b4ffe5ede854327b77fbb9"
 INSTALLER_JET40_EXE="$POL_System_TmpDir/Jet40SP8_9xNT.exe"
-
+ 
 # Create Prefix
 POL_Wine_SelectPrefix "$PREFIX"
 POL_Wine_PrefixCreate "$WINEVERSION"
-  
+   
 # Dependencies
 Set_OS "win7"
-POL_SetupWindow_message "Installing dependency 1/3: Microsoft Internet Explorer 6.0." "$TITLE"   
+POL_SetupWindow_message "Installing dependency 1/4: Microsoft Internet Explorer 6.0." "$TITLE"  
 POL_Call POL_Install_ie6
-POL_SetupWindow_message "Installing dependency 2/3: Microsoft Data Access Components 2.8 SP1." "$TITLE"  
+POL_SetupWindow_message "Installing dependency 2/4: Microsoft Data Access Components 2.8 SP1." "$TITLE" 
 POL_Call POL_Install_mdac28
-POL_SetupWindow_message "Installing dependency 3/3: Microsoft Jet 4.0 SP8." "$TITLE"  
+POL_SetupWindow_message "Installing dependency 3/4: Microsoft Jet 4.0 SP8." "$TITLE" 
 POL_Wine "$INSTALLER_JET40_EXE"
-   
+POL_SetupWindow_message "Installing dependency 4/4: Microsoft MFC42 DLLs." "$TITLE" 
+POL_Call POL_Install_mfc42
+
+# DLL Override
+POL_Call POL_Function_OverrideDLL native,builtin msado15
+    
 # Installation
 POL_Wine_WaitBefore "$TITLE"
-POL_SetupWindow_message "Installing IRPFbolsa." "$TITLE" 
+POL_SetupWindow_message "Installing IRPFbolsa." "$TITLE"
 Set_OS "win7"
 POL_Wine "$INSTALLER_EXE"
 # Installer puts files outside of virtual drive. This fix is needed to allow the proper shortcut to be created 
 mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa"
-cp "$POL_System_TmpDir/IRPFbolsa.exe" "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa/IRPFbolsa.exe"   
+cp "$POL_System_TmpDir/IRPFbolsa.exe" "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa/IRPFbolsa.exe"  
 POL_Wine_WaitExit "$TITLE"
-
+ 
 # Simulate reboot  
 POL_Wine_reboot
-
+ 
 # Clean up temporary files
 POL_System_TmpDelete
-
+ 
 # Create shortcut
 POL_Shortcut "IRPFbolsa.exe" "$TITLE" "" "" "Office;Finance;"
 POL_Shortcut_QuietDebug "$TITLE"
-
+ 
 # Finish install
 POL_SetupWindow_Close
 exit
\ No newline at end of file

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2021-02-17)
# Last revision : see changelog
# Wine version used : 6.0 (x86)
# Distribution used to test : Xubuntu 20.04 amd64
# Author : Ricardo Carraretto
#
# CHANGELOG
# [Ricardo Carraretto] (2020-09-11)
#   First script.
# [Ricardo Carraretto] (2021-02-17)
#   Updated to run under wine6.0
#
# KNOWN ISSUES:
  
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
TITLE="IRPFbolsa"
PREFIX="IRPFbolsa"
WINEVERSION="6.0"
EDITOR="IRPFbolsa"
GAME_URL="https://www.irpfbolsa.com.br/"
AUTHOR="Ricardo Carraretto"
       
# Initialization
POL_SetupWindow_Init
 
# Debug
POL_Debug_Init
    
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "Note: this script was successfully tested with IRPFbolsa 5.367.\n\nIRPFbolsa requires the installation of Internet Explorer 6.0, Microsoft Data Access Components 2.8 SP1 and Microsoft Jet 4.0 SP8. These dependencies will be handled by this installer script.\n\nPlease make sure you have unzip installed prior to continuing.\n\n" "$TITLE"  
POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
 
# Download installation files
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
INSTALLER_ZIP="$POL_System_TmpDir/IRPFbolsa.zip"
# Note: MD5 not provided because the vendor updates the installation files frequently
POL_Download "https://irpfbolsa.com.br/IRPFbolsa.zip"
POL_Download "https://irpfbolsa.com.br/setup_IRPFbolsa.exe"
INSTALLER_EXE="$POL_System_TmpDir/setup_IRPFbolsa.exe"  
unzip "$INSTALLER_ZIP" -d "$POL_System_TmpDir"
POL_Download "https://download.microsoft.com/download/4/3/9/4393c9ac-e69e-458d-9f6d-2fe191c51469/Jet40SP8_9xNT.exe" "d1028c0f98b4ffe5ede854327b77fbb9"
INSTALLER_JET40_EXE="$POL_System_TmpDir/Jet40SP8_9xNT.exe"
 
# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
   
# Dependencies
Set_OS "win7"
POL_SetupWindow_message "Installing dependency 1/4: Microsoft Internet Explorer 6.0." "$TITLE"  
POL_Call POL_Install_ie6
POL_SetupWindow_message "Installing dependency 2/4: Microsoft Data Access Components 2.8 SP1." "$TITLE" 
POL_Call POL_Install_mdac28
POL_SetupWindow_message "Installing dependency 3/4: Microsoft Jet 4.0 SP8." "$TITLE" 
POL_Wine "$INSTALLER_JET40_EXE"
POL_SetupWindow_message "Installing dependency 4/4: Microsoft MFC42 DLLs." "$TITLE" 
POL_Call POL_Install_mfc42

# DLL Override
POL_Call POL_Function_OverrideDLL native,builtin msado15
    
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_SetupWindow_message "Installing IRPFbolsa." "$TITLE"
Set_OS "win7"
POL_Wine "$INSTALLER_EXE"
# Installer puts files outside of virtual drive. This fix is needed to allow the proper shortcut to be created 
mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa"
cp "$POL_System_TmpDir/IRPFbolsa.exe" "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa/IRPFbolsa.exe"  
POL_Wine_WaitExit "$TITLE"
 
# Simulate reboot  
POL_Wine_reboot
 
# Clean up temporary files
POL_System_TmpDelete
 
# Create shortcut
POL_Shortcut "IRPFbolsa.exe" "$TITLE" "" "" "Office;Finance;"
POL_Shortcut_QuietDebug "$TITLE"
 
# Finish install
POL_SetupWindow_Close
exit

Respuestas

Thursday 18 February 2021 at 8:51
Script approved.
Anonymous
Friday 19 February 2021 at 13:26
Script also works for PlayOnMac under MacOS Mojave.
rcarraretto Friday 11 September 2020 at 13:41
rcarraretto Anonymous

Warning

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

Mensajes

Not sure why the POL script wasn't added, but here it is.

Differences

@@ -0,0 +1,83 @@
+#!/usr/bin/env playonlinux-bash
+# Date : (2020-09-11)
+# Last revision : see changelog
+# Wine version used : 4.0.3 (x86)
+# Distribution used to test : Xubuntu 20.04 amd64
+# Author : Ricardo Carraretto
+#
+# CHANGELOG
+# [Ricardo Carraretto] (2020-09-11)
+#   First script.
+#
+# KNOWN ISSUES:
+#
+ 
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+   
+TITLE="IRPFbolsa"
+PREFIX="IRPFbolsa"
+WINEVERSION="4.0.3"
+EDITOR="IRPFbolsa"
+GAME_URL="https://www.irpfbolsa.com.br/"
+AUTHOR="Ricardo Carraretto"
+      
+# Initialization
+POL_SetupWindow_Init
+
+# Debug
+POL_Debug_Init
+   
+# Presentation
+POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
+POL_SetupWindow_message "Note: this script was successfully tested with IRPFbolsa 5.355.\n\nIRPFbolsa requires the installation of Internet Explorer 6.0, Microsoft Data Access Components 2.8 SP1 and Microsoft Jet 4.0 SP8. These dependencies will be handled by this installer script.\n\nPlease make sure you have unzip installed prior to continuing.\n\n" "$TITLE"   
+POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"
+
+# Download installation files
+POL_System_TmpCreate "$PREFIX"
+cd "$POL_System_TmpDir"
+INSTALLER_ZIP="$POL_System_TmpDir/IRPFbolsa.zip"
+# Note: MD5 not provided because the vendor updates the installation files frequently
+POL_Download "https://irpfbolsa.com.br/IRPFbolsa.zip"
+POL_Download "https://irpfbolsa.com.br/setup_IRPFbolsa.exe"
+INSTALLER_EXE="$POL_System_TmpDir/setup_IRPFbolsa.exe"   
+unzip "$INSTALLER_ZIP" -d "$POL_System_TmpDir"
+POL_Download "https://download.microsoft.com/download/4/3/9/4393c9ac-e69e-458d-9f6d-2fe191c51469/Jet40SP8_9xNT.exe" "d1028c0f98b4ffe5ede854327b77fbb9"
+INSTALLER_JET40_EXE="$POL_System_TmpDir/Jet40SP8_9xNT.exe"
+
+# Create Prefix
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+  
+# Dependencies
+Set_OS "win7"
+POL_SetupWindow_message "Installing dependency 1/3: Microsoft Internet Explorer 6.0." "$TITLE"   
+POL_Call POL_Install_ie6
+POL_SetupWindow_message "Installing dependency 2/3: Microsoft Data Access Components 2.8 SP1." "$TITLE"  
+POL_Call POL_Install_mdac28
+POL_SetupWindow_message "Installing dependency 3/3: Microsoft Jet 4.0 SP8." "$TITLE"  
+POL_Wine "$INSTALLER_JET40_EXE"
+   
+# Installation
+POL_Wine_WaitBefore "$TITLE"
+POL_SetupWindow_message "Installing IRPFbolsa." "$TITLE" 
+Set_OS "win7"
+POL_Wine "$INSTALLER_EXE"
+# Installer puts files outside of virtual drive. This fix is needed to allow the proper shortcut to be created 
+mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa"
+cp "$POL_System_TmpDir/IRPFbolsa.exe" "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa/IRPFbolsa.exe"   
+POL_Wine_WaitExit "$TITLE"
+
+# Simulate reboot  
+POL_Wine_reboot
+
+# Clean up temporary files
+POL_System_TmpDelete
+
+# Create shortcut
+POL_Shortcut "IRPFbolsa.exe" "$TITLE" "" "" "Office;Finance;"
+POL_Shortcut_QuietDebug "$TITLE"
+
+# Finish install
+POL_SetupWindow_Close
+exit
\ No newline at end of file

New source code

#!/usr/bin/env playonlinux-bash
# Date : (2020-09-11)
# Last revision : see changelog
# Wine version used : 4.0.3 (x86)
# Distribution used to test : Xubuntu 20.04 amd64
# Author : Ricardo Carraretto
#
# CHANGELOG
# [Ricardo Carraretto] (2020-09-11)
#   First script.
#
# KNOWN ISSUES:
#
 
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
   
TITLE="IRPFbolsa"
PREFIX="IRPFbolsa"
WINEVERSION="4.0.3"
EDITOR="IRPFbolsa"
GAME_URL="https://www.irpfbolsa.com.br/"
AUTHOR="Ricardo Carraretto"
      
# Initialization
POL_SetupWindow_Init

# Debug
POL_Debug_Init
   
# Presentation
POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX"
POL_SetupWindow_message "Note: this script was successfully tested with IRPFbolsa 5.355.\n\nIRPFbolsa requires the installation of Internet Explorer 6.0, Microsoft Data Access Components 2.8 SP1 and Microsoft Jet 4.0 SP8. These dependencies will be handled by this installer script.\n\nPlease make sure you have unzip installed prior to continuing.\n\n" "$TITLE"   
POL_RequiredVersion "4.3.4" || POL_Debug_Fatal "$APPLICATION_TITLE $VERSION is required to install $TITLE"

# Download installation files
POL_System_TmpCreate "$PREFIX"
cd "$POL_System_TmpDir"
INSTALLER_ZIP="$POL_System_TmpDir/IRPFbolsa.zip"
# Note: MD5 not provided because the vendor updates the installation files frequently
POL_Download "https://irpfbolsa.com.br/IRPFbolsa.zip"
POL_Download "https://irpfbolsa.com.br/setup_IRPFbolsa.exe"
INSTALLER_EXE="$POL_System_TmpDir/setup_IRPFbolsa.exe"   
unzip "$INSTALLER_ZIP" -d "$POL_System_TmpDir"
POL_Download "https://download.microsoft.com/download/4/3/9/4393c9ac-e69e-458d-9f6d-2fe191c51469/Jet40SP8_9xNT.exe" "d1028c0f98b4ffe5ede854327b77fbb9"
INSTALLER_JET40_EXE="$POL_System_TmpDir/Jet40SP8_9xNT.exe"

# Create Prefix
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
  
# Dependencies
Set_OS "win7"
POL_SetupWindow_message "Installing dependency 1/3: Microsoft Internet Explorer 6.0." "$TITLE"   
POL_Call POL_Install_ie6
POL_SetupWindow_message "Installing dependency 2/3: Microsoft Data Access Components 2.8 SP1." "$TITLE"  
POL_Call POL_Install_mdac28
POL_SetupWindow_message "Installing dependency 3/3: Microsoft Jet 4.0 SP8." "$TITLE"  
POL_Wine "$INSTALLER_JET40_EXE"
   
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_SetupWindow_message "Installing IRPFbolsa." "$TITLE" 
Set_OS "win7"
POL_Wine "$INSTALLER_EXE"
# Installer puts files outside of virtual drive. This fix is needed to allow the proper shortcut to be created 
mkdir "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa"
cp "$POL_System_TmpDir/IRPFbolsa.exe" "$WINEPREFIX/drive_c/$PROGRAMFILES/IRPFbolsa/IRPFbolsa.exe"   
POL_Wine_WaitExit "$TITLE"

# Simulate reboot  
POL_Wine_reboot

# Clean up temporary files
POL_System_TmpDelete

# Create shortcut
POL_Shortcut "IRPFbolsa.exe" "$TITLE" "" "" "Office;Finance;"
POL_Shortcut_QuietDebug "$TITLE"

# Finish install
POL_SetupWindow_Close
exit

Respuestas

Friday 11 September 2020 at 15:33
Script approved.
Anonymous
Friday 25 September 2020 at 17:18
The program installs, but will fail to download most recent stock market data, which can be fixed by the following steps:

1) After installation finished, click "Configure" on the POL Interface, select the "IRPFbolsa" virtual drive;

2) Change the Wine version to any 5.x;

3) Go to the "Wine" tab and click on "Configure Wine" (this will update the virtual drive with Wine 5.x);

4) Change the Wine version back to 4.0.3. Program will run and will download the data it requires to work properly.

 
Anonymous
Friday 25 September 2020 at 17:18