diff --git a/CHANGELOG.md b/CHANGELOG.md index 7daae7d..a8198d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,20 @@ # Relatica Change Log -## Unreleased +## Version 0.7.2 (beta) + +* Changes +* Fixes + * Fixes initial OAuth authorization failing against Friendica 2023.09-rc servers +* New Features + +## Version 0.7.1 (beta) + +* Changes + * Updated versions of libraries to latest so could build on latest macOS version +* Fixes +* New Features + +## Version 0.7.0 (beta) * Changes * Added rate limiter on background contacts automatic updates diff --git a/install.md b/install.md index 0aa56e5..e0fd722 100644 --- a/install.md +++ b/install.md @@ -6,12 +6,12 @@ For more information about the current beta testing program # Latest Binaries: -* [Android v0.7.0](https://mysocialportal-relatica.nyc3.cdn.digitaloceanspaces.com/v0.7.0/relatica_v0.7.0.apk.zip) -* iPhone/iPad v0.7.0: This is only available through TestFlight. Please contact me for access. -* [Windows (Intel) v0.6.0](https://mysocialportal-relatica.nyc3.cdn.digitaloceanspaces.com/v0.6.0/relatica_v0.6.0_win_x64.zip) -* macOS v0.7.0:This is only available through TestFlight. Please contact me for access. -* [Linux (Intel Ubuntu 20) v0.6.0](https://mysocialportal-relatica.nyc3.cdn.digitaloceanspaces.com/v0.6.0/relatica_v0.6.0_linux_x64_ubuntu20.zip) -* [Linux (Intel Ubuntu 22) v0.6.0](https://mysocialportal-relatica.nyc3.cdn.digitaloceanspaces.com/v0.6.0/relatica_v0.6.0_linux_x64_ubuntu22.zip) +* [Android v0.7.2](https://mysocialportal-relatica.nyc3.cdn.digitaloceanspaces.com/v0.7.2/relatica_v0.7.2.apk.zip) +* iPhone/iPad v0.7.2: This is only available through TestFlight. Please contact me for access. +* [Windows (Intel) v0.7.2](https://mysocialportal-relatica.nyc3.cdn.digitaloceanspaces.com/v0.7.2/relatica_v0.7.2_win_x64.zip) +* macOS v0.7.2:This is only available through TestFlight. Please contact me for access. +* [Linux (Intel Ubuntu 20) v0.7.2](https://mysocialportal-relatica.nyc3.cdn.digitaloceanspaces.com/v0.7.2/relatica_v0.7.2_linux_x64_ubuntu20.zip) +* [Linux (Intel Ubuntu 22) v0.7.2](https://mysocialportal-relatica.nyc3.cdn.digitaloceanspaces.com/v0.7.2/relatica_v0.7.2_linux_x64_ubuntu22.zip) ## Mobile diff --git a/lib/models/auth/oauth_credentials.dart b/lib/models/auth/oauth_credentials.dart index a0b5d1d..5bdd8b4 100644 --- a/lib/models/auth/oauth_credentials.dart +++ b/lib/models/auth/oauth_credentials.dart @@ -40,7 +40,7 @@ class OAuthCredentials implements ICredentials { : 'relatica'; final redirectUrl = Platform.isWindows || Platform.isLinux ? redirectScheme - : '$redirectScheme:/'; + : '$redirectScheme://authorize'; return OAuthCredentials( clientId: '', clientSecret: '', diff --git a/pubspec.yaml b/pubspec.yaml index 69716cf..0e09cae 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: relatica description: A mobile and desktop client for interacting with the Friendica social network publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 0.7.1+1 +version: 0.7.2+1 environment: sdk: '>=3.0.0 <4.0.0'