new metadata for fdroid publishing

This commit is contained in:
Egor 2026-03-13 00:18:00 -07:00
parent a502df4caa
commit 4ae4df4a58
10 changed files with 34 additions and 0 deletions

View file

@ -43,6 +43,22 @@ lint:
release: release:
@gh auth status >/dev/null @gh auth status >/dev/null
$(eval TAG := v$(shell cat VERSION)) $(eval TAG := v$(shell cat VERSION))
$(eval VERSION_PARTS := $(subst ., ,$(shell cat VERSION)))
$(eval MAJOR := $(word 1,$(VERSION_PARTS)))
$(eval MINOR := $(word 2,$(VERSION_PARTS)))
$(eval PATCH := $(word 3,$(VERSION_PARTS)))
$(eval VCODE := $(shell echo $$(($(MAJOR) * 10000 + $(MINOR) * 100 + $(PATCH)))))
$(eval CHANGELOG := metadata/en-US/changelogs/$(VCODE).txt)
@if [[ ! -f "$(CHANGELOG)" ]]; then \
$${EDITOR:-nano} "$(CHANGELOG)"; \
fi
@if [[ ! -s "$(CHANGELOG)" ]]; then \
echo "Aborting: changelog is empty."; \
rm -f "$(CHANGELOG)"; \
exit 1; \
fi
git add "$(CHANGELOG)"
git diff --cached --quiet || git commit -m "Add changelog for $(TAG)"
@echo "Releasing $(TAG)" @echo "Releasing $(TAG)"
git tag $(TAG) git tag $(TAG)
git push origin $(TAG) git push origin $(TAG)

View file

@ -0,0 +1 @@
This is the first release of Prism which represents the stability of the app.

View file

@ -0,0 +1,3 @@
- dep updates
- logging hardening
- BREAKING: crypto storage modernization - this change is not backward compatible and requires re-installation

View file

@ -0,0 +1,12 @@
Prism is a UnifiedPush distributor and companion app for the self-hosted Prism server.
It provides push notifications to UnifiedPush-compatible apps on your device. When paired with a Prism server, it can also receive notifications sent via the server's ntfy-compatible webhook API or its built-in integrations (Signal, Telegram, Proton Mail).
<b>Prism server features:</b>
<ul>
<li>ntfy-compatible webhook API for sending notifications from any source</li>
<li>Signal, Telegram, and Proton Mail integrations</li>
<li>End-to-end encrypted WebPush delivery to this app</li>
<li>Manual apps/topics for custom notification sources</li>
<li>Material You with light and dark themes</li>
</ul>

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 MiB

View file

@ -0,0 +1 @@
Privacy-first UnifiedPush distributor with an optional self-hosted server

1
metadata/en-US/title.txt Normal file
View file

@ -0,0 +1 @@
Prism