Skip to content

Commit 4a0dfe9

Browse files
committed
LETS GOOOOO
1 parent 3b4e55e commit 4a0dfe9

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

data/jorts.metainfo.xml.in

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,20 +96,23 @@
9696
<releases>
9797
<release version="3.6.0" date="2025-11-20">
9898
<description>
99-
<p>3.6.0 Jorts of Hyperspace</p>
99+
<p>🚀 3.6.0 Jorts of Hyperspace!</p>
100100
<ul>
101-
<li>Various under the hood performance improvements</li>
102-
<li>A couple visual bugfixes as well!</li>
101+
<li>Ctrl+Scroll to zoom-in, zoom-out</li>
103102
<li>More zoom options</li>
103+
<li>A couple visual bugfixes as well!</li>
104+
<li>Various under the hood performance improvements</li>
104105
</ul>
105106
<p>😎 Guests stars:</p>
106107
<ul>
107108
<li>Updated JA translation thanks to @ryonakano!</li>
109+
<li>You, the user, for liking this lil app!</li>
108110
</ul>
109111
</description>
110112
<issues>
111113
<issue url="https://github.com/ellie-commons/jorts/issues/79">Fixed zoom impacting emojichooser and context menu</issue>
112114
<issue url="https://github.com/ellie-commons/jorts/issues/95">Fixed coloring bleeding into icons in emojichooser and context menu</issue>
115+
<issue url="https://github.com/ellie-commons/jorts/issues/78">Fixed absence of Ctrl+scroll</issue>
113116
</issues>
114117
</release>
115118
<release version="3.5.0" date="2025-11-06">

src/Services/ZoomController.vala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ public class Jorts.ZoomController : Object {
1717

1818
// We keep those values static as we dont need to track instance specific
1919
public static double current_scroll_delta = 0;
20-
public static is_control_key_pressed = false;
21-
public static sensitivity = 1;
20+
public static bool is_control_key_pressed = false;
21+
public static uint8 sensitivity = 1;
2222

2323
// Avoid setting this unless it is to restore a specific value, do_set_zoom does not check input
2424
private uint16 _old_zoom;

0 commit comments

Comments
 (0)