-
-
Notifications
You must be signed in to change notification settings - Fork 56
Update Jorts to 2.4.2 #564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
You set May 4 not April 4 as the release date. Is this expected? |
|
No. Oversight. |
|
Just out of curiosity (I don't mean to block your release), but is there any reason why you removed the close button in the headerbar? I personally thought now it looks as if there is no visual widgets to save notes and close the app, while it's still possible with Ctrl+Q, Alt+F4, "Close" menuitem in the context menu of the headerbar, etc. though. Apparently you looks like changed this intentionally in 2.4.0: [ryo@b760m ~/work/tmp/Jorts (main =)]$ git diff 2.3.0..2.4.0 -- src
:
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
index 7360de7..80d5b1e 100644
--- a/src/MainWindow.vala
+++ b/src/MainWindow.vala
:
/**********************************************/
/* USER INTERFACE */
/**********************************************/
- var headerbar = new Gtk.HeaderBar();
+ this.headerbar = new Gtk.HeaderBar();
headerbar.add_css_class ("flat");
headerbar.add_css_class("headertitle");
//header.has_subtitle = false;
- headerbar.set_show_title_buttons (true);
- headerbar.decoration_layout = "close:";
+
+ //headerbar.decoration_layout = "close:";
+ headerbar.set_show_title_buttons(false); |
There was a lot of back and forth on my side about this, with two competing approaches: i went with the latter - it does not really make sense to manage notes between closed but still needed and visible ones. Should the user really need to note down something, but also keep it out of sight like until next login (when all of the storage is loaded again), there is still the right-click -> Close or the overview with all notes when you click on the icon. I didnt provide a toggle to let user choose. I would eventually be open to if people have a workflow depending on opening/closing notes, so they can have a close and desktop action for reopen all, |
|
Thanks for clarification. Users might want to close a private note without deleting it when they want to hide it temporary, but your app already covers that case with another approach. So maybe removing the close button wouldn't be a big problem. Anyway, I don't mean to block your release anymore as I said :) Approving! |
ryonakano
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works confirmed with 2.4.2 and no concerned changes are found between 2.3.0 and 2.4.2
If the issue would have been avoiding screen noise, i considered a minimize button as well so the choice may not be definitive either |

Review Checklist
AppData
Flatpak