alldritt
(Mark Alldritt)
October 21, 2021, 12:32am
#1
A new Script Debugger 8.0.3 BETA build is available. You can download it here:
http://www.latenightsw.com/archives/beta_for_script_debugger/ScriptDebugger8.0.3-8A41.dmg
Script Debugger 8.0 Release Notes
Build 8A41 Changes
1762: Corrected a problem where Enhanced Applets incorrectly involved the on run
handler following file drops and would not properly return to active droplet state if the Stay Open application option is enabled.
1 Like
estockly
(Ed Stockly)
October 21, 2021, 8:29am
#2
Check for updates says my version is up to date
→ Script Debugger 8.0.2 (8A39)
→ Mac OS 11.6 (20G165)
Dirk
(Dirk)
October 21, 2021, 9:24am
#3
Thanks a lot Mark!
This also solves the following problem:
Should be. You just need a handler that will show the prefs window, then make it the action of a new Preferences menu item. Something like this:
set appMenu to (current application's NSApp's mainMenu()'s itemAtIndex:0)'s submenu()
set newItem to current application's NSMenuItem's alloc()'s initWithTitle:"Preferences…" action:"showPrefs:" keyEquivalent:""
newItem's setTarget:me
appMenu's insertItem:newItem atIndex:2
...
on showPrefs:sender
...
The tricky thing is to stop it from being added t…
Regards Dirk
estockly
(Ed Stockly)
October 21, 2021, 3:55pm
#4
You usually include a link to changes for each new build. I can’t find it for this one. Anything else change?
→ Script Debugger 8.0.3 (8A41)
→ Mac OS 11.6 (20G165)
alldritt
(Mark Alldritt)
October 21, 2021, 6:11pm
#5
We do include release notes for all builds in a particular version. This is the first 8.0.3 build so it just has the changes for this build. If further 8.0.3 builds appear, the’ll look something like this:
A new Script Debugger 7.0.11 BETA build is available. You can download it here:
http://www.latenightsw.com/archives/beta_for_script_debugger/ScriptDebugger7.0.11-7A106.dmg
Changes for build 7A106
1375: When running on Mojave and Catalina systems Script Debugger requests the user provide it with Full Disk Access to work around document save issues that can occur on these versions of macOS X.
1369: Resolved an issue where dragging the thumb control to resize the editing pane failed to resiz…
Dirk
(Dirk)
October 22, 2021, 4:52pm
#6
Unfortunately, not quite. See Enhanced applet questions - #14 by Dirk
Edit: Solved!