You are here
Traktor Pro 3
Informations
Creator | Message |
---|---|
Dadu042
|
InformationThis installer has been approved by the team. InformationsPlatforms: Feedbacks1 1 DescriptionScreenshotsSource code#!/bin/bash # Date : (2020-01-18) # Last revision : see changelog # Distribution used to test : Ubuntu 18.04 (64-bit) # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.12 # CHANGELOG # [Villarleg] (2020-01-18) # Wine and windows version updated, Arch 64bit (Support Traktor Pro 3). # [Dadu042] (2020-01-19) # Add POL_Shortcut category. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="TraktorPro3" WINEVERSION="3.20" TITLE="Traktor Pro 3" EDITOR="Native Instruments" GAME_URL="http://www.native-instruments.com" AUTHOR="RoninDusette" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win10" Set_SoundDriver "alsa" # Installation POL_SetupWindow_message "$(eval_gettext 'During installation, please UNCHECK all drivers for the Native Instruments controllers or installation will fail.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "Traktor.exe" "$TITLE" "" "" "Audio;" POL_SetupWindow_message "$(eval_gettext 'ATTENTION: You need to DISABLE MULTI-CORE PROCESSOR SUPPORT in the Traktors settings for correct functioning or decks will get stuck.\n\n After you run the program for the first time, a setup wizard will help you setup controller and sound card settings, after you finished the wizard, you need to click on the Gear Icon to open Traktor Preferences screen and uncheck Enable Multi-Core Processor Support in Audio Setup section.\n\nNOTICE: For low-latency audio, look into WineASIO.\n\nYour MIDI controllers should work as expected.')" "$TITLE" POL_SetupWindow_Close exit 0 |
Contributions
Filters:
ContributeMember | Message |
zerinol | Friday 29 May 2020 at 3:53 |
zerinol
|
MessageI'm on ubuntu 18.04, with bspwm. Ive removed gnome and gdm.
by the end of the log I get this:
003c:err:module:import_dll Library Qt5Quick.dll (which is needed by L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe") not found 003c:err:module:import_dll Library Qt5Qml.dll (which is needed by L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe") not found 003c:err:module:import_dll Library Qt5Gui.dll (which is needed by L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe") not found 003c:err:module:import_dll Library Qt5Core.dll (which is needed by L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe") not found 003c:err:module:attach_dlls Importing dlls for L"C:\\Program Files\\Native Instruments\\Traktor Pro 3\\Backup\\Traktor 3.0.0.31\\Traktor.exe" failed, status c0000135 001a:fixme:service:handle_shutdown_msg service should be able to delay shutdown 001d:fixme:win:UnregisterDeviceNotification (handle=0xcafeaffe), STUB!
Replies |
Dadu042 | Sunday 19 January 2020 at 9:39 |
Dadu042
|
InformationThis update has been approved by the team. Differences@@ -0,0 +1,56 @@ +#!/bin/bash +# Date : (2020-01-18) +# Last revision : see changelog +# Distribution used to test : Ubuntu 18.04 (64-bit) +# Author : RoninDusette +# Licence : GPLv3 +# PlayOnLinux: 4.2.12 + +# CHANGELOG +# [Villarleg] (2020-01-18) +# Wine and windows version updated, Arch 64bit (Support Traktor Pro 3). +# [Dadu042] (2020-01-19) +# Add POL_Shortcut category. + +[ "$PLAYONLINUX" = "" ] && exit 0 +source "$PLAYONLINUX/lib/sources" + +PREFIX="TraktorPro3" +WINEVERSION="3.20" +TITLE="Traktor Pro 3" +EDITOR="Native Instruments" +GAME_URL="http://www.native-instruments.com" +AUTHOR="RoninDusette" + +#Initialization +POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" +POL_SetupWindow_Init + +POL_Debug_Init + +# Presentation +POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" + +# Create Prefix +POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" +POL_System_SetArch "amd64" +POL_Wine_SelectPrefix "$PREFIX" +POL_Wine_PrefixCreate "$WINEVERSION" + +# Configuration +Set_OS "win10" +Set_SoundDriver "alsa" + +# Installation +POL_SetupWindow_message "$(eval_gettext 'During installation, please UNCHECK all drivers for the Native Instruments controllers or installation will fail.')" "$TITLE" +POL_Wine_WaitBefore "$TITLE" +POL_Wine "$APP_ANSWER" +POL_Wine_WaitExit "$TITLE" + +# Create Shortcuts +POL_Shortcut "Traktor.exe" "$TITLE" "" "" "Audio;" + +POL_SetupWindow_message "$(eval_gettext 'ATTENTION: You need to DISABLE MULTI-CORE PROCESSOR SUPPORT in the Traktors settings for correct functioning or decks will get stuck.\n\n After you run the program for the first time, a setup wizard will help you setup controller and sound card settings, after you finished the wizard, you need to click on the Gear Icon to open Traktor Preferences screen and uncheck Enable Multi-Core Processor Support in Audio Setup section.\n\nNOTICE: For low-latency audio, look into WineASIO.\n\nYour MIDI controllers should work as expected.')" "$TITLE" + +POL_SetupWindow_Close +exit 0 \ No newline at end of file New source code#!/bin/bash # Date : (2020-01-18) # Last revision : see changelog # Distribution used to test : Ubuntu 18.04 (64-bit) # Author : RoninDusette # Licence : GPLv3 # PlayOnLinux: 4.2.12 # CHANGELOG # [Villarleg] (2020-01-18) # Wine and windows version updated, Arch 64bit (Support Traktor Pro 3). # [Dadu042] (2020-01-19) # Add POL_Shortcut category. [ "$PLAYONLINUX" = "" ] && exit 0 source "$PLAYONLINUX/lib/sources" PREFIX="TraktorPro3" WINEVERSION="3.20" TITLE="Traktor Pro 3" EDITOR="Native Instruments" GAME_URL="http://www.native-instruments.com" AUTHOR="RoninDusette" #Initialization POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE" POL_SetupWindow_Init POL_Debug_Init # Presentation POL_SetupWindow_presentation "$TITLE" "$EDITOR" "$GAME_URL" "$AUTHOR" "$PREFIX" # Create Prefix POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run')" "$TITLE" POL_System_SetArch "amd64" POL_Wine_SelectPrefix "$PREFIX" POL_Wine_PrefixCreate "$WINEVERSION" # Configuration Set_OS "win10" Set_SoundDriver "alsa" # Installation POL_SetupWindow_message "$(eval_gettext 'During installation, please UNCHECK all drivers for the Native Instruments controllers or installation will fail.')" "$TITLE" POL_Wine_WaitBefore "$TITLE" POL_Wine "$APP_ANSWER" POL_Wine_WaitExit "$TITLE" # Create Shortcuts POL_Shortcut "Traktor.exe" "$TITLE" "" "" "Audio;" POL_SetupWindow_message "$(eval_gettext 'ATTENTION: You need to DISABLE MULTI-CORE PROCESSOR SUPPORT in the Traktors settings for correct functioning or decks will get stuck.\n\n After you run the program for the first time, a setup wizard will help you setup controller and sound card settings, after you finished the wizard, you need to click on the Gear Icon to open Traktor Preferences screen and uncheck Enable Multi-Core Processor Support in Audio Setup section.\n\nNOTICE: For low-latency audio, look into WineASIO.\n\nYour MIDI controllers should work as expected.')" "$TITLE" POL_SetupWindow_Close exit 0 Replies |
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