Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion control_panel_gui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function show_controlpanel_dialog()
width = 30,
notifier = function()

local exe_file = renoise.app():prompt_for_filename_to_read({XRNS2XMOD_EXE}, "Locate Xrns2XMod Path");
local exe_file = renoise.app():prompt_for_filename_to_read({XRNS2XMOD_EXE_EXTENSION}, "Locate Xrns2XMod executable: e.g. Xrns2XModShell.exe");

local is_app_found = #exe_file > 0

Expand Down
2 changes: 1 addition & 1 deletion globals.lua
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
-- the notifications.app_new_document functions or in your action callbacks...

XRNS2XMOD_URL = "https://github.com/fstarred/xrns2xmod/";
XRNS2XMOD_EXE = "Xrns2XModShell.exe";
XRNS2XMOD_EXE_EXTENSION = "exe";
XRNS2XMOD_DOC_URL = "https://github.com/fstarred/xrns2xmod/wiki";
XRNS2XMOD_TUTORIAL_VIDEO_URL = "http://www.youtube.com/playlist?list=PLZZHTXBWLnp8L60rT10UOZCqe0m5J9Uyr";
XRNS2XMOD_VERSION_INFO_URL = 'http://starredmediasoft.com/xrns2xmod_updater.xml'
Expand Down