From dfa07c5968f23ca6342e143aa56373e48109847d Mon Sep 17 00:00:00 2001 From: faithoflifedev Date: Thu, 29 Aug 2024 20:45:19 -0400 Subject: [PATCH] published --- packages/google_vision/CHANGELOG.md | 4 ++++ packages/google_vision/README.md | 7 +++++-- packages/google_vision/lib/meta.dart | 2 +- packages/google_vision_flutter/CHANGELOG.md | 5 +++++ packages/google_vision_flutter/README.md | 2 +- packages/google_vision_flutter/lib/meta.dart | 2 +- 6 files changed, 17 insertions(+), 5 deletions(-) diff --git a/packages/google_vision/CHANGELOG.md b/packages/google_vision/CHANGELOG.md index e808e31..edbbce6 100644 --- a/packages/google_vision/CHANGELOG.md +++ b/packages/google_vision/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.3.0+4 + +* readme update + ## 1.3.0+3 * funding diff --git a/packages/google_vision/README.md b/packages/google_vision/README.md index eb1ba7e..a8a41f4 100644 --- a/packages/google_vision/README.md +++ b/packages/google_vision/README.md @@ -1,5 +1,9 @@ # Google Vision Images REST API Client + +[![pub package](https://img.shields.io/pub/v/google_vision.svg)](https://pub.dartlang.org/packages/google_vision) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) + Native [Dart](https://dart.dev/) package that integrates Google Vision features, including image labeling, face, logo, and landmark detection, optical character recognition (OCR), and detection of explicit content, into applications. - [Google Vision Images REST API Client](#google-vision-images-rest-api-client) @@ -21,7 +25,6 @@ Native [Dart](https://dart.dev/) package that integrates Google Vision features, ## Project Status -[![pub package](https://img.shields.io/pub/v/google_vision.svg)](https://pub.dartlang.org/packages/google_vision) [![Build Status](https://github.com/faithoflifedev/google_vision/workflows/Dart/badge.svg)](https://github.com/faithoflifedev/google_vision/actions) [![github last commit](https://shields.io/github/last-commit/faithoflifedev/google_vision)](https://shields.io/github/last-commit/faithoflifedev/google_vision) [![github build](https://img.shields.io/github/actions/workflow/status/faithoflifedev/google_vision_workspace/dart.yaml?branch=main)](https://shields.io/github/workflow/status/faithoflifedev/google_vision/Dart) [![github issues](https://shields.io/github/issues/faithoflifedev/google_vision)](https://shields.io/github/issues/faithoflifedev/google_vision) @@ -51,7 +54,7 @@ To use this package, add the dependency to your `pubspec.yaml` file: ```yaml dependencies: ... - google_vision: ^1.3.0+3 + google_vision: ^1.3.0+4 ``` ### Obtaining Authentication/Authorization Credentials diff --git a/packages/google_vision/lib/meta.dart b/packages/google_vision/lib/meta.dart index 104cb6a..c9d0049 100644 --- a/packages/google_vision/lib/meta.dart +++ b/packages/google_vision/lib/meta.dart @@ -6,4 +6,4 @@ library meta; import 'dart:convert' show json; final pubSpec = json.decode( - '{"name":"google_vision","version":"1.3.0+3","homepage":"https://github.com/faithoflifedev/google_vision/tree/main/packages/google_vision","environment":{"sdk":">=3.2.0 <4.0.0"},"description":"Allows you to add Google Visions image labeling, face, logo, and landmark detection, OCR, and detection of explicit content, into cross platform applications.","dependencies":{"args":"^2.5.0","collection":"^1.18.0","crypto_keys_plus":"^0.4.0","dio":"^5.6.0","http":"^1.2.2","image":"^4.1.7","jose_plus":"^0.4.6","json_annotation":"^4.9.0","loggy":"^2.0.3","mime":"^1.0.6","retrofit":"^4.2.0","universal_io":"^2.2.2"},"dev_dependencies":{"build_runner":"^2.4.11","grinder":"^0.9.5","json_serializable":"^6.8.0","lints":"^4.0.0","publish_tools":"^1.0.0+4","retrofit_generator":"^8.2.0"},"executables":{"vision":""},"repository":"https://github.com/faithoflifedev/google_vision","funding":["https://www.buymeacoffee.com/faithoflif2"]}'); + '{"name":"google_vision","version":"1.3.0+4","homepage":"https://github.com/faithoflifedev/google_vision/tree/main/packages/google_vision","environment":{"sdk":">=3.2.0 <4.0.0"},"description":"Allows you to add Google Visions image labeling, face, logo, and landmark detection, OCR, and detection of explicit content, into cross platform applications.","dependencies":{"args":"^2.5.0","collection":"^1.18.0","crypto_keys_plus":"^0.4.0","dio":"^5.6.0","http":"^1.2.2","image":"^4.1.7","jose_plus":"^0.4.6","json_annotation":"^4.9.0","loggy":"^2.0.3","mime":"^1.0.6","retrofit":"^4.2.0","universal_io":"^2.2.2"},"dev_dependencies":{"build_runner":"^2.4.11","grinder":"^0.9.5","json_serializable":"^6.8.0","lints":"^4.0.0","publish_tools":"^1.0.0+4","retrofit_generator":"^8.2.0"},"executables":{"vision":""},"repository":"https://github.com/faithoflifedev/google_vision","funding":["https://www.buymeacoffee.com/faithoflif2"]}'); diff --git a/packages/google_vision_flutter/CHANGELOG.md b/packages/google_vision_flutter/CHANGELOG.md index 3326515..4b55fa4 100644 --- a/packages/google_vision_flutter/CHANGELOG.md +++ b/packages/google_vision_flutter/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.3.0+4 + +* updated example +* simplified FutureBuilder + ## 1.3.0+3 * funding diff --git a/packages/google_vision_flutter/README.md b/packages/google_vision_flutter/README.md index d3757e7..976a722 100644 --- a/packages/google_vision_flutter/README.md +++ b/packages/google_vision_flutter/README.md @@ -28,7 +28,7 @@ To use this package, add the dependency to your `pubspec.yaml` file: ```yaml dependencies: ... - google_vision_flutter: ^1.3.0+3 + google_vision_flutter: ^1.3.0+4 ``` diff --git a/packages/google_vision_flutter/lib/meta.dart b/packages/google_vision_flutter/lib/meta.dart index 903ea29..18112de 100644 --- a/packages/google_vision_flutter/lib/meta.dart +++ b/packages/google_vision_flutter/lib/meta.dart @@ -6,4 +6,4 @@ library meta; import 'dart:convert' show json; final pubSpec = json.decode( - '{"name":"google_vision_flutter","version":"1.3.0+3","homepage":"https://github.com/faithoflifedev/google_vision/tree/main/packages/google_vision_flutter","environment":{"sdk":">=3.2.0 <4.0.0","flutter":">=3.16.0"},"description":"Add Google Visions image labeling, face, logo, and landmark detection into your Flutter applications.","dependencies":{"flutter_image_converter":"^0.3.3","google_vision":"^1.3.0+2","flutter":{"sdk":"flutter"}},"dev_dependencies":{"flutter_lints":"^4.0.0","grinder":"^0.9.5","publish_tools":"^1.0.0+4"},"repository":"https://github.com/faithoflifedev/google_vision","funding":["https://www.buymeacoffee.com/faithoflif2"]}'); + '{"name":"google_vision_flutter","version":"1.3.0+4","homepage":"https://github.com/faithoflifedev/google_vision/tree/main/packages/google_vision_flutter","environment":{"sdk":">=3.2.0 <4.0.0","flutter":">=3.16.0"},"description":"Add Google Visions image labeling, face, logo, and landmark detection into your Flutter applications.","dependencies":{"flutter_image_converter":"^0.3.3","google_vision":"^1.3.0+2","flutter":{"sdk":"flutter"}},"dev_dependencies":{"flutter_lints":"^4.0.0","grinder":"^0.9.5","publish_tools":"^1.0.0+4"},"repository":"https://github.com/faithoflifedev/google_vision","funding":["https://www.buymeacoffee.com/faithoflif2"]}');