Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 44 additions & 7 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,55 @@ on air-gapped government instances.
Free and open source under the EUPL-1.2 license.
Gratis en open source onder de EUPL-1.2 licentie.
]]></description>
<version>0.1.3-unstable.17</version>
<!--
1.1.0, not 0.1.3-unstable.17.

This manifest under-reported the app by a whole major. The repo's
newest stable tag is v1.0.0, the 1.1.0 line was already opened as
v1.1.0-beta.0 and v1.1.0-beta.1, and apps.nextcloud.com currently
serves 1.1.0-beta.1 — while this file still claimed 0.1.3.

It survived because the release workflows rewrite the version element
in the BUILT package rather than reading this value, so the number
that ships has always been right and this one was never consulted.
It is still the baseline the workflow falls back to when no stable
tag exists, and it is what a reader checks to learn what this app is.

NOTE FOR ANYONE EDITING THIS COMMENT: never write the opening
version tag literally in this prose, not even inside quotes or an
example command. The release workflow extracts the number with a
lookbehind for that tag and takes the FIRST match in the whole file,
so a literal occurrence up here outranks the real element below and
the release builds itself a version out of comment text.

This is not hypothetical. Drafting this very comment broke it twice:
the first version made the workflow read " in the", and the second —
which quoted the grep command in order to WARN about the problem —
made it read ")[^". The warning reproduced the bug it described.
-->
<version>1.1.0</version>
<licence>EUPL-1.2</licence>
<author mail="info@conduction.nl" homepage="https://www.conduction.nl/">Conduction</author>
<namespace>NLDesign</namespace>
<category>customization</category>
<website>https://codeberg.org/Conduction/nldesign</website>
<bugs>https://codeberg.org/Conduction/nldesign/issues</bugs>
<repository type="git">https://codeberg.org/Conduction/nldesign.git</repository>
<!--
GitHub, not Codeberg. The fleet dropped Forgejo/Codeberg on
2026-08-19 and GitHub is the only forge again. Every URL below
still answered 200 from a stale mirror, so nothing looked broken —
but `bugs` pointed reporters at a tracker nobody reads, and the
App Store fetches the screenshots itself.

The three screenshot URLs were each checked on the new host before
being swapped: all answer 200 image/png from raw.githubusercontent
on `main`.
-->
<website>https://github.com/ConductionNL/nldesign</website>
<bugs>https://github.com/ConductionNL/nldesign/issues</bugs>
<repository type="git">https://github.com/ConductionNL/nldesign.git</repository>

<screenshot>https://codeberg.org/Conduction/nldesign/raw/branch/main/img/screenshot-themes.png</screenshot>
<screenshot>https://codeberg.org/Conduction/nldesign/raw/branch/main/img/screenshot-themed-login.png</screenshot>
<screenshot>https://codeberg.org/Conduction/nldesign/raw/branch/main/img/screenshot-admin-settings.png</screenshot>
<screenshot>https://raw.githubusercontent.com/ConductionNL/nldesign/main/img/screenshot-themes.png</screenshot>
<screenshot>https://raw.githubusercontent.com/ConductionNL/nldesign/main/img/screenshot-themed-login.png</screenshot>
<screenshot>https://raw.githubusercontent.com/ConductionNL/nldesign/main/img/screenshot-admin-settings.png</screenshot>

<dependencies>
<php min-version="8.3"/>
Expand Down
Loading