Reaper 4

Informations

Créateur Messages
Ronin DUSETTE

Information

Cet installateur a été accepté par l'équipe.

Informations

Plate-formes :
Téléchargements : 23476
Wine: 3.0.3

Retours d'expérience

Description

From Cockos Inc.'s website: "REAPER is digital audio workstation software: a complete multitrack audio and MIDI recording, editing, processing, mixing, and mastering environment. " Wikipedia.

 Appdb.winehq.org

Captures d'écran

MiniatureMiniature

Code source

#!/bin/bash
# Date : (2013-03-01)
# Last revision : see changelog
# Distribution used to test : Kubuntu 12.04 LTS
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.1.9

# CHANGELOG
# [RoninDusette] (2013-03-01)
#   Initial script.
# [Dadu042] (2020-03-120 22:00)
#   Wine 1.6 (outdated) -> 3.0.3 (not tested).
    
    
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
PREFIX="Reaper4"
WINEVERSION="3.0.3"
TITLE="Reaper 4"
EDITOR="Cockos Incorporated"
GAME_URL="http://www.reaper.fm"
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 $TITLE install file. Do NOT run Reaper after install has finished.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
    
#Dependencies
    
# Configuration
Set_OS "winxp"
    
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
    
# Create Shortcuts
POL_Shortcut "Reaper.exe" "$TITLE" "" "" "Audio;"
    
POL_SetupWindow_message "$(eval_gettext 'NOTICE: For low-latency audio, look into WineASIO. An aftermarket, low-latency audio interface is recommended. Your MIDI controllers should work as expected.')" "$TITLE"
   
POL_SetupWindow_Close
exit 0

Contributions

Filters:

Contribuer
Membre Messages
Dadu042 Jeudi 12 Mars 2020 à 20:44
Dadu042

Information

Cette mise à jour a été acceptée par l'équipe

Differences

@@ -1,17 +1,23 @@
 #!/bin/bash
 # Date : (2013-03-01)
-# Last revision : (2013-03-01)
+# Last revision : see changelog
 # Distribution used to test : Kubuntu 12.04 LTS
 # Author : RoninDusette
 # Licence : GPLv3
 # PlayOnLinux: 4.1.9
+
+# CHANGELOG
+# [RoninDusette] (2013-03-01)
+#   Initial script.
+# [Dadu042] (2020-03-120 22:00)
+#   Wine 1.6 (outdated) -> 3.0.3 (not tested).
     
     
 [ "$PLAYONLINUX" = "" ] && exit 0
 source "$PLAYONLINUX/lib/sources"
     
 PREFIX="Reaper4"
-WINEVERSION="1.6"
+WINEVERSION="3.0.3"
 TITLE="Reaper 4"
 EDITOR="Cockos Incorporated"
 GAME_URL="http://www.reaper.fm"
@@ -42,7 +48,7 @@
 POL_Wine_WaitExit "$TITLE"
     
 # Create Shortcuts
-POL_Shortcut "Reaper.exe" "$TITLE"
+POL_Shortcut "Reaper.exe" "$TITLE" "" "" "Audio;"
     
 POL_SetupWindow_message "$(eval_gettext 'NOTICE: For low-latency audio, look into WineASIO. An aftermarket, low-latency audio interface is recommended. Your MIDI controllers should work as expected.')" "$TITLE"
    

Nouveau code source

#!/bin/bash
# Date : (2013-03-01)
# Last revision : see changelog
# Distribution used to test : Kubuntu 12.04 LTS
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.1.9

# CHANGELOG
# [RoninDusette] (2013-03-01)
#   Initial script.
# [Dadu042] (2020-03-120 22:00)
#   Wine 1.6 (outdated) -> 3.0.3 (not tested).
    
    
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
PREFIX="Reaper4"
WINEVERSION="3.0.3"
TITLE="Reaper 4"
EDITOR="Cockos Incorporated"
GAME_URL="http://www.reaper.fm"
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 $TITLE install file. Do NOT run Reaper after install has finished.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
    
#Dependencies
    
# Configuration
Set_OS "winxp"
    
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
    
# Create Shortcuts
POL_Shortcut "Reaper.exe" "$TITLE" "" "" "Audio;"
    
POL_SetupWindow_message "$(eval_gettext 'NOTICE: For low-latency audio, look into WineASIO. An aftermarket, low-latency audio interface is recommended. Your MIDI controllers should work as expected.')" "$TITLE"
   
POL_SetupWindow_Close
exit 0

Réponses

Ronin DUSETTE Samedi 25 Octobre 2014 à 21:29
Ronin DUSETTE

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -15,7 +15,7 @@
 TITLE="Reaper 4"
 EDITOR="Cockos Incorporated"
 GAME_URL="http://www.reaper.fm"
-AUTHOR="DJYoshaBYD"
+AUTHOR="RoninDusette"
     
 #Initialization
 POL_GetSetupImages "http://files.playonlinux.com/resources/setups/$PREFIX/top.jpg" "http://files.playonlinux.com/resources/setups/$PREFIX/left.jpg" "$TITLE"

Nouveau code source

#!/bin/bash
# Date : (2013-03-01)
# Last revision : (2013-03-01)
# Distribution used to test : Kubuntu 12.04 LTS
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.1.9
    
    
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
PREFIX="Reaper4"
WINEVERSION="1.6"
TITLE="Reaper 4"
EDITOR="Cockos Incorporated"
GAME_URL="http://www.reaper.fm"
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 $TITLE install file. Do NOT run Reaper after install has finished.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
    
#Dependencies
    
# Configuration
Set_OS "winxp"
    
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
    
# Create Shortcuts
POL_Shortcut "Reaper.exe" "$TITLE"
    
POL_SetupWindow_message "$(eval_gettext 'NOTICE: For low-latency audio, look into WineASIO. An aftermarket, low-latency audio interface is recommended. Your MIDI controllers should work as expected.')" "$TITLE"
   
POL_SetupWindow_Close
exit 0

Réponses

Ronin DUSETTE Samedi 25 Octobre 2014 à 19:22
Ronin DUSETTE

Warning

Cette mise à jour n'a pas été approuvée par l'équipe.
Utilisez-la à vos risques et périls

Differences

@@ -2,7 +2,7 @@
 # Date : (2013-03-01)
 # Last revision : (2013-03-01)
 # Distribution used to test : Kubuntu 12.04 LTS
-# Author : DJYoshaBYD
+# Author : RoninDusette
 # Licence : GPLv3
 # PlayOnLinux: 4.1.9
     

Nouveau code source

#!/bin/bash
# Date : (2013-03-01)
# Last revision : (2013-03-01)
# Distribution used to test : Kubuntu 12.04 LTS
# Author : RoninDusette
# Licence : GPLv3
# PlayOnLinux: 4.1.9
    
    
[ "$PLAYONLINUX" = "" ] && exit 0
source "$PLAYONLINUX/lib/sources"
    
PREFIX="Reaper4"
WINEVERSION="1.6"
TITLE="Reaper 4"
EDITOR="Cockos Incorporated"
GAME_URL="http://www.reaper.fm"
AUTHOR="DJYoshaBYD"
    
#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 $TITLE install file. Do NOT run Reaper after install has finished.')" "$TITLE"
POL_Wine_SelectPrefix "$PREFIX"
POL_Wine_PrefixCreate "$WINEVERSION"
    
#Dependencies
    
# Configuration
Set_OS "winxp"
    
# Installation
POL_Wine_WaitBefore "$TITLE"
POL_Wine "$APP_ANSWER"
POL_Wine_WaitExit "$TITLE"
    
# Create Shortcuts
POL_Shortcut "Reaper.exe" "$TITLE"
    
POL_SetupWindow_message "$(eval_gettext 'NOTICE: For low-latency audio, look into WineASIO. An aftermarket, low-latency audio interface is recommended. Your MIDI controllers should work as expected.')" "$TITLE"
   
POL_SetupWindow_Close
exit 0

Réponses