File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 9999 <p >🚀 4.0.0 Jorts of Hyperspace!</p >
100100 <ul >
101101 <li >Version 4 to align with Gtk version</li >
102+ <li >Added button to toggle lists, and ability to customize them</li >
102103 <li >Ctrl+Scroll to zoom-in, zoom-out</li >
103104 <li >More zoom options</li >
104105 <li >Keyboard shortcuts work from popover now</li >
114115 <issues >
115116 <issue url =" https://github.com/ellie-commons/jorts/issues/79" >Fixed zoom impacting emojichooser and context menu</issue >
116117 <issue url =" https://github.com/ellie-commons/jorts/issues/95" >Fixed coloring bleeding into icons in emojichooser and context menu</issue >
117- <issue url =" https://github.com/ellie-commons/jorts/issues/78" >Fixed absence of Ctrl+scroll</issue >
118+ <issue url =" https://github.com/ellie-commons/jorts/issues/78" >Added Ctrl+scroll</issue >
119+ <issue url =" https://github.com/ellie-commons/jorts/issues/63" >Added list feature</issue >
118120 </issues >
119121 </release >
120122 <release version =" 3.5.0" date =" 2025-11-06" >
Original file line number Diff line number Diff line change 6767
6868 var list_entry = new Gtk .Entry () {
6969 halign = Gtk . Align . END ,
70- hexpand = true ,
70+ hexpand = false ,
7171 valign = Gtk . Align . CENTER ,
72+ width_request = 15
7273 };
7374
7475 var list_label = new Granite .HeaderLabel (_(" List item symbol" )) {
9394 /* Autostart Request */
9495 /* ***************************************************/
9596#if ! WINDOWS
96- var both_buttons = new Gtk .Box (Gtk . Orientation . HORIZONTAL , 6 ) {
97+ var both_buttons = new Gtk .Box (Gtk . Orientation . HORIZONTAL , 5 ) {
9798 halign = Gtk . Align . FILL
9899 };
99100
100101 // /TRANSLATORS: Button to autostart the application
101102 var set_autostart = new Gtk .Button () {
102- label = _ ("Set autostart "),
103+ label = _ ("Autostart "),
103104 valign = Gtk.Align.CENTER
104105 };
105106
124125 both_buttons.append (set_autostart );
125126 both_buttons.append (remove_autostart );
126127
127- var autostart_box = new Gtk .Box (Gtk . Orientation . HORIZONTAL , 6 );
128+ var autostart_box = new Gtk .Box (Gtk . Orientation . HORIZONTAL , 5 );
128129
129130 var autostart_label = new Granite .HeaderLabel (_(" Allow to start at login" )) {
130131 mnemonic_widget = both_buttons,
Original file line number Diff line number Diff line change @@ -250,6 +250,7 @@ public class Jorts.StickyNoteWindow : Gtk.Window {
250250 private void action_zoom_default () {zoomcontroller. zoom_default ();}
251251 private void action_zoom_in () {zoomcontroller. zoom_in ();}
252252
253+ // Careful! The keyboard counts from 1 to 10 (0), but the themes are from 0 to 9
253254 private void action_theme_1 () {popover. color = (Jorts . Themes . all ())[0 ];}
254255 private void action_theme_2 () {popover. color = (Jorts . Themes . all ())[1 ];}
255256 private void action_theme_3 () {popover. color = (Jorts . Themes . all ())[2 ];}
You can’t perform that action at this time.
0 commit comments