Updated readme, fixed save session as
This commit is contained in:
parent
8f1c1848fd
commit
32f061ff76
|
@ -12,8 +12,11 @@ sudo apt-get install python3.8 wget python3-setproctitle python3-gi ffmpegthumbn
|
||||||
# TODO
|
# TODO
|
||||||
<ul>
|
<ul>
|
||||||
<li>Add simpleish plugin system to run bash/python scripts.</li>
|
<li>Add simpleish plugin system to run bash/python scripts.</li>
|
||||||
|
<li>Add simpleish preview plugin for various file types.</li>
|
||||||
|
<li>Add simpleish file chmod, chown, stats, etc plugin for file management.</li>
|
||||||
<li>Add simpleish search plugin to do recursive search and show.</li>
|
<li>Add simpleish search plugin to do recursive search and show.</li>
|
||||||
<li>Add simpleish bulk-renamer.</li>
|
<li>Add simpleish bulk-renamer.</li>
|
||||||
|
<li>Add a basic favorites manager plugin.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
# Images
|
# Images
|
||||||
|
|
|
@ -102,7 +102,7 @@ class Controller(UIMixin, KeyboardSignalsMixin, IPCSignalsMixin, ExceptionHookMi
|
||||||
save_load_dialog.set_current_name("session.json")
|
save_load_dialog.set_current_name("session.json")
|
||||||
response = save_load_dialog.run()
|
response = save_load_dialog.run()
|
||||||
if response == Gtk.ResponseType.OK:
|
if response == Gtk.ResponseType.OK:
|
||||||
if action == "save_session":
|
if action == "save_session_as":
|
||||||
path = f"{save_load_dialog.get_current_folder()}/{save_load_dialog.get_current_name()}"
|
path = f"{save_load_dialog.get_current_folder()}/{save_load_dialog.get_current_name()}"
|
||||||
self.fm_controller.save_state(path)
|
self.fm_controller.save_state(path)
|
||||||
elif action == "load_session":
|
elif action == "load_session":
|
||||||
|
|
Loading…
Reference in New Issue