Skip to content

Commit

Permalink
Update documentation for 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rekire committed Apr 21, 2024
1 parent 8dd70f6 commit 2c64bcc
Show file tree
Hide file tree
Showing 26 changed files with 332 additions and 34 deletions.
30 changes: 25 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,38 +1,58 @@
## 0.1.1
## 1.0.0

* First official stable version
* Improved documentation to have a full documentation coverage

## 0.2.0

* Add Windows support

## 0.1.1

* Extend the documentation

## 0.1.0

* Add Linux support
* Duplicating (test) code
* Use the same method channel structure for all platforms with maps instead of json
* Use the same method channel structure for all platforms with maps instead of
json
* Setting everything up for publishing on pub.dev

## 0.0.6

* Fix build issues on Android
* Migrate to plugins block

## 0.0.5

* Migrated to federated plugin structure
* Migrated on Android to the CredentialManager API
* Added on Android zero touch login options by using the BlockManager to sync a login token across all (Google PlayService compatible) devices of a user
* Added on Android zero touch login options by using the BlockManager to sync a
login token across all (Google PlayService compatible) devices of a user
* Add MacOS support
* Use the KeyValueStore to sync login tokens cross iOS and MacOS
* Fixed loading credentials on iOS
* Added tons of tests and CI improvements heavily inspired by very_good_flutter_plugin
* Added tons of tests and CI improvements heavily inspired by
very_good_flutter_plugin
* Add editor config for better common formatting

## 0.0.4

* Updated dependencies (Flutter, Gradle, Dart, Kotlin)
* Cleanup
* Added placeholder test
* Added placeholder test

## 0.0.3

* Allow nullable credentials

## 0.0.2

* First release with null safety
* Added web support
* Sample page for the usage on github pages

## 0.0.1

* Initial release
5 changes: 5 additions & 0 deletions autologin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.0

* First official stable version
* Improved documentation to have a full documentation coverage

## 0.2.0

* Add Windows support
Expand Down
8 changes: 8 additions & 0 deletions autologin/lib/autologin.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/// The public interface of the AutologinPlugin. For a quick synchronous check
/// you can check [isPlatformSupported]. When you need a full report of the
/// [Compatibilities] you can [performCompatibilityChecks]. You can check the
/// [Compatibilities] class for the details. With [requestCredentials] your
/// saved [Credential]s can be requested which you need to safe before with
/// [saveCredentials].
library;

import 'package:autologin_platform_interface/autologin_platform_interface.dart';
export 'package:autologin_platform_interface/autologin_platform_interface.dart'
show Compatibilities, Credential;
Expand Down
14 changes: 7 additions & 7 deletions autologin/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: autologin
description: This Plugin helps the developer to auto login into their app as simple as possible.
version: 0.2.0
version: 1.0.0
homepage: https://github.com/rekire/autologin_plugin

environment:
Expand All @@ -24,12 +24,12 @@ flutter:
default_package: autologin_windows

dependencies:
autologin_android: ^0.1.0
autologin_darwin: ^0.1.0
autologin_linux: ^0.1.0
autologin_platform_interface: ^0.1.0
autologin_web: ^0.1.0
autologin_windows: ^0.2.0
autologin_android: ^1.0.0
autologin_darwin: ^1.0.0
autologin_linux: ^1.0.0
autologin_platform_interface: ^1.0.0
autologin_web: ^1.0.0
autologin_windows: ^1.0.0
flutter:
sdk: flutter

Expand Down
5 changes: 5 additions & 0 deletions autologin_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.0

* First official stable version
* Improved documentation to have a full documentation coverage

## 0.1.1

* Extend the documentation
Expand Down
3 changes: 3 additions & 0 deletions autologin_android/lib/autologin_android.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/// The Android implementation of [AutologinPlatform].
library;

import 'package:autologin_platform_interface/autologin_platform_interface.dart';

/// The Android implementation of [AutologinPlatform].
Expand Down
6 changes: 3 additions & 3 deletions autologin_android/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: autologin_android
description: The platform implementation of the autologin plugin for Android.
version: 0.1.1
version: 1.0.0
homepage: https://github.com/rekire/autologin_plugin/tree/main/autologin_android

environment:
Expand All @@ -17,7 +17,7 @@ flutter:
dartPluginClass: AutologinAndroid

dependencies:
autologin_platform_interface: ^0.1.0
autologin_platform_interface: ^1.0.0
flutter:
sdk: flutter

Expand All @@ -26,7 +26,7 @@ dev_dependencies:
git:
url: https://github.com/rekire/autologin_plugin.git
path: autologin_test_utils
ref: 0.1.1
ref: 1.0.0
flutter_test:
sdk: flutter
plugin_platform_interface: ^2.0.0
Expand Down
5 changes: 5 additions & 0 deletions autologin_darwin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.0

* First official stable version
* Improved documentation to have a full documentation coverage

## 0.1.1

* Extend the documentation
Expand Down
3 changes: 3 additions & 0 deletions autologin_darwin/lib/autologin_darwin.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/// The Darwin implementation of [AutologinPlatform] for iOS and MacOS.
library;

import 'package:autologin_platform_interface/autologin_platform_interface.dart';

/// The Darwin implementation of [AutologinPlatform] for iOS and MacOS.
Expand Down
6 changes: 3 additions & 3 deletions autologin_darwin/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: autologin_darwin
description: The platform implementation of the autologin plugin for iOS and MacOS.
version: 0.1.1
version: 1.0.0
homepage: https://github.com/rekire/autologin_plugin/tree/main/autologin_darwin

environment:
Expand All @@ -23,7 +23,7 @@ flutter:
sharedDarwinSource: true

dependencies:
autologin_platform_interface: ^0.1.0
autologin_platform_interface: ^1.0.0
flutter:
sdk: flutter

Expand All @@ -32,7 +32,7 @@ dev_dependencies:
git:
url: https://github.com/rekire/autologin_plugin.git
path: autologin_test_utils
ref: 0.1.1
ref: 1.0.0
flutter_test:
sdk: flutter
very_good_analysis: ^5.1.0
5 changes: 5 additions & 0 deletions autologin_linux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.0

* First official stable version
* Improved documentation to have a full documentation coverage

## 0.1.1

* Extend the documentation
Expand Down
3 changes: 3 additions & 0 deletions autologin_linux/lib/autologin_linux.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/// The Linux implementation of [AutologinPlatform].
library;

import 'package:autologin_platform_interface/autologin_platform_interface.dart';
import 'package:flutter/services.dart';

Expand Down
6 changes: 3 additions & 3 deletions autologin_linux/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: autologin_linux
description: The platform implementation of the autologin plugin for Linux.
version: 0.1.1
version: 1.0.0
homepage: https://github.com/rekire/autologin_plugin/tree/main/autologin_linux

environment:
Expand All @@ -16,7 +16,7 @@ flutter:
dartPluginClass: AutologinLinux

dependencies:
autologin_platform_interface: ^0.1.0
autologin_platform_interface: ^1.0.0
flutter:
sdk: flutter

Expand All @@ -25,7 +25,7 @@ dev_dependencies:
git:
url: https://github.com/rekire/autologin_plugin.git
path: autologin_test_utils
ref: 0.1.1
ref: 1.0.0
flutter_test:
sdk: flutter
very_good_analysis: ^5.1.0
5 changes: 5 additions & 0 deletions autologin_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.0

* First official stable version
* Improved documentation to have a full documentation coverage

## 0.1.1

* Extend the documentation
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/// The interface that implementations of autologin must implement.
///
/// Platform implementations should extend this class rather than implement it
/// as `Autologin`. Extending this class (using `extends`) ensures that the
/// subclass will get the default implementation, while platform implementations
/// that `implements` this interface will be broken by newly added
/// [AutologinPlatform] methods.
library;

import 'package:autologin_platform_interface/src/compatibilities.dart';
import 'package:autologin_platform_interface/src/credential.dart';
import 'package:autologin_platform_interface/src/method_channel_autologin.dart';
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions autologin_platform_interface/lib/src/credential.freezed.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion autologin_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: autologin_platform_interface
description: The common platform interface with shared code for the autologin plugin.
version: 0.1.1
version: 1.0.0
homepage: https://github.com/rekire/autologin_plugin/tree/main/autologin_platform_interface

environment:
Expand Down
4 changes: 2 additions & 2 deletions autologin_test_utils/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: autologin_test_utils
description: Shared code for tests to avoid to duplicating test code.
version: 0.1.1
version: 1.0.0
homepage: https://github.com/rekire/autologin_plugin/tree/main/autologin_test_utils
publish_to: none

environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
autologin_platform_interface: ^0.1.0
autologin_platform_interface: ^1.0.0
flutter:
sdk: flutter
flutter_test:
Expand Down
5 changes: 5 additions & 0 deletions autologin_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.0

* First official stable version
* Improved documentation to have a full documentation coverage

## 0.1.0

* Add Linux support
Expand Down
Loading

0 comments on commit 2c64bcc

Please sign in to comment.