forked from X-dea/flutter_vpn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use CharonErrorState instead of CharonVpnState
- Loading branch information
Showing
4 changed files
with
48 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,45 @@ | ||
## 0.6.0 | ||
- Update to StrongSwan 5.8.1. | ||
- Use original notification from StrongSwan frontend. | ||
- Automatically retry when a error occured. | ||
|
||
**BreakingChange** | ||
|
||
- In order to compatible with original `VpnStateService`, `CharonVpnState` has been changed to `CharonErrorState` that shows detail kind of error when a generic error is received. | ||
|
||
## 0.5.0 | ||
Fix (#15) event handler for android (Flutter 1.6+). | ||
- Fix (#15) event handler for android (Flutter 1.6+). | ||
|
||
## 0.4.0 | ||
Fix state error if disconnect while connecting. | ||
Add iOS state handler. | ||
- Fix state error if disconnect while connecting. | ||
- Add iOS state handler. | ||
|
||
## 0.3.0 | ||
Add `getVpnState` for iOS. | ||
- Add `getVpnState` for iOS. | ||
|
||
## 0.2.0 | ||
Add `getVpnState` and `getCharonState` for Android. | ||
**Breaking Change** | ||
Old `FlutterVpnState` has been renamed to `CharonVpnState`. This method is for Android only. | ||
New `FlutterVpnState` is designed for both Android and iOS platform. | ||
- Add `getVpnState` and `getCharonState` for Android. | ||
|
||
**Breaking Change** | ||
|
||
- Old `FlutterVpnState` has been renamed to `CharonVpnState` which is for Android only. New `FlutterVpnState` is designed for both Android and iOS platform. | ||
|
||
## 0.1.0 | ||
### Support `arm64-v8a` for android | ||
We have added the libraries for `arm64-v8a`. | ||
Please follow `README` to configure abiFilter for NDK. | ||
### Migrate to AndroidX | ||
**Breaking Change** | ||
Migrate from the deprecated original Android Support Library to AndroidX. This shouldn't result in any functional changes, but it requires any Android apps using this plugin to also migrate if they're using the original support library. | ||
Follow [Official documents](https://developer.android.com/jetpack/androidx/migrate) to migrate. | ||
- Support `arm64-v8a` for android. Please follow `README` to configure abiFilter for NDK. | ||
|
||
**Breaking Change** | ||
|
||
- Migrate to AndroidX | ||
|
||
> Migrate from the deprecated original Android Support Library to AndroidX. This shouldn't result in any functional changes, but it requires any Android apps using this plugin to also migrate if they're using the original support library. | ||
> Follow [Official documents](https://developer.android.com/jetpack/androidx/migrate) to migrate. | ||
## 0.0.4 | ||
Add iOS support without status broadcast. | ||
- Add iOS support without status broadcast. | ||
|
||
## 0.0.3 | ||
Add `onStateChanged` to receive state changes from charon. | ||
- Add `onStateChanged` to receive state changes from charon. | ||
|
||
## 0.0.2 | ||
(Deprecated) | ||
Implemented simplest IkeV2-eap VPN service. | ||
Automatically download native libs before building. | ||
## 0.0.2 (Deprecated) | ||
- Implemented simplest IkeV2-eap VPN service. | ||
- Automatically download native libs before building. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: flutter_vpn | ||
description: Plugin for developers to access VPN service in their flutter app. | ||
version: 0.5.0 | ||
version: 0.6.0 | ||
authors: | ||
- Jason C.H <[email protected]> | ||
- Jerry Wang <[email protected]> | ||
|