Update changelog and version for 0.7.1

This commit is contained in:
miruka 2021-03-04 22:20:05 -04:00
parent 7848a2014a
commit b07dfa1c01
3 changed files with 12 additions and 2 deletions

View File

@ -6,6 +6,7 @@ The format is based on
and this project adheres to and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- [0.7.1 (2021-03-04)](#071-2021-03-04)
- [0.7.0 (2021-02-28)](#070-2021-02-28) - [0.7.0 (2021-02-28)](#070-2021-02-28)
- [0.6.4 (2020-09-16)](#064-2020-09-16) - [0.6.4 (2020-09-16)](#064-2020-09-16)
- [0.6.3 (2020-09-16)](#063-2020-09-16) - [0.6.3 (2020-09-16)](#063-2020-09-16)
@ -21,6 +22,15 @@ and this project adheres to
- [0.4.0 (2020-03-21)](#040-2020-03-21) - [0.4.0 (2020-03-21)](#040-2020-03-21)
## 0.7.1 (2021-03-04)
### Fixed
- Fix loading custom themes when compiled in release mode
- Fix homeserver list errors with aiohttp 3.6.x and less, used in Flatpak
- Various corrections to default config file comments
## 0.7.0 (2021-02-28) ## 0.7.0 (2021-02-28)
### Added ### Added

View File

@ -15,4 +15,4 @@ documentation in the following modules first:
__app_name__ = "mirage" __app_name__ = "mirage"
__display_name__ = "Mirage" __display_name__ = "Mirage"
__reverse_dns__ = "io.github.mirukana.mirage" __reverse_dns__ = "io.github.mirukana.mirage"
__version__ = "0.7.0" __version__ = "0.7.1"

View File

@ -133,7 +133,7 @@ int main(int argc, char *argv[]) {
QApplication::setOrganizationName("mirage"); QApplication::setOrganizationName("mirage");
QApplication::setApplicationName("mirage"); QApplication::setApplicationName("mirage");
QApplication::setApplicationDisplayName("Mirage"); QApplication::setApplicationDisplayName("Mirage");
QApplication::setApplicationVersion("0.7.0"); QApplication::setApplicationVersion("0.7.1");
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QString customConfigDir(qEnvironmentVariable("MIRAGE_CONFIG_DIR")); QString customConfigDir(qEnvironmentVariable("MIRAGE_CONFIG_DIR"));