From 2a149de39b045013e3b9070333eee8ff873f88b0 Mon Sep 17 00:00:00 2001 From: protheeuz Date: Sat, 31 Jan 2026 18:05:50 +0700 Subject: [PATCH 1/3] chore: except in .gitignore --- .../local_storage_cache/example/.gitignore | 49 +++++++++++++ .../local_storage_cache/example/pubspec.lock | 68 ++++++++++++++++++- 2 files changed, 114 insertions(+), 3 deletions(-) create mode 100644 packages/local_storage_cache/example/.gitignore diff --git a/packages/local_storage_cache/example/.gitignore b/packages/local_storage_cache/example/.gitignore new file mode 100644 index 0000000..4a504d8 --- /dev/null +++ b/packages/local_storage_cache/example/.gitignore @@ -0,0 +1,49 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +**/doc/api/ +**/ios/Flutter/.last_build_id +.dart_tool/ +.flutter-plugins +.flutter-plugins-dependencies +.packages +.pub-cache/ +.pub/ +/build/ +pubspec.lock + +# Code coverage +coverage/ +*.lcov + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json + +# Android Studio will place build artifacts here +/android/app/debug +/android/app/profile +/android/app/release diff --git a/packages/local_storage_cache/example/pubspec.lock b/packages/local_storage_cache/example/pubspec.lock index 0af1337..2e26eb8 100644 --- a/packages/local_storage_cache/example/pubspec.lock +++ b/packages/local_storage_cache/example/pubspec.lock @@ -83,6 +83,11 @@ packages: description: flutter source: sdk version: "0.0.0" + flutter_web_plugins: + dependency: transitive + description: flutter + source: sdk + version: "0.0.0" intl: dependency: "direct main" description: @@ -130,12 +135,61 @@ packages: relative: true source: path version: "2.0.0" + local_storage_cache_android: + dependency: transitive + description: + name: local_storage_cache_android + sha256: d3f047a0d4ebf1922a4851b3bebf6f2b273fc23927100a479e9e3203e85333ca + url: "https://pub.dev" + source: hosted + version: "2.0.0" + local_storage_cache_ios: + dependency: transitive + description: + name: local_storage_cache_ios + sha256: "206ce02945dbef7f0a3786721cab1cd4e688b98ff32555024ccf942994537a3d" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + local_storage_cache_linux: + dependency: transitive + description: + name: local_storage_cache_linux + sha256: "3a8b5db07571239512461bc376bd2cdbbfeee35d966c8aa88da67a5a0f6908c9" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + local_storage_cache_macos: + dependency: transitive + description: + name: local_storage_cache_macos + sha256: e27e1bc10dc386f5823f0841fb09385744d11c92c76c490a7b174f357a723eb7 + url: "https://pub.dev" + source: hosted + version: "2.0.0" local_storage_cache_platform_interface: dependency: transitive description: - path: "../../local_storage_cache_platform_interface" - relative: true - source: path + name: local_storage_cache_platform_interface + sha256: "5744f5b803cc4e8b615dd5e674385b6ef8d9fe46962eb03dacf09f00704864d5" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + local_storage_cache_web: + dependency: transitive + description: + name: local_storage_cache_web + sha256: "79092e4bc70f369b953499e0f1013d208101569e4f79bff5446c954ec1367127" + url: "https://pub.dev" + source: hosted + version: "2.0.0" + local_storage_cache_windows: + dependency: transitive + description: + name: local_storage_cache_windows + sha256: "16fa0ddb39510748e95fad56b9288a20ce6c1e10ba34fb91f214fcacd3ddcf8c" + url: "https://pub.dev" + source: hosted version: "2.0.0" matcher: dependency: transitive @@ -310,6 +364,14 @@ packages: url: "https://pub.dev" source: hosted version: "15.0.0" + web: + dependency: transitive + description: + name: web + sha256: "868d88a33d8a87b18ffc05f9f030ba328ffefba92d6c127917a2ba740f9cfe4a" + url: "https://pub.dev" + source: hosted + version: "1.1.1" xdg_directories: dependency: transitive description: From b1367188adf73df9d354a6b4d2133fd17fedfff5 Mon Sep 17 00:00:00 2001 From: protheeuz Date: Sat, 31 Jan 2026 18:07:47 +0700 Subject: [PATCH 2/3] docs: rename dependencies version with for actual compatible dependencies installed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4139845..59f6d37 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Add the dependency in your `pubspec.yaml` file: ```yaml dependencies: - local_storage_cache: ^2.0.0 + local_storage_cache: ^ ``` Then run: From f5c3e288ac844d85f51765b47ea21ec39b94f4f6 Mon Sep 17 00:00:00 2001 From: Iqbal F Date: Sat, 31 Jan 2026 18:11:22 +0700 Subject: [PATCH 3/3] Update README.md this update is suggested by `gemini-code-review` Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 59f6d37..ad0eb27 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Add the dependency in your `pubspec.yaml` file: ```yaml dependencies: - local_storage_cache: ^ + local_storage_cache: ^2.0.1 # Check pub.dev for the latest version ``` Then run: