Skip to content

Commit a31b5cb

Browse files
committed
revert file name hack
1 parent 665cbb7 commit a31b5cb

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

installer/osara.nsi

+4-4
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ FunctionEnd
8181
Section "OSARA plug-in" SecPlugin
8282
SectionIn RO
8383
SetOutPath "$INSTDIR\UserPlugins"
84-
File "..\build\x86\reaper_z_osara32.dll"
84+
File "..\build\x86\reaper_osara32.dll"
8585
; Installing the 64 bit dll on a 32 bit system causes an error when REAPER starts up.
8686
; However, it's fine on a 64 bit system even with 32 bit REAPER.
8787
${If} ${RunningX64}
88-
File "..\build\x86_64\reaper_z_osara64.dll"
88+
File "..\build\x86_64\reaper_osara64.dll"
8989
${EndIf}
9090
SetOutPath "$INSTDIR\KeyMaps"
9191
File /oname=OSARA.ReaperKeyMap "..\config\windows\reaper-kb.ini"
@@ -116,8 +116,8 @@ Section "Replace existing key map with OSARA key map" SecKeyMap
116116
SectionEnd
117117

118118
Section "Uninstall"
119-
Delete "$INSTDIR\..\UserPlugins\reaper_z_osara32.dll"
120-
Delete "$INSTDIR\..\UserPlugins\reaper_z_osara64.dll"
119+
Delete "$INSTDIR\..\UserPlugins\reaper_osara32.dll"
120+
Delete "$INSTDIR\..\UserPlugins\reaper_osara64.dll"
121121
Delete "$INSTDIR\..\KeyMaps\OSARA.ReaperKeyMap"
122122
Delete "$INSTDIR\uninstall.exe"
123123
RMDir "$INSTDIR"

src/archBuild_sconscript

+1-3
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ else: # Mac
115115
"config.rc",
116116
[[php, "include/WDL/WDL/swell/swell_resgen.php", "$SOURCE"]])
117117
env.Depends("reaper_osara.cpp", [res, dialogRes])
118-
env.Depends("reaper_osara.cpp", res)
119118
keymapFile = '#config/mac/reaper-kb.ini'
120119

121120
def addExternalSources(dir, files):
@@ -139,7 +138,6 @@ addExternalSources("#include/fmt/src", ("format.cc", "os.cc"))
139138
env.Command('osara_keymap.h', keymapFile, buildKeymapHeader)
140139

141140
env.SharedLibrary(
142-
#Hack: Load osara after sws to allow the keyboard shortcuts to be initialized
143-
target="reaper_z_osara%s" % env["libSuffix"],
141+
target="reaper_osara%s" % env["libSuffix"],
144142
source=sources, LIBS=libs,
145143
)

0 commit comments

Comments
 (0)