Compare commits

...

3 Commits

Author SHA1 Message Date
Jonas Schäfer
1da45395c2 Merge branch 'hotfix/f-droid-button' into alpha 2021-06-20 14:16:11 +02:00
Jonas Schäfer
7dde3a1128 Bump version number manually for hopefully the last time
(As the master branch now uses automatic version detection.)
2021-06-20 14:12:55 +02:00
Matthew Wild
934976c114 README: Add short intro 2021-05-30 18:29:33 +01:00
2 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,11 @@
# Snikket Web Portal
This is the web component of a [Snikket service](https://snikket.org/service/)
that allows users to manage accounts, and administrators to manage the
service. For general setup, see the [Snikket install
guide](https://snikket.org/service/quickstart/). For developers working on
Snikket, see the development quickstart below.
![Screenshot of the app](docs/readme-screenshot.png)
## Development quickstart

View File

@@ -1,4 +1,4 @@
version_info = (0, 2, 1, None)
version_info = (0, 2, 2, None)
version = (
".".join(map(str, version_info[:3])) +
(f"-{version_info[3]}" if version_info[3] else "")