Preparing for release

This commit is contained in:
Yusur 2019-11-21 20:11:14 +01:00
parent d115e80e41
commit d40a8b9b6b
2 changed files with 3 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# Changelog # Changelog
## 0.8-dev ## 0.8.0
* Added the admin dashboard, accessible from `/admin/` via basic auth. Only users with admin right can access it. Added endpoints `admin.reports` and `admin.reports_detail`. * Added the admin dashboard, accessible from `/admin/` via basic auth. Only users with admin right can access it. Added endpoints `admin.reports` and `admin.reports_detail`.
* Safety is our top priority: added the ability to report someone other's post for everything violating the site's Terms of Service. The current reasons for reporting are: spam, impersonation, pornography, violence, harassment or bullying, hate speech or symbols, self injury, sale or promotion of firearms or drugs, and underage use. * Safety is our top priority: added the ability to report someone other's post for everything violating the site's Terms of Service. The current reasons for reporting are: spam, impersonation, pornography, violence, harassment or bullying, hate speech or symbols, self injury, sale or promotion of firearms or drugs, and underage use.
@ -12,6 +12,7 @@
* Added `relationships_follow`, `relationships_unfollow`, `username_availability`, `edit_profile`, `request_edit` and `confirm_edit` endpoints to API. * Added `relationships_follow`, `relationships_unfollow`, `username_availability`, `edit_profile`, `request_edit` and `confirm_edit` endpoints to API.
* Added `url` utility to model `Upload`. * Added `url` utility to model `Upload`.
* Changed default `robots.txt`, adding report and admin-related lines. * Changed default `robots.txt`, adding report and admin-related lines.
* Released official [Android client](https://github.com/sakuragasaki46/coriplusapp/releases/tag/v0.8.0)
## 0.7.1-dev ## 0.7.1-dev

View file

@ -23,7 +23,7 @@ import datetime, time, re, os, sys, string, json, html
from functools import wraps from functools import wraps
from flask_login import LoginManager from flask_login import LoginManager
__version__ = '0.8-dev' __version__ = '0.8.0'
# we want to support Python 3 only. # we want to support Python 3 only.
# Python 2 has too many caveats. # Python 2 has too many caveats.