diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 88e6f8e72..dc0bcce07 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -9,6 +9,7 @@ on: push: branches: - master + - main jobs: integration_test: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9c86f9efa..7f76b8653 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,6 +9,7 @@ on: push: branches: - master + - main jobs: release: diff --git a/README.md b/README.md index ed4f1efa1..dcb4a16ba 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This repo contains Flutter plugins maintained by the flutter-tizen team. We're i To build Flutter applications with plugins, use the [flutter-tizen](https://github.com/flutter-tizen/flutter-tizen) tool. -Every plugin in this repo is written in either C++, C#, or Dart. For how to write a new plugin or extend existing plugins for Tizen, see [this page](https://github.com/flutter-tizen/flutter-tizen/blob/master/doc/develop-plugin.md). +Every plugin in this repo is written in either C++, C#, or Dart. For how to write a new plugin or extend existing plugins for Tizen, see [this page](https://github.com/flutter-tizen/flutter-tizen/blob/main/doc/develop-plugin.md). ## List of packages diff --git a/packages/audioplayers/CHANGELOG.md b/packages/audioplayers/CHANGELOG.md index 8f0d74940..c2ba9231b 100644 --- a/packages/audioplayers/CHANGELOG.md +++ b/packages/audioplayers/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.1.6 + +* Update the repository URL to use the `main` branch. + ## 3.1.5 * Reset the play position to 0 after `stop` (best-effort) to match other platforms. diff --git a/packages/audioplayers/pubspec.yaml b/packages/audioplayers/pubspec.yaml index 11645686b..5b2ab2802 100644 --- a/packages/audioplayers/pubspec.yaml +++ b/packages/audioplayers/pubspec.yaml @@ -1,8 +1,8 @@ name: audioplayers_tizen description: Tizen implementation of the audioplayers plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/audioplayers -version: 3.1.5 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/audioplayers +version: 3.1.6 environment: sdk: ^3.6.0 diff --git a/packages/connectivity_plus/CHANGELOG.md b/packages/connectivity_plus/CHANGELOG.md index 75425e4c0..bbacc67a4 100644 --- a/packages/connectivity_plus/CHANGELOG.md +++ b/packages/connectivity_plus/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 1.3.1 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 1.3.0 diff --git a/packages/connectivity_plus/pubspec.yaml b/packages/connectivity_plus/pubspec.yaml index 1152f856c..54b1dce84 100644 --- a/packages/connectivity_plus/pubspec.yaml +++ b/packages/connectivity_plus/pubspec.yaml @@ -1,8 +1,8 @@ name: connectivity_plus_tizen description: Tizen implementation of the connectivity_plus plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/connectivity_plus -version: 1.3.0 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/connectivity_plus +version: 1.3.1 environment: sdk: ">=3.2.0 <4.0.0" diff --git a/packages/device_info_plus/CHANGELOG.md b/packages/device_info_plus/CHANGELOG.md index 8d99d0a90..41b23def0 100644 --- a/packages/device_info_plus/CHANGELOG.md +++ b/packages/device_info_plus/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 1.4.1 +* Update the repository URL to use the `main` branch. * Add 2 integration test cases. * Update integration tests. diff --git a/packages/device_info_plus/pubspec.yaml b/packages/device_info_plus/pubspec.yaml index 45227d601..096914371 100644 --- a/packages/device_info_plus/pubspec.yaml +++ b/packages/device_info_plus/pubspec.yaml @@ -2,8 +2,8 @@ name: device_info_plus_tizen description: Flutter plugin providing detailed information about Tizen device (make, model, etc.) the app is running on. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/device_info_plus -version: 1.4.0 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/device_info_plus +version: 1.4.1 environment: sdk: ^3.7.0 diff --git a/packages/firebase_core/CHANGELOG.md b/packages/firebase_core/CHANGELOG.md index 0fbe63cda..50bc3cc20 100644 --- a/packages/firebase_core/CHANGELOG.md +++ b/packages/firebase_core/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 0.1.2 +* Update the repository URL to use the `main` branch. * Add integration tests based on upstream firebase_core v2.17.0. * Update minimum Flutter and Dart version to 3.13 and 3.1. * Fix new lint warnings. diff --git a/packages/firebase_core/pubspec.yaml b/packages/firebase_core/pubspec.yaml index 9b261331f..87fdfd862 100644 --- a/packages/firebase_core/pubspec.yaml +++ b/packages/firebase_core/pubspec.yaml @@ -1,8 +1,8 @@ name: firebase_core_tizen description: Tizen implementation of the firebase_core plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/firebase_core -version: 0.1.1 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/firebase_core +version: 0.1.2 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/flutter_inappwebview/CHANGELOG.md b/packages/flutter_inappwebview/CHANGELOG.md index 39d9ed658..c12e4eae9 100644 --- a/packages/flutter_inappwebview/CHANGELOG.md +++ b/packages/flutter_inappwebview/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.2 + +* Update the repository URL to use the `main` branch. + ## 0.1.1 - Fix a crash when a webview is disposed. @@ -5,4 +9,3 @@ ## 0.1.0 - Initial release of `flutter_inappwebview_tizen`. -- \ No newline at end of file diff --git a/packages/flutter_inappwebview/pubspec.yaml b/packages/flutter_inappwebview/pubspec.yaml index b9e860a4c..ca70a4725 100644 --- a/packages/flutter_inappwebview/pubspec.yaml +++ b/packages/flutter_inappwebview/pubspec.yaml @@ -1,8 +1,8 @@ name: flutter_inappwebview_tizen description: Tizen implementation of the flutter_inappwebview plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/flutter_inappwebview -version: 0.1.1 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/flutter_inappwebview +version: 0.1.2 environment: sdk: ">=3.8.0 <4.0.0" diff --git a/packages/flutter_secure_storage/CHANGELOG.md b/packages/flutter_secure_storage/CHANGELOG.md index db41bea7a..596ed38b1 100644 --- a/packages/flutter_secure_storage/CHANGELOG.md +++ b/packages/flutter_secure_storage/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 0.1.4 +* Update the repository URL to use the `main` branch. * Update integration tests based on upstream flutter_secure_storage v10.2.0 (12 test cases). * Update integration tests. diff --git a/packages/flutter_secure_storage/pubspec.yaml b/packages/flutter_secure_storage/pubspec.yaml index 1f4a8d583..2905a8158 100644 --- a/packages/flutter_secure_storage/pubspec.yaml +++ b/packages/flutter_secure_storage/pubspec.yaml @@ -1,8 +1,8 @@ name: flutter_secure_storage_tizen description: Tizen implementation of the flutter_secure_storage plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/flutter_secure_storage -version: 0.1.3 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/flutter_secure_storage +version: 0.1.4 environment: sdk: ^3.6.0 diff --git a/packages/flutter_tts/CHANGELOG.md b/packages/flutter_tts/CHANGELOG.md index 89ebd823d..e691deda9 100644 --- a/packages/flutter_tts/CHANGELOG.md +++ b/packages/flutter_tts/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 1.7.1 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 1.7.0 diff --git a/packages/flutter_tts/pubspec.yaml b/packages/flutter_tts/pubspec.yaml index e59b6999e..9ddd6b66c 100644 --- a/packages/flutter_tts/pubspec.yaml +++ b/packages/flutter_tts/pubspec.yaml @@ -1,8 +1,8 @@ name: flutter_tts_tizen description: The Tizen implementation of flutter_tts plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/flutter_tts -version: 1.7.0 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/flutter_tts +version: 1.7.1 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/flutter_webrtc/CHANGELOG.md b/packages/flutter_webrtc/CHANGELOG.md index cda0e8a3c..3f52bbe58 100644 --- a/packages/flutter_webrtc/CHANGELOG.md +++ b/packages/flutter_webrtc/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 0.2.4 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 0.2.3 diff --git a/packages/flutter_webrtc/pubspec.yaml b/packages/flutter_webrtc/pubspec.yaml index 81e6a5af7..e8db76aae 100644 --- a/packages/flutter_webrtc/pubspec.yaml +++ b/packages/flutter_webrtc/pubspec.yaml @@ -1,8 +1,8 @@ name: flutter_webrtc_tizen homepage: https://github.com/flutter-tizen/plugins description: Flutter WebRTC plugin for Tizen, based on GoogleWebRTC. -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/flutter_webrtc -version: 0.2.3 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/flutter_webrtc +version: 0.2.4 environment: sdk: ">=3.3.0 <4.0.0" diff --git a/packages/geolocator/CHANGELOG.md b/packages/geolocator/CHANGELOG.md index a8427e5a1..f577dff8a 100644 --- a/packages/geolocator/CHANGELOG.md +++ b/packages/geolocator/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 1.0.9 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 1.0.8 diff --git a/packages/geolocator/pubspec.yaml b/packages/geolocator/pubspec.yaml index 6e91064c1..2e384f377 100644 --- a/packages/geolocator/pubspec.yaml +++ b/packages/geolocator/pubspec.yaml @@ -1,8 +1,8 @@ name: geolocator_tizen description: Tizen implementation of the geolocator plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/geolocator -version: 1.0.8 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/geolocator +version: 1.0.9 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/google_maps_flutter/CHANGELOG.md b/packages/google_maps_flutter/CHANGELOG.md index c14478638..3a17edd9b 100644 --- a/packages/google_maps_flutter/CHANGELOG.md +++ b/packages/google_maps_flutter/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.15 + +* Update the repository URL to use the `main` branch. + ## 0.1.14 * Update google_maps_flutter to 2.16.0. diff --git a/packages/google_maps_flutter/pubspec.yaml b/packages/google_maps_flutter/pubspec.yaml index 75b2e7220..eafc15c57 100644 --- a/packages/google_maps_flutter/pubspec.yaml +++ b/packages/google_maps_flutter/pubspec.yaml @@ -1,8 +1,8 @@ name: google_maps_flutter_tizen description: Tizen implementation of the google_maps_flutter plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/google_maps_flutter -version: 0.1.14 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/google_maps_flutter +version: 0.1.15 environment: sdk: ">=3.4.0 <4.0.0" diff --git a/packages/google_sign_in/CHANGELOG.md b/packages/google_sign_in/CHANGELOG.md index 108eebdf3..57bca7410 100644 --- a/packages/google_sign_in/CHANGELOG.md +++ b/packages/google_sign_in/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 0.2.1 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 0.2.0 diff --git a/packages/google_sign_in/pubspec.yaml b/packages/google_sign_in/pubspec.yaml index c7a6f5f34..284634087 100644 --- a/packages/google_sign_in/pubspec.yaml +++ b/packages/google_sign_in/pubspec.yaml @@ -1,8 +1,8 @@ name: google_sign_in_tizen description: Tizen implementation of the google_sign_in plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/google_sign_in -version: 0.2.0 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/google_sign_in +version: 0.2.1 environment: sdk: ">=3.7.0 <4.0.0" diff --git a/packages/in_app_purchase/CHANGELOG.md b/packages/in_app_purchase/CHANGELOG.md index fdb5633ff..d1d6d35be 100644 --- a/packages/in_app_purchase/CHANGELOG.md +++ b/packages/in_app_purchase/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 0.1.6 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 0.1.5 @@ -29,4 +30,4 @@ ## 0.1.0 -* Initial release. \ No newline at end of file +* Initial release. diff --git a/packages/in_app_purchase/README.md b/packages/in_app_purchase/README.md index dd9f4e294..e92bd0b92 100644 --- a/packages/in_app_purchase/README.md +++ b/packages/in_app_purchase/README.md @@ -24,7 +24,7 @@ The sso.partner privilege is required by the [Sso API](https://developer.samsung Follow these steps before setting up in-app purchases for your application: -1. [Register your application](https://github.com/flutter-tizen/flutter-tizen/blob/master/doc/publish-app.md) at the [Samsung Apps TV Seller Office](https://seller.samsungapps.com/tv) if you haven't registered yet. You do not need to complete the registration process at this point. Go to the **Billing Info** page of the app and set the **Samsung Checkout** checkbox to ON. You can return back to this page and finish the registration process when the final version of your app is ready. +1. [Register your application](https://github.com/flutter-tizen/flutter-tizen/blob/main/doc/publish-app.md) at the [Samsung Apps TV Seller Office](https://seller.samsungapps.com/tv) if you haven't registered yet. You do not need to complete the registration process at this point. Go to the **Billing Info** page of the app and set the **Samsung Checkout** checkbox to ON. You can return back to this page and finish the registration process when the final version of your app is ready. 2. Log in to the [Samsung Checkout DPI Portal](https://dpi.samsungcheckout.com) and register your in-app items. You can find your **App ID** and **Security Key** in the [**App Details Setting**](https://dpi.samsungcheckout.com/settings/appdetails) page. These values will be used as request parameters in your app code. diff --git a/packages/in_app_purchase/pubspec.yaml b/packages/in_app_purchase/pubspec.yaml index a801f2683..7997ce57a 100644 --- a/packages/in_app_purchase/pubspec.yaml +++ b/packages/in_app_purchase/pubspec.yaml @@ -1,8 +1,8 @@ name: in_app_purchase_tizen description: Tizen implementation of the in_app_purchase plugin for Samsung Smart TV. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/in_app_purchase -version: 0.1.5 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/in_app_purchase +version: 0.1.6 environment: sdk: ^3.5.0 diff --git a/packages/integration_test/CHANGELOG.md b/packages/integration_test/CHANGELOG.md index 420974e6b..c94ac14d2 100644 --- a/packages/integration_test/CHANGELOG.md +++ b/packages/integration_test/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.0.4 + +* Update the repository URL to use the `main` branch. + ## 2.0.3 * Update minimum Flutter and Dart version to 3.13 and 3.1. diff --git a/packages/integration_test/pubspec.yaml b/packages/integration_test/pubspec.yaml index 045124eac..130bae34b 100644 --- a/packages/integration_test/pubspec.yaml +++ b/packages/integration_test/pubspec.yaml @@ -1,8 +1,8 @@ name: integration_test_tizen description: Tizen implementation of the integration_test plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/integration_test -version: 2.0.3 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/integration_test +version: 2.0.4 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/keyboard_detection/CHANGELOG.md b/packages/keyboard_detection/CHANGELOG.md index 27f9b66f5..3c9036a91 100644 --- a/packages/keyboard_detection/CHANGELOG.md +++ b/packages/keyboard_detection/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 0.1.1 +* Update the repository URL to use the `main` branch. * Add 18 integration test cases. * Update integration tests. diff --git a/packages/keyboard_detection/pubspec.yaml b/packages/keyboard_detection/pubspec.yaml index 27b58e557..eca0c2628 100644 --- a/packages/keyboard_detection/pubspec.yaml +++ b/packages/keyboard_detection/pubspec.yaml @@ -1,8 +1,8 @@ name: keyboard_detection_tizen description: A Tizen-specific Flutter plugin that detects software keyboard (input panel) visibility and state changes. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/keyboard_detection -version: 0.1.0 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/keyboard_detection +version: 0.1.1 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/messageport/CHANGELOG.md b/packages/messageport/CHANGELOG.md index 2d87a300c..e6582e31b 100644 --- a/packages/messageport/CHANGELOG.md +++ b/packages/messageport/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 0.3.3 +* Update the repository URL to use the `main` branch. * Fix new lint warnings. * Update minimum Flutter and Dart version to 3.13 and 3.1. * Update code format. diff --git a/packages/messageport/pubspec.yaml b/packages/messageport/pubspec.yaml index 039f7117b..1b44cf294 100644 --- a/packages/messageport/pubspec.yaml +++ b/packages/messageport/pubspec.yaml @@ -1,8 +1,8 @@ name: messageport_tizen description: A Flutter plugin that allows communication between multiple applications on Tizen using Tizen Message Port. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/messageport -version: 0.3.2 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/messageport +version: 0.3.3 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/network_info_plus/CHANGELOG.md b/packages/network_info_plus/CHANGELOG.md index 6f389bd4d..243ac5927 100644 --- a/packages/network_info_plus/CHANGELOG.md +++ b/packages/network_info_plus/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 1.1.7 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 1.1.6 diff --git a/packages/network_info_plus/pubspec.yaml b/packages/network_info_plus/pubspec.yaml index abd7923fc..7b4c7da3b 100644 --- a/packages/network_info_plus/pubspec.yaml +++ b/packages/network_info_plus/pubspec.yaml @@ -1,8 +1,8 @@ name: network_info_plus_tizen description: Tizen implementation of the network_info_plus plugin homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/network_info_plus -version: 1.1.6 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/network_info_plus +version: 1.1.7 environment: sdk: ^3.6.0 diff --git a/packages/package_info_plus/CHANGELOG.md b/packages/package_info_plus/CHANGELOG.md index 4bd1911bb..85a1a83ec 100644 --- a/packages/package_info_plus/CHANGELOG.md +++ b/packages/package_info_plus/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.1 + +* Update the repository URL to use the `main` branch. + ## 1.1.0 * Update package_info_plus to 9.0.1. diff --git a/packages/package_info_plus/pubspec.yaml b/packages/package_info_plus/pubspec.yaml index 40f79c289..17dc37d1e 100644 --- a/packages/package_info_plus/pubspec.yaml +++ b/packages/package_info_plus/pubspec.yaml @@ -1,8 +1,8 @@ name: package_info_plus_tizen description: Tizen implementation of the package_info_plus plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/package_info_plus -version: 1.1.0 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/package_info_plus +version: 1.1.1 environment: sdk: ">=3.3.0 <4.0.0" diff --git a/packages/path_provider/CHANGELOG.md b/packages/path_provider/CHANGELOG.md index 4fd5996c0..a4fd337db 100644 --- a/packages/path_provider/CHANGELOG.md +++ b/packages/path_provider/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 2.3.1 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 2.3.0 diff --git a/packages/path_provider/pubspec.yaml b/packages/path_provider/pubspec.yaml index 9c8bdf915..1d19ea9bc 100644 --- a/packages/path_provider/pubspec.yaml +++ b/packages/path_provider/pubspec.yaml @@ -1,8 +1,8 @@ name: path_provider_tizen description: Tizen implementation of the path_provider plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/path_provider -version: 2.3.0 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/path_provider +version: 2.3.1 environment: sdk: ^3.3.0 diff --git a/packages/permission_handler/CHANGELOG.md b/packages/permission_handler/CHANGELOG.md index 5dd55e406..e7c96fd6b 100644 --- a/packages/permission_handler/CHANGELOG.md +++ b/packages/permission_handler/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 1.4.5 +* Update the repository URL to use the `main` branch. * Add 8 integration test cases. * Update integration tests. diff --git a/packages/permission_handler/pubspec.yaml b/packages/permission_handler/pubspec.yaml index 0bc3f2781..26cae28a0 100644 --- a/packages/permission_handler/pubspec.yaml +++ b/packages/permission_handler/pubspec.yaml @@ -1,8 +1,8 @@ name: permission_handler_tizen description: Tizen implementation of the permission_handler plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/permission_handler -version: 1.4.4 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/permission_handler +version: 1.4.5 environment: sdk: ^3.5.0 diff --git a/packages/shared_preferences/CHANGELOG.md b/packages/shared_preferences/CHANGELOG.md index f61b20039..8c8d66398 100644 --- a/packages/shared_preferences/CHANGELOG.md +++ b/packages/shared_preferences/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 2.3.4 +* Update the repository URL to use the `main` branch. * Add 12 integration test cases for the legacy-to-async migration utility. * Update integration tests. diff --git a/packages/shared_preferences/pubspec.yaml b/packages/shared_preferences/pubspec.yaml index 6ef5b060f..e0abbf176 100644 --- a/packages/shared_preferences/pubspec.yaml +++ b/packages/shared_preferences/pubspec.yaml @@ -1,8 +1,8 @@ name: shared_preferences_tizen description: Tizen implementation of the shared_preferences plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/shared_preferences -version: 2.3.3 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/shared_preferences +version: 2.3.4 environment: sdk: ^3.6.0 diff --git a/packages/sqflite/CHANGELOG.md b/packages/sqflite/CHANGELOG.md index 6634c156c..ab271be4a 100644 --- a/packages/sqflite/CHANGELOG.md +++ b/packages/sqflite/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.5 + +* Update the repository URL to use the `main` branch. + ## 0.1.4 * Update sqflite to 2.4.2. diff --git a/packages/sqflite/pubspec.yaml b/packages/sqflite/pubspec.yaml index 140fc24a5..918f13dea 100644 --- a/packages/sqflite/pubspec.yaml +++ b/packages/sqflite/pubspec.yaml @@ -1,8 +1,8 @@ name: sqflite_tizen description: Tizen implementation of the sqflite plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/sqflite -version: 0.1.4 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/sqflite +version: 0.1.5 environment: sdk: ">=3.7.0 <4.0.0" diff --git a/packages/tizen_app_control/CHANGELOG.md b/packages/tizen_app_control/CHANGELOG.md index c25c253f2..7402c21f9 100644 --- a/packages/tizen_app_control/CHANGELOG.md +++ b/packages/tizen_app_control/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 0.2.4 +* Update the repository URL to use the `main` branch. * Update minimum Flutter and Dart version to 3.13 and 3.1. * Update code format. * Add YouTube app launch to the example. diff --git a/packages/tizen_app_control/pubspec.yaml b/packages/tizen_app_control/pubspec.yaml index 29ad2c1c0..39eb7dce9 100644 --- a/packages/tizen_app_control/pubspec.yaml +++ b/packages/tizen_app_control/pubspec.yaml @@ -1,8 +1,8 @@ name: tizen_app_control description: Tizen application control APIs. Used to launch apps on a Tizen device. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_app_control -version: 0.2.3 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/tizen_app_control +version: 0.2.4 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/tizen_app_manager/CHANGELOG.md b/packages/tizen_app_manager/CHANGELOG.md index bec05960e..bf8a84064 100644 --- a/packages/tizen_app_manager/CHANGELOG.md +++ b/packages/tizen_app_manager/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.2.6 + +* Update the repository URL to use the `main` branch. + ## 0.2.5 * Fix memory leak in `AppRunningContext.packageId` by freeing the native string diff --git a/packages/tizen_app_manager/pubspec.yaml b/packages/tizen_app_manager/pubspec.yaml index 28cf4210c..274ad1531 100644 --- a/packages/tizen_app_manager/pubspec.yaml +++ b/packages/tizen_app_manager/pubspec.yaml @@ -1,8 +1,8 @@ name: tizen_app_manager description: Tizen application manager APIs. Used to get app info and app running context on a Tizen device. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_app_manager -version: 0.2.5 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/tizen_app_manager +version: 0.2.6 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/tizen_audio_manager/CHANGELOG.md b/packages/tizen_audio_manager/CHANGELOG.md index f532e2dcc..3ad48efaf 100644 --- a/packages/tizen_audio_manager/CHANGELOG.md +++ b/packages/tizen_audio_manager/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 0.1.2 +* Update the repository URL to use the `main` branch. * Fix new lint warnings. * Update minimum Flutter and Dart version to 3.13 and 3.1. * Update code format. diff --git a/packages/tizen_audio_manager/pubspec.yaml b/packages/tizen_audio_manager/pubspec.yaml index 7e391f588..eb4a699f9 100644 --- a/packages/tizen_audio_manager/pubspec.yaml +++ b/packages/tizen_audio_manager/pubspec.yaml @@ -1,8 +1,8 @@ name: tizen_audio_manager description: A Flutter plugin that allows setting and getting volume level for different audio types as well as getting current playback type. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_audio_manager -version: 0.1.1 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/tizen_audio_manager +version: 0.1.2 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/tizen_bundle/CHANGELOG.md b/packages/tizen_bundle/CHANGELOG.md index 1a514a437..85d37e27e 100644 --- a/packages/tizen_bundle/CHANGELOG.md +++ b/packages/tizen_bundle/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 0.1.4 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 0.1.3 diff --git a/packages/tizen_bundle/pubspec.yaml b/packages/tizen_bundle/pubspec.yaml index 8ab6e7b35..b1d626d53 100644 --- a/packages/tizen_bundle/pubspec.yaml +++ b/packages/tizen_bundle/pubspec.yaml @@ -1,8 +1,8 @@ name: tizen_bundle description: Tizen data bundle APIs. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_bundle -version: 0.1.3 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/tizen_bundle +version: 0.1.4 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/tizen_log/CHANGELOG.md b/packages/tizen_log/CHANGELOG.md index df4c86036..5a509b215 100644 --- a/packages/tizen_log/CHANGELOG.md +++ b/packages/tizen_log/CHANGELOG.md @@ -1,5 +1,6 @@ -## NEXT +## 0.1.3 +* Update the repository URL to use the `main` branch. * Add regression integration tests. * Update minimum Flutter and Dart version to 3.13 and 3.1. * Fix new lint warnings. diff --git a/packages/tizen_log/pubspec.yaml b/packages/tizen_log/pubspec.yaml index 3fe1562bc..44db843ab 100644 --- a/packages/tizen_log/pubspec.yaml +++ b/packages/tizen_log/pubspec.yaml @@ -1,8 +1,8 @@ name: tizen_log description: A Flutter plugin which provides the ability to use Tizen dlog logging service. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_log -version: 0.1.2 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/tizen_log +version: 0.1.3 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/tizen_notification/CHANGELOG.md b/packages/tizen_notification/CHANGELOG.md index a9d3ad6e5..e64db2a4f 100644 --- a/packages/tizen_notification/CHANGELOG.md +++ b/packages/tizen_notification/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 0.2.2 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 0.2.1 diff --git a/packages/tizen_notification/pubspec.yaml b/packages/tizen_notification/pubspec.yaml index 5ab4bf091..c130eb1d0 100644 --- a/packages/tizen_notification/pubspec.yaml +++ b/packages/tizen_notification/pubspec.yaml @@ -1,8 +1,8 @@ name: tizen_notification description: Tizen notification APIs. Used to show and delete notifications on a Tizen device. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_notification -version: 0.2.1 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/tizen_notification +version: 0.2.2 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/tizen_package_manager/CHANGELOG.md b/packages/tizen_package_manager/CHANGELOG.md index 0597b3941..effcd8add 100644 --- a/packages/tizen_package_manager/CHANGELOG.md +++ b/packages/tizen_package_manager/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 0.4.4 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 0.4.3 diff --git a/packages/tizen_package_manager/pubspec.yaml b/packages/tizen_package_manager/pubspec.yaml index 0d2596292..9816c2555 100644 --- a/packages/tizen_package_manager/pubspec.yaml +++ b/packages/tizen_package_manager/pubspec.yaml @@ -1,8 +1,8 @@ name: tizen_package_manager description: Tizen package manager APIs. Used to get information about packages installed on a Tizen device. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_package_manager -version: 0.4.3 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/tizen_package_manager +version: 0.4.4 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/tizen_rpc_port/CHANGELOG.md b/packages/tizen_rpc_port/CHANGELOG.md index 2baafca79..faf3b0ead 100644 --- a/packages/tizen_rpc_port/CHANGELOG.md +++ b/packages/tizen_rpc_port/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 0.1.8 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 0.1.7 diff --git a/packages/tizen_rpc_port/pubspec.yaml b/packages/tizen_rpc_port/pubspec.yaml index f5f031d8f..11877c541 100644 --- a/packages/tizen_rpc_port/pubspec.yaml +++ b/packages/tizen_rpc_port/pubspec.yaml @@ -1,8 +1,8 @@ name: tizen_rpc_port description: Tizen RPC Port APIs. Used to make remote procedure calls between Tizen apps. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_rpc_port -version: 0.1.7 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/tizen_rpc_port +version: 0.1.8 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/tizen_window_manager/CHANGELOG.md b/packages/tizen_window_manager/CHANGELOG.md index 230d613c7..37b084b2f 100644 --- a/packages/tizen_window_manager/CHANGELOG.md +++ b/packages/tizen_window_manager/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 0.1.1 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 0.1.0 diff --git a/packages/tizen_window_manager/pubspec.yaml b/packages/tizen_window_manager/pubspec.yaml index e75043d9d..7e2733450 100644 --- a/packages/tizen_window_manager/pubspec.yaml +++ b/packages/tizen_window_manager/pubspec.yaml @@ -1,8 +1,8 @@ name: tizen_window_manager description: Tizen window APIs. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/tizen_window_manager -version: 0.1.0 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/tizen_window_manager +version: 0.1.1 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/url_launcher/CHANGELOG.md b/packages/url_launcher/CHANGELOG.md index ac8935451..c3de0a5ca 100644 --- a/packages/url_launcher/CHANGELOG.md +++ b/packages/url_launcher/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 2.1.6 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 2.1.5 diff --git a/packages/url_launcher/pubspec.yaml b/packages/url_launcher/pubspec.yaml index 8c07a9067..bf5b2a0ed 100644 --- a/packages/url_launcher/pubspec.yaml +++ b/packages/url_launcher/pubspec.yaml @@ -1,8 +1,8 @@ name: url_launcher_tizen description: Tizen implementation of the url_launcher plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/url_launcher -version: 2.1.5 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/url_launcher +version: 2.1.6 environment: sdk: ^3.6.0 diff --git a/packages/video_player/CHANGELOG.md b/packages/video_player/CHANGELOG.md index 0b7161c67..a2ace4150 100644 --- a/packages/video_player/CHANGELOG.md +++ b/packages/video_player/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 2.5.13 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 2.5.12 diff --git a/packages/video_player/pubspec.yaml b/packages/video_player/pubspec.yaml index 0ab437cb8..7d8f738eb 100644 --- a/packages/video_player/pubspec.yaml +++ b/packages/video_player/pubspec.yaml @@ -1,8 +1,8 @@ name: video_player_tizen description: Tizen implementation of the video_player plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/video_player -version: 2.5.12 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/video_player +version: 2.5.13 environment: sdk: ^3.7.0 diff --git a/packages/video_player_avplay/CHANGELOG.md b/packages/video_player_avplay/CHANGELOG.md index c2a649203..9ed8960be 100644 --- a/packages/video_player_avplay/CHANGELOG.md +++ b/packages/video_player_avplay/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.8.15 + +* Update the repository URL to use the `main` branch. + ## 0.8.14 * Update plusplayer diff --git a/packages/video_player_avplay/README.md b/packages/video_player_avplay/README.md index eb6dc74b3..dce344cd4 100644 --- a/packages/video_player_avplay/README.md +++ b/packages/video_player_avplay/README.md @@ -42,7 +42,7 @@ Note that `video_player_avplay` uses a compiled dynamic library, change the api- > |9.0|9.0| > |10.0|10.0| > -> When you build an application with this plugin, version-specific [dynamic libraries](https://github.com/flutter-tizen/plugins/tree/master/packages/video_player_avplay/tizen/lib/armel) are packaged together based on the api-version information in tizen-manifest.xml. +> When you build an application with this plugin, version-specific [dynamic libraries](https://github.com/flutter-tizen/plugins/tree/main/packages/video_player_avplay/tizen/lib/armel) are packaged together based on the api-version information in tizen-manifest.xml. > If you are planning to distribute an application that includes this plugin, you will need to build a TPK package for each TizenOS version (api-version in tizen-manifest.xml). Please refer to the [Samsung Developers](https://developer.samsung.com/smarttv/develop) for information on TizenOS versions by [TV model groups](https://developer.samsung.com/smarttv/develop/specifications/tv-model-groups.html). > > If you plan to distribute from TizenOS version 6.0 to 10.0, it should be packaged as follows. diff --git a/packages/video_player_avplay/pubspec.yaml b/packages/video_player_avplay/pubspec.yaml index e26f05c5a..c357b55db 100644 --- a/packages/video_player_avplay/pubspec.yaml +++ b/packages/video_player_avplay/pubspec.yaml @@ -1,8 +1,8 @@ name: video_player_avplay description: Flutter plugin for displaying inline video on Tizen TV devices. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/video_player_avplay -version: 0.8.14 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/video_player_avplay +version: 0.8.15 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/video_player_videohole/CHANGELOG.md b/packages/video_player_videohole/CHANGELOG.md index c01452c7f..bdbdb7ea8 100644 --- a/packages/video_player_videohole/CHANGELOG.md +++ b/packages/video_player_videohole/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.5.10 + +* Update the repository URL to use the `main` branch. + ## 0.5.9 * Adds compatibility with `http` 1.0 in example. diff --git a/packages/video_player_videohole/pubspec.yaml b/packages/video_player_videohole/pubspec.yaml index fefb4b06e..e040a4545 100644 --- a/packages/video_player_videohole/pubspec.yaml +++ b/packages/video_player_videohole/pubspec.yaml @@ -1,8 +1,8 @@ name: video_player_videohole description: Flutter plugin for displaying inline video on Tizen TV devices. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/video_player_videohole -version: 0.5.9 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/video_player_videohole +version: 0.5.10 environment: sdk: ">=3.1.0 <4.0.0" diff --git a/packages/wakelock_plus/CHANGELOG.md b/packages/wakelock_plus/CHANGELOG.md index 126bed00a..85dbd4bb6 100644 --- a/packages/wakelock_plus/CHANGELOG.md +++ b/packages/wakelock_plus/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 2.1.2 * Update integration tests. +* Update the repository URL to use the `main` branch. ## 2.1.1 diff --git a/packages/wakelock_plus/pubspec.yaml b/packages/wakelock_plus/pubspec.yaml index 4d2a19008..050fbdd0f 100644 --- a/packages/wakelock_plus/pubspec.yaml +++ b/packages/wakelock_plus/pubspec.yaml @@ -1,8 +1,8 @@ name: wakelock_plus_tizen description: Tizen implementation of the wakelock_plus plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/wakelock_plus -version: 2.1.1 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/wakelock_plus +version: 2.1.2 environment: sdk: ">=3.11.0 <4.0.0" diff --git a/packages/webview_flutter/CHANGELOG.md b/packages/webview_flutter/CHANGELOG.md index aa5a97dde..eef11ffed 100644 --- a/packages/webview_flutter/CHANGELOG.md +++ b/packages/webview_flutter/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.10.1 + +* Update the repository URL to use the `main` branch. + ## 0.10.0 * Update minimum supported SDK version to Flutter 3.32/Dart 3.8. diff --git a/packages/webview_flutter/pubspec.yaml b/packages/webview_flutter/pubspec.yaml index fc461b335..ccab53727 100644 --- a/packages/webview_flutter/pubspec.yaml +++ b/packages/webview_flutter/pubspec.yaml @@ -1,8 +1,8 @@ name: webview_flutter_tizen description: Tizen implementation of the webview_flutter plugin. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/webview_flutter -version: 0.10.0 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/webview_flutter +version: 0.10.1 environment: sdk: ^3.8.0 diff --git a/packages/webview_flutter_lwe/CHANGELOG.md b/packages/webview_flutter_lwe/CHANGELOG.md index 40c6806e5..ade1a7cf4 100644 --- a/packages/webview_flutter_lwe/CHANGELOG.md +++ b/packages/webview_flutter_lwe/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.5.4 + +* Update the repository URL to use the `main` branch. + ## 0.5.3 * Update lightweight web engine (1.5.1). diff --git a/packages/webview_flutter_lwe/pubspec.yaml b/packages/webview_flutter_lwe/pubspec.yaml index bc344b904..e4ff484d5 100644 --- a/packages/webview_flutter_lwe/pubspec.yaml +++ b/packages/webview_flutter_lwe/pubspec.yaml @@ -1,8 +1,8 @@ name: webview_flutter_lwe description: Tizen implementation of the webview_flutter plugin backed by Lightweight Web Engine. homepage: https://github.com/flutter-tizen/plugins -repository: https://github.com/flutter-tizen/plugins/tree/master/packages/webview_flutter_lwe -version: 0.5.3 +repository: https://github.com/flutter-tizen/plugins/tree/main/packages/webview_flutter_lwe +version: 0.5.4 environment: sdk: ^3.8.0 diff --git a/tools/pubspec.yaml b/tools/pubspec.yaml index 70e5e5ddf..779575720 100644 --- a/tools/pubspec.yaml +++ b/tools/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_tizen_plugin_tools description: Productivity utils for flutter-tizen/plugins. -repository: https://github.com/flutter-tizen/plugins/tree/master/tools +repository: https://github.com/flutter-tizen/plugins/tree/main/tools publish_to: "none" environment: