Skip to content

Commit 0035dce

Browse files
committed
Updates for release.
1 parent cb9a82e commit 0035dce

5 files changed

Lines changed: 36 additions & 10 deletions

File tree

com.toolstack.Folio.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
"sources" : [{
2020
"type" : "git",
2121
"url" : "https://github.com/toolstack/Folio",
22-
"tag" : "25.02",
23-
"commit" : "446a3968d8c16c920df02959390c007571c79999"
22+
"tag" : "26.01"
2423
}]
2524
}
2625
]

data/app.metainfo.xml.in

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,26 @@
2424
<launchable type="desktop-id">@app_id@.desktop</launchable>
2525

2626
<releases>
27+
<release type="stable" version="26.01" date="2026-04-16">
28+
<description translate="no">
29+
<p>Changes:</p>
30+
<ul>
31+
<li>Added ellipses to long note titles (thanks @diegopvlk).</li>
32+
<li>Added option for wrapping long note titles (thanks @lawmurry).</li>
33+
<li>Add option to set auto-save interval.</li>
34+
<li>Fixed matching lists with more than single digits.</li>
35+
<li>Fixed several memory leaks (thanks @lawmurray).</li>
36+
<li>Fixed edge case with desktop files (thanks @lawmurray).</li>
37+
<li>Fixed required newline at end of file (thanks @lawmurry).</li>
38+
<li>Fixed issue with renaming a note with popup.</li>
39+
<li>Fixed scroll issue when switching from longer to shorter notes (thanks @lawmurry).</li>
40+
<li>Converted indents to margins to fix formatting issues.</li>
41+
<li>Use system default fonts for initial setup.</li>
42+
<li>Updated translations, thanks to all the translators!</li>
43+
<li>Moved to Gnome 50 (thanks @yakushabb).</li>
44+
</ul>
45+
</description>
46+
</release>
2747
<release type="stable" version="25.02" date="2025-04-27">
2848
<description translate="no">
2949
<p>Changes:</p>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'com.toolstack.Folio',
33
['c', 'vala'],
4-
version: '25.02',
4+
version: '26.01',
55
meson_version: '>= 0.59.4',
66
default_options: [
77
'warning_level=2',

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ parts:
88
folio:
99
plugin: meson
1010
source: https://github.com/toolstack/Folio.git
11-
source-tag: '25.02'
11+
source-tag: '26.01'
1212
source-depth: 1
1313
build-snaps:
1414
- blueprint-compiler

src/application.vala

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,19 @@ Sunniva Løvstad
227227
about.set_release_notes ("""
228228
<p>Changes:</p>
229229
<ul>
230-
<li>Fixed more renaming a note causing data loss.</li>
231-
<li>Fixed not saving note on exit.</li>
232-
<li>Fixed Gtk.init() called early for Gnome 48 compatibility.</li>
233-
<li>Fixed zoom buttons in overflow menu.</li>
234-
<li>Fixed being unable to select last note after going to the trash.</li>
235-
<li>Moved to Gnome 48.</li>
230+
<li>Added ellipses to long note titles (thanks @diegopvlk).</li>
231+
<li>Added option for wrapping long note titles (thanks @lawmurry).</li>
232+
<li>Add option to set auto-save interval.</li>
233+
<li>Fixed matching lists with more than single digits.</li>
234+
<li>Fixed several memory leaks (thanks @lawmurray).</li>
235+
<li>Fixed edge case with desktop files (thanks @lawmurray).</li>
236+
<li>Fixed required newline at end of file (thanks @lawmurry).</li>
237+
<li>Fixed issue with renaming a note with popup.</li>
238+
<li>Fixed scroll issue when switching from longer to shorter notes (thanks @lawmurry).</li>
239+
<li>Converted indents to margins to fix formatting issues.</li>
240+
<li>Use system default fonts for initial setup.</li>
241+
<li>Updated translations, thanks to all the translators!</li>
242+
<li>Moved to Gnome 50 (thanks @yakushabb).</li>
236243
</ul>
237244
"""
238245
);

0 commit comments

Comments
 (0)