Old 10-13-2019, 03:34 AM   #281
Skorobagatko
Human being with feelings
 
Skorobagatko's Avatar
 
Join Date: Mar 2017
Location: Ukraine, Kyiv
Posts: 546
Default

Hi, noticed that "windows/system32/cmd.exe" window started to pop up again, previously it was without it and the loading time was fast.
Skorobagatko is online now   Reply With Quote
Old 10-13-2019, 04:03 AM   #282
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by Skorobagatko View Post
Hi, noticed that "windows/system32/cmd.exe" window started to pop up again, previously it was without it and the loading time was fast.
Hi,

when does the window pop up, exactly (during/after which step)?
And which ReaLauncher version do you have currently installed (latest is 1.6.2)?
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 10-13-2019, 04:16 AM   #283
Skorobagatko
Human being with feelings
 
Skorobagatko's Avatar
 
Join Date: Mar 2017
Location: Ukraine, Kyiv
Posts: 546
Default

Quote:
Originally Posted by solger View Post
Hi,

when does the window pop up, exactly (during/after which step)?
And which ReaLauncher version do you have currently installed (latest is 1.6.2)?
Sorry, I had the previous version (after loading my Reaper config), thanks!
Skorobagatko is online now   Reply With Quote
Old 10-21-2019, 08:27 AM   #284
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

An updated version is out:

Quote:
version 1.7
+ General: Visibility and usage of the subfolder-panel can now be toggled in the [Options] tab - requires restart of ReaLauncher for the changes to take effect
+ General: Automatic refresh of list entries is now only done the first time when loading a (different) tab
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 10-22-2019, 11:12 AM   #285
Delucci
Human being with feelings
 
Join Date: May 2017
Posts: 325
Default

Quote:
Originally Posted by solger View Post
An updated version is out:
Thanks a lot!!
Delucci is offline   Reply With Quote
Old 10-22-2019, 01:45 PM   #286
EpicSounds
Human being with feelings
 
EpicSounds's Avatar
 
Join Date: Jul 2009
Posts: 7,592
Default

first time trying the script, couldn't get it to launch

solger_ReaLauncher.lua:310: attempt to get length of a nil value (local 'filename')

MacOS 10.14
__________________
REAPER Video Tutorials, Tips & Tricks and more at The REAPER Blog
EpicSounds is offline   Reply With Quote
Old 10-23-2019, 08:30 AM   #287
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by EpicSounds View Post
first time trying the script, couldn't get it to launch

solger_ReaLauncher.lua:310: attempt to get length of a nil value (local 'filename')

MacOS 10.14
Hi Jon,

thanks for the info. I'll probably need to add a nil check there.

In the meantime, can you please try the following:

1) Set debugEnabled in line 35 to true
Code:
local debugEnabled = true-- show console debug messages
2) Add a MsgDebug call in line 310
Code:
local function RemoveExtension_RPP(filename)
  MsgDebug(filename)
  return string.sub(filename, 1, #filename - 4)
end
3) The first line in the console output should show which Tab is loaded (for instance, 'Refresh Recent Projects'). Does it list any files below that or none at all?

---

Otherwise, does clearing the Recent Project list via Preferences > General: Clear list make any difference?
If you want to back the entries up first (before clearing the list), you can copy them from the [Recent] section in the reaper.ini.

Thanks
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 10-23-2019, 03:37 PM   #288
EpicSounds
Human being with feelings
 
EpicSounds's Avatar
 
Join Date: Jul 2009
Posts: 7,592
Default

console output is same before and after clearing recent projects

Code:
Refresh Recent Projects
slave1
slave
slav
sla
sl
s
207.194.130.11
207.194.130.1
nil
__________________
REAPER Video Tutorials, Tips & Tricks and more at The REAPER Blog
EpicSounds is offline   Reply With Quote
Old 10-24-2019, 02:08 AM   #289
PelF
Human being with feelings
 
PelF's Avatar
 
Join Date: Mar 2013
Posts: 181
Default

Hi, thanks for the great launcher! Is it possible to set the launcher to remember the Paths - Show setting? Every time I run it again, it's set to Hide. Thanks a lot...
PelF is offline   Reply With Quote
Old 10-24-2019, 07:53 AM   #290
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by EpicSounds View Post
console output is same before and after clearing recent projects

Code:
Refresh Recent Projects
slave1
slave
slav
sla
sl
s
207.194.130.11
207.194.130.1
nil
Thanks. Will have a look at this.
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 10-24-2019, 08:07 AM   #291
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by PelF View Post
Hi, thanks for the great launcher! Is it possible to set the launcher to remember the Paths - Show setting? Every time I run it again, it's set to Hide. Thanks a lot...
Hi,

I'll add it to my todo-list for the next update
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 10-27-2019, 12:00 PM   #292
cfillion
Human being with feelings
 
cfillion's Avatar
 
Join Date: May 2015
Location: Québec, Canada
Posts: 4,964
Default

Found a few bugs: Filenames containing newlines (possible on macOS/Linux) cause the list display to be offset with what's actually selected. The Paths option reverts to Hide when resizing the window. Also "Show in Explorer/Finder" could use CF_LocateInExplorer with the full filename so that the selected file is also selected in the explorer window. os.execute is insecure without proper sanitation:


Last edited by cfillion; 10-27-2019 at 12:20 PM.
cfillion is offline   Reply With Quote
Old 10-27-2019, 12:05 PM   #293
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by cfillion View Post
Found a few bugs: Filenames containing newlines (possible on macOS/Linux) cause the list display to be offset with what's actually selected. The Paths option reverts to Hide when resizing the window.
Thanks for the info.

EDIT:
Quote:
Also "Show in Explorer/Finder" could use CF_LocateInExplorer with the full filename so that the selected file is also selected in the explorer window (os.execute is insecure without proper sanitation).
Ah, didn't know about CF_LocateInExplorer. Added to my todo-list. Thanks.

The os.execute part is currently only used (as fallback) if no SWS Extensions are installed. Otherwise CF_ShellExecute is used.
__________________
ReaLauncher

Last edited by solger; 10-27-2019 at 12:43 PM.
solger is offline   Reply With Quote
Old 10-27-2019, 12:07 PM   #294
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

New version is out:

Quote:
version 1.7.1
+ General: The last used Show/Hide path display mode is now stored
+ General: Some minor bugfixes and enhancements
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 10-27-2019, 05:06 PM   #295
Tone Ranger
Human being with feelings
 
Tone Ranger's Avatar
 
Join Date: Jan 2019
Location: Toronto, Canada
Posts: 540
Default

Thanks for continually improving this great script!!
Tone Ranger is offline   Reply With Quote
Old 10-28-2019, 07:37 AM   #296
EpicSounds
Human being with feelings
 
EpicSounds's Avatar
 
Join Date: Jul 2009
Posts: 7,592
Default

Thanks for the update, I got the script to start now

I did get this error popup

...eaTeam Scripts/Project Properties/solger_ReaLauncher.lua:134: 'reaper.ReaPack_GetOwner' is unknown


and there is some wrong stuff in the list

https://imgur.com/a/4DAyvH4
__________________
REAPER Video Tutorials, Tips & Tricks and more at The REAPER Blog
EpicSounds is offline   Reply With Quote
Old 10-28-2019, 09:27 AM   #297
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by EpicSounds View Post
Thanks for the update, I got the script to start now
Great.

Quote:
I did get this error popup

...eaTeam Scripts/Project Properties/solger_ReaLauncher.lua:134: 'reaper.ReaPack_GetOwner' is unknown
Just to clarify: is the reaper_reapack64.dylib currently located in the Userplugins subfolder?

EDIT: and is the JS_ReaScriptAPI installed (and located under 'UserPlugins/reaper_js_ReaScriptAPI64.dylib')? On second thought, the error message suggests a different problem, though ...
Just saw that the audio preview volume knob is visible in your screenshot which would indicate that the JS_ReaScriptAPI is installed.

Quote:
and there is some wrong stuff in the list

https://imgur.com/a/4DAyvH4
OK. Will take a closer look at this on the weekend.
__________________
ReaLauncher

Last edited by solger; 10-28-2019 at 10:46 AM.
solger is offline   Reply With Quote
Old 10-28-2019, 10:18 AM   #298
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by EpicSounds View Post
...eaTeam Scripts/Project Properties/solger_ReaLauncher.lua:134: 'reaper.ReaPack_GetOwner' is unknown
One more thing: which version of ReaPack do you have currently installed (Extensions > ReaPack > About)?
Latest stable release is v1.2.2.
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-18-2019, 04:55 PM   #299
Delucci
Human being with feelings
 
Join Date: May 2017
Posts: 325
Default

I have a suggestion to add:
Is it possible to implement something like "date modified" beside the project name?
Like this:

Thanks in advance, I've been using this script a lot, and it's awesome!
Delucci is offline   Reply With Quote
Old 11-20-2019, 07:22 AM   #300
dalim.biswas
Human being with feelings
 
Join Date: Jun 2016
Posts: 39
Default ADD FX CHAIN LIST

WISH TO HAVE FX CHAIN LIST IN THIS REALAUNCHER ALSO WANT BROWSER AUDIO FUNCTION WHICH IS INCLUDED IN SWS RESOURSES SCRIPT .
dalim.biswas is offline   Reply With Quote
Old 11-20-2019, 10:34 AM   #301
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by Delucci View Post
I have a suggestion to add:
Is it possible to implement something like "date modified" beside the project name?
Like this:
Yeah, I think it should be possible. But I haven't had time yet to look into all available implementation options in more detail.
I'm currently mainly busy with work, so it probably might take a while since I have time to take a closer look at this.
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-20-2019, 11:00 AM   #302
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by dalim.biswas View Post
WISH TO HAVE FX CHAIN LIST IN THIS REALAUNCHER ...
Added to the wish list.

Quote:
... ALSO WANT BROWSER AUDIO FUNCTION WHICH IS INCLUDED IN SWS RESOURSES SCRIPT .
Just to clarify:
  • Are you referring to the (SWS Resources) Play options/Actions for [Media Files]? Or to something else?
  • And can you please post an example how you would use such a feature.

Because it sounds to me that you're basically looking for the same functionality which Reaper's Media Explorer already provides (browsing for media files & playing them back, inserting media files on a track, etc.).
Or are you perhaps looking for something more specific?
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-20-2019, 01:41 PM   #303
Delucci
Human being with feelings
 
Join Date: May 2017
Posts: 325
Default

@solger Don't worry, take your time, you're already doing an awesome thing for us with this script
Delucci is offline   Reply With Quote
Old 11-21-2019, 08:14 AM   #304
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Updated version is out:
Quote:
version 1.7.2
+ General: Updated [Show in Explorer] code to the usage of CF_LocateInExplorer (SWS Extensions)
+ General: Bugfix for keeping last path display mode when resizing window
+ General: Some minor bugfixes and enhancements
+ General: Bugfixes for usage with 32-bit Reaper version
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-21-2019, 08:27 AM   #305
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Please let me know in case there might be still list display issues on macOS/Linux ** with version 1.7.2.

** as mentioned in post #292 and #296 (by cfillion and EpicSounds).
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-21-2019, 08:42 AM   #306
EpicSounds
Human being with feelings
 
EpicSounds's Avatar
 
Join Date: Jul 2009
Posts: 7,592
Default

the recent list still has the problem here
__________________
REAPER Video Tutorials, Tips & Tricks and more at The REAPER Blog
EpicSounds is offline   Reply With Quote
Old 11-21-2019, 09:00 AM   #307
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by EpicSounds View Post
the recent list still has the problem here
OK, thanks for the info.

Does the problem only occur in the recent list tab? Or in any of the other tabs, as well?
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-21-2019, 09:08 AM   #308
EpicSounds
Human being with feelings
 
EpicSounds's Avatar
 
Join Date: Jul 2009
Posts: 7,592
Default

the project and track templates tabs look fine
__________________
REAPER Video Tutorials, Tips & Tricks and more at The REAPER Blog
EpicSounds is offline   Reply With Quote
Old 11-22-2019, 08:14 AM   #309
Alez156
Human being with feelings
 
Alez156's Avatar
 
Join Date: Jun 2015
Location: Venezuela
Posts: 349
Default

Solger! This is amazing!!! I already set it as my startup script. It is working perfectly for me on 2015 Macbook Pro OSX 10.14.1

You are the best!

Is it possible to hide the path for the folders? I cant really tell what they are this way



Aaaalso, just noticed every time I close REAPER I get this message:

Last edited by Alez156; 11-22-2019 at 08:36 AM.
Alez156 is offline   Reply With Quote
Old 11-22-2019, 08:55 AM   #310
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by Alez156 View Post
Is it possible to hide the path for the folders? I cant really tell what they are this way
Not in the current version (1.7.2). The subfolder-panel is still in an early stage, so there are still a few things on my todo-list (like hiding paths) which aren't implemented yet.

But maybe one of these options helps in the meantime:
  • Resizing the ReaLauncher window to make the panels wider
  • Hiding the entire subfolder panel by unchecking the Show subfolder-panel box in the [Options] tab

Quote:
Aaaalso, just noticed every time I close REAPER I get this message:
Thanks for the info. I'll have a look at this.
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-22-2019, 09:05 AM   #311
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by Alez156 View Post
Aaaalso, just noticed every time I close REAPER I get this message:
According to the line number in the error message (line 134) it looks like that you don't have the most recent version (1.7.2) installed.

If that's the case, please let me know if updating to 1.7.2 (Extensions > ReaPack > Synchronize packages) fixes the issue.
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-24-2019, 11:30 AM   #312
_Stevie_
Human being with feelings
 
_Stevie_'s Avatar
 
Join Date: Oct 2017
Location: Black Forest
Posts: 5,066
Default

Caught a bug, when trying to open a project template:

Code:
Error: solger_ReaLauncher.lua:1038: attempt to compare number with nil

Stack traceback:
	Core.lua:88: in metamethod '__lt'
	solger_ReaLauncher.lua:1038: in upvalue 'Global_ProjectTemplateLoadBase'
	solger_ReaLauncher.lua:1056: in upvalue 'Global_ProjectTemplateLoad'
	solger_ReaLauncher.lua:1125: in upvalue 'Load_ProjectTemplate_Base'
	solger_ReaLauncher.lua:1134: in upvalue 'Load_ProjectTemplate'
	solger_ReaLauncher.lua:2197: in method 'ondoubleclick'
	Core.lua:845: in field 'Update'
	Core.lua:435: in field 'Main_Update_Elms'
	Core.lua:302: in function <...am Scripts/Development/Lokasenna_GUI v2/Library/Core.lua:298>
		[C]: in function 'xpcall'
	Core.lua:298: in function <...am Scripts/Development/Lokasenna_GUI v2/Library/Core.lua:297>

Lokasenna_GUI:
	v2.16.8
Reaper:
	6.0rc1/OSX64
Platform:
	OSX64

When using enter instead of double click, I get this:

Code:
...eaTeam Scripts/Project Properties/solger_ReaLauncher.lua:1068: attempt to compare number with nil
__________________
My Reascripts forum thread | My Reascripts on GitHub
If you like or use my scripts, please support the Ukraine: Ukraine Crisis Relief Fund | DirectRelief | Save The Children | Razom
_Stevie_ is online now   Reply With Quote
Old 11-24-2019, 12:13 PM   #313
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by _Stevie_ View Post
Caught a bug ... When using enter instead of double click, I get this:
Code:
...eaTeam Scripts/Project Properties/solger_ReaLauncher.lua:1068: attempt to compare number with nil
Thanks for the info. A bugfix for this should be available within the next few days (I'll have to make some code adjustments).
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-24-2019, 12:14 PM   #314
_Stevie_
Human being with feelings
 
_Stevie_'s Avatar
 
Join Date: Oct 2017
Location: Black Forest
Posts: 5,066
Default

Awesome, thanks solger!
__________________
My Reascripts forum thread | My Reascripts on GitHub
If you like or use my scripts, please support the Ukraine: Ukraine Crisis Relief Fund | DirectRelief | Save The Children | Razom
_Stevie_ is online now   Reply With Quote
Old 11-24-2019, 09:07 PM   #315
Alez156
Human being with feelings
 
Alez156's Avatar
 
Join Date: Jun 2015
Location: Venezuela
Posts: 349
Default

Awesome, Solger!

Thank you. I've been using this a lot and it inspired me to make a bunch of project templates with mp3 demos

I want to make a post about your script at @reapertips on instagram if you don't mind once the hide path thing for subfolders is fixed I would love to share it!
Alez156 is offline   Reply With Quote
Old 11-25-2019, 11:54 AM   #316
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Quote:
Originally Posted by Alez156 View Post
Thank you. I've been using this a lot and it inspired me to make a bunch of project templates with mp3 demos
Great

Quote:
I want to make a post about your script at @reapertips on instagram if you don't mind once the hide path thing for subfolders is fixed I would love to share it!
Sure, no problem. I don't mind
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-25-2019, 12:00 PM   #317
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Bugfix for the project template loading error is now available
Quote:
version 1.7.3
+ [Project Templates]: Bugfix for checking the Reaper version (5.983 or higher) in order to determine which loading logic is used
__________________
ReaLauncher
solger is offline   Reply With Quote
Old 11-26-2019, 11:49 AM   #318
tompad
Human being with feelings
 
Join Date: Jan 2010
Location: Fjugesta, Sweden
Posts: 813
Default

Hello Solger!

I have some strange things going on with ReaLauncher:

Am I remembering wrong? Didn't the most recent project show up
at the top of list "Recent Projects", mine are not. They are
now at the bottom of list. Or am I remembering wrong?

Every now and then Reaper crashes without any comments when
loading from one project in list to another project with
Load button. When I start Reaper again the projects I earlier
removed from Recent Project list have returned to list.

Any thoughts what cause this annoying behavior??
__________________
ToDoList Obliques MusicMath Donation Some of mine and my friends music projects on Spotify
tompad is offline   Reply With Quote
Old 11-26-2019, 12:12 PM   #319
solger
Human being with feelings
 
solger's Avatar
 
Join Date: Mar 2013
Posts: 5,852
Default

Hi,

Quote:
Originally Posted by tompad View Post
Am I remembering wrong? Didn't the most recent project show up at the top of list "Recent Projects", mine are not. They are now at the bottom of list. Or am I remembering wrong?
Yeah, usually the most recent project should be listed at the top.

Quote:
Every now and then Reaper crashes without any comments when loading from one project in list to another project with Load button.
Strange. Can't remember having ReaLauncher crashing without showing any error messages/comments about what caused it.
And crashing Reaper itself might perhaps be an indicator of a buggy plugin or a hardware driver causing issues (or at least are these the most common causes for crashes which I can think of right now).

Are there perhaps any error logs or crash reports (for instance in the Windows Event Viewer) with details about what might have caused the crash?: https://forum.cockos.com/showthread.php?t=36653
Or does Reaper crash perhaps only when loading a specific project?

Quote:
When I start Reaper again the projects I earlier removed from Recent Project list have returned to list.
Yeah, not all changes to the reaper.ini might have been saved prior to a crash (like if recent project entries - which are stored in the reaper.ini - were removed).

-------------------------------------------------------------------------------------------

Can you please give me the following details, so I can check these things on my end. Thanks.
  • Are these issues happening on your Windows or Linux install?
  • On which Reaper version are you currently on?
  • And which ReaLauncher version (most recent is 1.7.3)?
__________________
ReaLauncher

Last edited by solger; 11-26-2019 at 01:18 PM.
solger is offline   Reply With Quote
Old 11-27-2019, 12:23 PM   #320
tompad
Human being with feelings
 
Join Date: Jan 2010
Location: Fjugesta, Sweden
Posts: 813
Default

Quote:
Originally Posted by solger View Post
Hi,


Yeah, usually the most recent project should be listed at the top.


Strange. Can't remember having ReaLauncher crashing without showing any error messages/comments about what caused it.
And crashing Reaper itself might perhaps be an indicator of a buggy plugin or a hardware driver causing issues (or at least are these the most common causes for crashes which I can think of right now).

Are there perhaps any error logs or crash reports (for instance in the Windows Event Viewer) with details about what might have caused the crash?: https://forum.cockos.com/showthread.php?t=36653
Or does Reaper crash perhaps only when loading a specific project?


Yeah, not all changes to the reaper.ini might have been saved prior to a crash (like if recent project entries - which are stored in the reaper.ini - were removed).

-------------------------------------------------------------------------------------------

Can you please give me the following details, so I can check these things on my end. Thanks.
  • Are these issues happening on your Windows or Linux install?
  • On which Reaper version are you currently on?
  • And which ReaLauncher version (most recent is 1.7.3)?
I will look at it - I'll be back!
__________________
ToDoList Obliques MusicMath Donation Some of mine and my friends music projects on Spotify
tompad is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 03:10 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.