Merge branch '4.8.7'

This commit is contained in:
1024jp 2024-07-02 23:10:10 +09:00
commit dd04417350
3 changed files with 7 additions and 3 deletions

View File

@ -45,6 +45,7 @@
### Improvements
- Change to disable the smart quotes option in the Mode settings by default.
- Draw invisible symbols for invisible operators (U+2061, U+2062, U+2063, and U+2064).
- Update the Lisp, Lua, Scheme, and Tcl syntaxes to update interpreters (thanks to Renfei!).
- [non-AppStore ver.] Update Sparkle from 2.6.3 to 2.6.4.
@ -52,6 +53,7 @@
### Fixes
- Fix an issue that a document kept in the Dock was not brought to the front on the reopen event even though no documents were displayed.
- Fix the view layout in the Quick Action bar.
- Fix a potential memory leak.

View File

@ -301,9 +301,11 @@ private enum BundleIdentifier {
// execute the action directly by self (2024-05, macOS 14).
if !flag {
(DocumentController.shared as? DocumentController)?.performOnLaunchAction(isReopen: true)
return false
} else {
// -> bring a document in the Dock to the front if any exists.
return true
}
return false
}

View File

@ -63,7 +63,7 @@ extension Syntax.Kind {
ModeOptions(
fontType: .standard,
smartInsertDelete: true,
automaticQuoteSubstitution: true,
automaticQuoteSubstitution: false,
automaticDashSubstitution: false,
automaticSymbolBalancing: false,
continuousSpellChecking: true,