Je bent hier
Nextion Editor 0.43
Informatie
Creator | Bericht |
---|---|
klukonin
![]()
|
WarningThis installer is a beta script. It means that it might not work as expected InformatiePlatforms: Feedbacks1 0 OmschrijvingNextion's easy-to-use configuration software, Nextion Editor, makes the pieces of your process interface seamlessly. It’s the answer to your most demanding application requirements. Nextion Editor provides an integrated software development platform for all the Nextion family. Broncode#!/bin/bash # Date : (2017-02-15) # Distribution used to test : Ubuntu 16.04 64 bit # Author : Lukonin Kirill # Licence : GPLv3 # PlayOnLinux: 4.2.9 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Nextion" WINEVERSION="1.8-staging" TITLE="Nextion Editor" EDITOR="ITEAD Studio" AUTHOR="Lukonin Kirill" LINK="http://dl.itead.cc/Nextion/nextion-setup-v043.zip" MD5="97cd776536437a9b59421019092200f0" #Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$AUTHOR" "$PREFIX" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may work not well on Linux. Be careful.You also need to run command with SUDO. Please follow the instructions. Use middle mouse button to copy-paste terminal text')" "$TITLE" # Just a solution to install dotnet30 clearly POL_Call POL_Function_RootCommand "echo 0|sudo tee /proc/sys/kernel/yama/ptrace_scope; exit" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" # Component_inslallation POL_Call POL_Install_corefonts Set_OS "win7" POL_Call POL_Install_dotnet45 Set_OS "winxp" POL_Call POL_Install_ie8 # Installing software POL_System_TmpCreate "$PREFIX" mkdir ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion cd "$POL_System_TmpDir" POL_Download "$LINK" "$MD5" unzip nextion-setup-v*.zip mv -f Nextion\ Editor ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion # Making USB_Serial to work. 5 adapters ought to be enough for anybody =))) ln -s /dev/ttyUSB0 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com0 ln -s /dev/ttyUSB1 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com1 ln -s /dev/ttyUSB2 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com2 ln -s /dev/ttyUSB3 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com3 ln -s /dev/ttyUSB4 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com4 # Delete TMP folder POL_System_TmpDelete # Create Shortcuts POL_Shortcut "Nextion Editor.exe" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Bericht |
klukonin | Woensdag 15 Februari 2017 om 7:08 |
klukonin
![]()
|
InformationThis update has been approved by the team. Differences@@ -0,0 +1,66 @@ +#!/bin/bash +# Date : (2017-02-15) +# Distribution used to test : Ubuntu 16.04 64 bit +# Author : Lukonin Kirill +# Licence : GPLv3 +# PlayOnLinux: 4.2.9 + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="Nextion" +WINEVERSION="1.8-staging" +TITLE="Nextion Editor" +EDITOR="ITEAD Studio" +AUTHOR="Lukonin Kirill" +LINK="http://dl.itead.cc/Nextion/nextion-setup-v043.zip" +MD5="97cd776536437a9b59421019092200f0" +#Initialization +POL_SetupWindow_Init +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$AUTHOR" "$PREFIX" + +POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may work not well on Linux. Be careful.You also need to run command with SUDO. Please follow the instructions. Use middle mouse button to copy-paste terminal text')" "$TITLE" + +# Just a solution to install dotnet30 clearly +POL_Call POL_Function_RootCommand "echo 0|sudo tee /proc/sys/kernel/yama/ptrace_scope; exit" + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" +Set_OS "win7" + +# Component_inslallation +POL_Call POL_Install_corefonts +Set_OS "win7" +POL_Call POL_Install_dotnet45 +Set_OS "winxp" +POL_Call POL_Install_ie8 + + +# Installing software +POL_System_TmpCreate "$PREFIX" +mkdir ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion +cd "$POL_System_TmpDir" +POL_Download "$LINK" "$MD5" +unzip nextion-setup-v*.zip +mv -f Nextion\ Editor ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion + +# Making USB_Serial to work. 5 adapters ought to be enough for anybody =))) +ln -s /dev/ttyUSB0 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com0 +ln -s /dev/ttyUSB1 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com1 +ln -s /dev/ttyUSB2 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com2 +ln -s /dev/ttyUSB3 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com3 +ln -s /dev/ttyUSB4 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com4 + + +# Delete TMP folder +POL_System_TmpDelete + +# Create Shortcuts +POL_Shortcut "Nextion Editor.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 New source code#!/bin/bash # Date : (2017-02-15) # Distribution used to test : Ubuntu 16.04 64 bit # Author : Lukonin Kirill # Licence : GPLv3 # PlayOnLinux: 4.2.9 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Nextion" WINEVERSION="1.8-staging" TITLE="Nextion Editor" EDITOR="ITEAD Studio" AUTHOR="Lukonin Kirill" LINK="http://dl.itead.cc/Nextion/nextion-setup-v043.zip" MD5="97cd776536437a9b59421019092200f0" #Initialization POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$AUTHOR" "$PREFIX" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may work not well on Linux. Be careful.You also need to run command with SUDO. Please follow the instructions. Use middle mouse button to copy-paste terminal text')" "$TITLE" # Just a solution to install dotnet30 clearly POL_Call POL_Function_RootCommand "echo 0|sudo tee /proc/sys/kernel/yama/ptrace_scope; exit" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" # Component_inslallation POL_Call POL_Install_corefonts Set_OS "win7" POL_Call POL_Install_dotnet45 Set_OS "winxp" POL_Call POL_Install_ie8 # Installing software POL_System_TmpCreate "$PREFIX" mkdir ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion cd "$POL_System_TmpDir" POL_Download "$LINK" "$MD5" unzip nextion-setup-v*.zip mv -f Nextion\ Editor ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion # Making USB_Serial to work. 5 adapters ought to be enough for anybody =))) ln -s /dev/ttyUSB0 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com0 ln -s /dev/ttyUSB1 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com1 ln -s /dev/ttyUSB2 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com2 ln -s /dev/ttyUSB3 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com3 ln -s /dev/ttyUSB4 ~/.PlayOnLinux/wineprefix/Nextion/dosdevices/com4 # Delete TMP folder POL_System_TmpDelete # Create Shortcuts POL_Shortcut "Nextion Editor.exe" "$TITLE" POL_SetupWindow_Close exit 0 AntwoordenDinsdag 21 Februari 2017 om 12:24
Dinsdag 21 Februari 2017 om 12:58
|
klukonin | Dinsdag 14 Februari 2017 om 16:09 |
klukonin
![]()
|
WarningThis update has not been approved yet by the team. Differences@@ -0,0 +1,57 @@ +#!/bin/bash +# Date : (2015-12-09) +# Distribution used to test : Ubuntu 14.04 64 bit +# Author : Lukonin Kirill +# Licence : GPLv3 +# PlayOnLinux: 4.2.9 + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="Nextion" +WINEVERSION="1.8-staging" +TITLE="Nextion Editor" +EDITOR="ITEAD Studio" +AUTHOR="Lukonin Kirill" +LINK="http://dl.itead.cc/Nextion/nextion-setup-v043.zip" +MD5="97cd776536437a9b59421019092200f0" +#Initialization +POL_SetupWindow_Init +POL_Debug_Init + +#Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$AUTHOR" "$PREFIX" + +POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may work not well on Linux. Be careful.You also need to run command with SUDO. Please follow the instructions. Use middle mouse button to copy-paste terminal text')" "$TITLE" + +POL_Call POL_Function_RootCommand "echo 0|sudo tee /proc/sys/kernel/yama/ptrace_scope; exit" + +# Create Prefix +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" +Set_OS "win7" + +# Component_inslallation +POL_Call POL_Install_corefonts +Set_OS "win7" +POL_Call POL_Install_dotnet45 +Set_OS "winxp" +POL_Call POL_Install_ie8 + + +#Saftware installation +POL_System_TmpCreate "$PREFIX" +mkdir ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion +cd "$POL_System_TmpDir" +POL_Download "$LINK" "$MD5" +unzip nextion-setup-v*.zip +mv -f Nextion\ Editor ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion + +#Delete TMP folder +POL_System_TmpDelete + +# Create Shortcuts +POL_Shortcut "Nextion Editor.exe" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2015-12-09) # Distribution used to test : Ubuntu 14.04 64 bit # Author : Lukonin Kirill # Licence : GPLv3 # PlayOnLinux: 4.2.9 [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="Nextion" WINEVERSION="1.8-staging" TITLE="Nextion Editor" EDITOR="ITEAD Studio" AUTHOR="Lukonin Kirill" LINK="http://dl.itead.cc/Nextion/nextion-setup-v043.zip" MD5="97cd776536437a9b59421019092200f0" #Initialization POL_SetupWindow_Init POL_Debug_Init #Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$AUTHOR" "$PREFIX" POL_SetupWindow_message "$(eval_gettext 'IMPORTANT: This program may work not well on Linux. Be careful.You also need to run command with SUDO. Please follow the instructions. Use middle mouse button to copy-paste terminal text')" "$TITLE" POL_Call POL_Function_RootCommand "echo 0|sudo tee /proc/sys/kernel/yama/ptrace_scope; exit" # Create Prefix POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" Set_OS "win7" # Component_inslallation POL_Call POL_Install_corefonts Set_OS "win7" POL_Call POL_Install_dotnet45 Set_OS "winxp" POL_Call POL_Install_ie8 #Saftware installation POL_System_TmpCreate "$PREFIX" mkdir ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion cd "$POL_System_TmpDir" POL_Download "$LINK" "$MD5" unzip nextion-setup-v*.zip mv -f Nextion\ Editor ~/.PlayOnLinux/wineprefix/Nextion/drive_c/Nextion #Delete TMP folder POL_System_TmpDelete # Create Shortcuts POL_Shortcut "Nextion Editor.exe" "$TITLE" POL_SetupWindow_Close exit 0 AntwoordenDinsdag 21 Februari 2017 om 12:19
Dinsdag 21 Februari 2017 om 12:23
|