mirror of
https://github.com/lone-cloud/prism-android
synced 2026-06-03 19:54:44 -07:00
new metadata for fdroid publishing
This commit is contained in:
parent
a502df4caa
commit
4ae4df4a58
10 changed files with 34 additions and 0 deletions
16
Makefile
16
Makefile
|
|
@ -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)
|
||||||
|
|
|
||||||
1
metadata/en-US/changelogs/10000.txt
Normal file
1
metadata/en-US/changelogs/10000.txt
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
This is the first release of Prism which represents the stability of the app.
|
||||||
3
metadata/en-US/changelogs/10100.txt
Normal file
3
metadata/en-US/changelogs/10100.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
- dep updates
|
||||||
|
- logging hardening
|
||||||
|
- BREAKING: crypto storage modernization - this change is not backward compatible and requires re-installation
|
||||||
12
metadata/en-US/full_description.txt
Normal file
12
metadata/en-US/full_description.txt
Normal 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>
|
||||||
BIN
metadata/en-US/images/icon.png
Normal file
BIN
metadata/en-US/images/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 136 KiB |
BIN
metadata/en-US/images/phoneScreenshots/1.png
Normal file
BIN
metadata/en-US/images/phoneScreenshots/1.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.1 MiB |
BIN
metadata/en-US/images/phoneScreenshots/2.png
Normal file
BIN
metadata/en-US/images/phoneScreenshots/2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.1 MiB |
BIN
metadata/en-US/images/phoneScreenshots/3.png
Normal file
BIN
metadata/en-US/images/phoneScreenshots/3.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.1 MiB |
1
metadata/en-US/short_description.txt
Normal file
1
metadata/en-US/short_description.txt
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Privacy-first UnifiedPush distributor with an optional self-hosted server
|
||||||
1
metadata/en-US/title.txt
Normal file
1
metadata/en-US/title.txt
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
Prism
|
||||||
Loading…
Add table
Reference in a new issue