Skip to content

Commit 70e1f98

Browse files
committed
Updates for release.
1 parent 7c6f714 commit 70e1f98

5 files changed

Lines changed: 29 additions & 24 deletions

File tree

com.toolstack.Folio.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@
4444
"sources" : [{
4545
"type" : "git",
4646
"url" : "https://github.com/toolstack/Folio",
47-
"tag" : "24.12",
48-
"commit" : "819ecd8d24e54a88fc2b18dd32a8600a4d907e56"
47+
"tag" : "24.13"
4948
}]
5049
}
5150
]

data/app.metainfo.xml.in

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

2626
<releases>
27+
<release type="stable" version="24.13" date="2024-11-12">
28+
<description translate="no">
29+
<p>Changes:</p>
30+
<ul>
31+
<li>Added support to display long notebook/note names in the UI</li>
32+
<li>Perforamce improvements for large markdown files, thanks @machitgarha</li>
33+
<li>Fixed AppImage support</li>
34+
<li>Fixed highlighting of text when opening an outside file in Folio</li>
35+
<li>Fixed crash when opening files/notes from the command line</li>
36+
<li>Fixed autosave not functioning</li>
37+
<li>Fixed more issues with deleting notebooks</li>
38+
<li>Translation updates</li>
39+
<li>Other minor fixes</li>
40+
</ul>
41+
</description>
42+
</release>
2743
<release type="stable" version="24.12" date="2024-10-21">
2844
<description translate="no">
2945
<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: '24.12',
4+
version: '24.13',
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: '24.12-snap'
11+
source-tag: '24.13'
1212
source-depth: 1
1313
build-snaps:
1414
- blueprint-compiler

src/application.vala

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ Sabri Ünal
189189
Scrambled777
190190
Sergio Varela
191191
TokaiTeio
192+
Turtlegarden
192193
Zagura
193194
Sunniva Løvstad
194195
""";
@@ -200,26 +201,15 @@ Sunniva Løvstad
200201
about.set_release_notes ("""
201202
<p>Changes:</p>
202203
<ul>
203-
<li>Added support for opening URI as files</li>
204-
<li>Added option to open non-text files in system handler (also avoids corrupting them)</li>
205-
<li>Added custom text for notebook icons (including emojis)</li>
206-
<li>Added requirement of periods after ordered lists to avoid false positives</li>
207-
<li>Added option to set the URL detection level</li>
208-
<li>Added option to set linespacing</li>
209-
<li>Added natural sort order for notebooks/notes</li>
210-
<li>Fixed styling of elements inside of links</li>
211-
<li>Fixed Ctrl-Scroll getting stuck sometimes</li>
212-
<li>Fixed stray formatting tags from URLs when opening them</li>
213-
<li>Fixed Ctrl-Click behaviour when window loses focus</li>
214-
<li>Fixed deleting notebooks when duplicates in the trash already exist</li>
215-
<li>Fixed zero size trash items not displaying</li>
216-
<li>Fixed crash when opening notes from the command line (or Gnome Search)</li>
217-
<li>Fixed zooming of monospace fonts</li>
218-
<li>Removed selection of the text in the rename box automatically</li>
219-
<li>Moved to Gnome 47 runtime (thanks @drpetrikov)</li>
220-
<li>Moved to newer Gnome widgets (thanks @turlegarden)</li>
221-
<li>Translation updates</li>
222-
<li>Other minor fixes</li>
204+
<li>Added support to display long notebook/note names in the UI</li>
205+
<li>Perforamce improvements for large markdown files, thanks @machitgarha</li>
206+
<li>Fixed AppImage support</li>
207+
<li>Fixed highlighting of text when opening an outside file in Folio</li>
208+
<li>Fixed crash when opening files/notes from the command line</li>
209+
<li>Fixed autosave not functioning</li>
210+
<li>Fixed more issues with deleting notebooks</li>
211+
<li>Translation updates</li>
212+
<li>Other minor fixes</li>
223213
</ul>
224214
"""
225215
);

0 commit comments

Comments
 (0)