Added Sys::execute and Sys::getProcessFilePath (not tested on macOS, could be broken).
ecode:
Optimized document search (now is async).
Improved auto-reload of plugins, should solve some issues.
Added "New Window" option on Settings Menu.
This commit is contained in:
Martín Lucas Golini
2023-10-28 01:09:00 -03:00
parent 7d2fbc4678
commit b7bdfd33ba
16 changed files with 313 additions and 150 deletions

View File

@@ -36,6 +36,10 @@ void SettingsMenu::createSettingsMenu( App* app ) {
->add( i18n( "new_terminal", "New Terminal" ), findIcon( "terminal" ),
getKeybind( "create-new-terminal" ) )
->setId( "create-new-terminal" );
mSettingsMenu
->add( i18n( "new_window", "New Window" ), findIcon( "window" ),
getKeybind( "create-new-window" ) )
->setId( "create-new-window" );
mSettingsMenu
->add( i18n( "open_file", "Open File..." ), findIcon( "document-open" ),
getKeybind( "open-file" ) )