Skip to content

Commit 27c9acf

Browse files
committed
Merge branch 'release/0.5.14'
2 parents 3536163 + d8c5559 commit 27c9acf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+11882
-10862
lines changed

.github/workflows/build.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,31 @@ jobs:
3333
ninja --verbose
3434
ninja test --verbose
3535
36+
build-test-debian-ofrky:
37+
name: Test on Debian forky
38+
runs-on: ubuntu-latest
39+
container:
40+
image: ghcr.io/pwmt/github-actions-debian:forky
41+
credentials:
42+
username: ${{ github.actor }}
43+
password: ${{ secrets.GITHUB_TOKEN }}
44+
steps:
45+
- uses: actions/checkout@v5
46+
- name: Build and test
47+
run: |
48+
mkdir build
49+
cd build
50+
meson ..
51+
ninja --verbose
52+
ninja test --verbose
53+
- name: Build and test (features disabled)
54+
run: |
55+
mkdir build-nofeatures
56+
cd build-nofeatures
57+
meson -Dsynctex=disabled -Dseccomp=disabled -Dlandlock=disabled ..
58+
ninja --verbose
59+
ninja test --verbose
60+
3661
build-test-ubuntu-noble:
3762
name: Test on Ubuntu noble
3863
runs-on: ubuntu-latest

data/org.pwmt.zathura.appdata.xml.in

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<url type="bugtracker">https://github.com/pwmt/zathura/issues</url>
3333
<url type="donation">https://pwmt.org/help/donate</url>
3434
<url type="contact">https://pwmt.org/contact</url>
35-
<url type="translate">https://github.com/pwmt/zathura/tree/develop/po</url>
35+
<url type="translate">https://pwmt.org/help/localization/</url>
3636
<url type="vcs-browser">https://github.com/pwmt/zathura</url>
3737
<url type="help">https://pwmt.org/projects/zathura/documentation/</url>
3838
<screenshots>
@@ -64,6 +64,17 @@
6464
<control>touch</control>
6565
</recommends>
6666
<releases>
67+
<release version="0.5.14" date="2025-10-27">
68+
<description>
69+
<p>Switch default database to sqlite and drop plain database</p>
70+
<p>Notify users if no attachments and images are available to export</p>
71+
<p>Make index-* configurable after init (#799)</p>
72+
<p>Support numberic keypad mappings</p>
73+
<p>Provide correct number of pages (#814)</p>
74+
<p>Undo size-allocate callback changes</p>
75+
<p>Fix temporary file nams for better content-type detection</p>
76+
</description>
77+
</release>
6778
<release version="0.5.13" date="2025-09-23">
6879
<description>
6980
<p>Validate appstream files with appstreamcli</p>

doc/man/zathura.1.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ General
137137
Toggle inputbar
138138
^n
139139
Toggle statusbar
140+
Escape
141+
Hide notification bar
140142
+, -, =
141143
Zoom in, out or to the original size
142144
zI, zO, z0
@@ -145,6 +147,7 @@ General
145147
Zoom to size n
146148
mX
147149
Set a quickmark to a letter or number X
150+
(may conflict with default action of X, e.g. 'O' or 'P')
148151
'X
149152
Goto quickmark saved at letter or number X
150153
q

doc/man/zathurarc.5.rst

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -635,16 +635,11 @@ zathura
635635

636636
*database*
637637
Defines the database backend to use for bookmarks and input history. Possible
638-
values are "plain", "sqlite" and "null". If "null" is used, bookmarks and
638+
values are "sqlite" and "null". If "null" is used, bookmarks and
639639
input history will not be stored.
640640

641-
Note that the "plain" backend is deprecated. If selected, the "sqlite" backend
642-
will import old history from the "plain" database and operation will continue
643-
with the "sqlite" backend. After the first import, the setting can safely be
644-
changed to "sqlite". The default will change after a release of Debian trixie.
645-
646641
* Value type: String
647-
* Default value: plain
642+
* Default value: sqlite
648643

649644
*dbus-raise-window*
650645
Defines whether zathura's window should be raised when receiving certain

meson.build

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('zathura', 'c',
2-
version: '0.5.13',
2+
version: '0.5.14',
33
meson_version: '>=1',
44
default_options: ['c_std=c17', 'warning_level=3'],
55
)
@@ -60,7 +60,7 @@ endif
6060

6161
# defines
6262
defines = [
63-
'-DGETTEXT_PACKAGE="zathura"',
63+
'-DGETTEXT_PACKAGE="org.pwmt.zathura"',
6464
'-DLOCALEDIR="@0@"'.format(join_paths(prefix, localedir)),
6565
'-DZATHURA_PLUGINDIR="@0@"'.format(join_paths(prefix, plugindir)),
6666
'-DSYSCONFDIR="@0@"'.format(sysconfdir),
@@ -226,4 +226,6 @@ pkg.generate(
226226
zathura_dependency = declare_dependency(link_with: zathura, include_directories: include_directories)
227227

228228
subdir('doc')
229-
subdir('tests')
229+
if get_option('tests').allowed()
230+
subdir('tests')
231+
endif

0 commit comments

Comments
 (0)