kopia lustrzana https://gitlab.com/mysocialportal/relatica
Merge branch 'oauth-error-fix' into 'main'
Oauth error fix See merge request mysocialportal/relatica!45merge-requests/67/merge
commit
ce9b50b3a1
16
CHANGELOG.md
16
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
|
||||
|
|
12
install.md
12
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
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ class OAuthCredentials implements ICredentials {
|
|||
: 'relatica';
|
||||
final redirectUrl = Platform.isWindows || Platform.isLinux
|
||||
? redirectScheme
|
||||
: '$redirectScheme:/';
|
||||
: '$redirectScheme://authorize';
|
||||
return OAuthCredentials(
|
||||
clientId: '',
|
||||
clientSecret: '',
|
||||
|
|
|
@ -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'
|
||||
|
|
Ładowanie…
Reference in New Issue