Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
[![Build Status](https://github.com/mathtechstudio/local-storage-cache/actions/workflows/code-integration.yml/badge.svg)](https://github.com/mathtechstudio/local-storage-cache/actions/workflows/code-integration.yml)
[![Code Coverage](https://codecov.io/gh/mathtechstudio/local-storage-cache/graph/badge.svg)](https://codecov.io/gh/mathtechstudio/local-storage-cache)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
![Platforms](https://img.shields.io/badge/platforms-Android%20%7C%20iOS%20%7C%20macOS%20%7C%20Windows-informational)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The new platforms badge is incomplete. The package description on line 9 mentions support for "Android, iOS, macOS, Windows, Linux, and Web", but the badge is missing "Linux" and "Web". To avoid confusion, the badge should reflect all supported platforms.

Suggested change
![Platforms](https://img.shields.io/badge/platforms-Android%20%7C%20iOS%20%7C%20macOS%20%7C%20Windows-informational)
![Platforms](https://img.shields.io/badge/platforms-Android%20%7C%20iOS%20%7C%20macOS%20%7C%20Windows%20%7C%20Linux%20%7C%20Web-informational)


A comprehensive Flutter package for local storage and caching with advanced features including encryption, multi-space architecture, automatic schema migration, and high-performance query capabilities. Supports Android, iOS, macOS, Windows, Linux, and Web.

Expand Down Expand Up @@ -216,7 +217,7 @@ Contributions are welcome. To set up your development environment:
1. Clone the repository:

```bash
git clone https://github.com/protheeuz/local-storage-cache.git
git clone https://github.com/mathtechstudio/local-storage-cache.git
cd local-storage-cache
```

Expand Down Expand Up @@ -288,7 +289,7 @@ This project is licensed under the MIT License. See the [LICENSE](LICENSE) file

## Support

- Report issues on [GitHub Issues](https://github.com/protheeuz/local-storage-cache/issues)
- Report issues on [GitHub Issues](https://github.com/mathtechstudio/local-storage-cache/issues)
- View the [CHANGELOG](CHANGELOG.md) for version history

## Acknowledgments
Expand Down
4 changes: 2 additions & 2 deletions packages/local_storage_cache/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: local_storage_cache
description: A comprehensive Flutter package for managing local storage and caching with advanced features like encryption, TTL, multi-space architecture, and more.
version: 2.0.0
publish_to: none
homepage: https://github.com/protheeuz/local-storage-cache
repository: https://github.com/protheeuz/local-storage-cache
homepage: https://github.com/mathtechstudio/local-storage-cache
repository: https://github.com/mathtechstudio/local-storage-cache

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/local_storage_cache_android/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: local_storage_cache_android
description: Android implementation of the local_storage_cache plugin.
version: 2.0.0
publish_to: none
homepage: https://github.com/protheeuz/local-storage-cache
homepage: https://github.com/mathtechstudio/local-storage-cache

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/local_storage_cache_ios/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: local_storage_cache_ios
description: iOS implementation of the local_storage_cache plugin.
version: 2.0.0
publish_to: none
homepage: https://github.com/protheeuz/local-storage-cache
homepage: https://github.com/mathtechstudio/local-storage-cache

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/local_storage_cache_linux/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: local_storage_cache_linux
description: Linux implementation of the local_storage_cache plugin.
version: 2.0.0
publish_to: none
homepage: https://github.com/protheeuz/local-storage-cache
homepage: https://github.com/mathtechstudio/local-storage-cache

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/local_storage_cache_macos/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: local_storage_cache_macos
description: macOS implementation of the local_storage_cache plugin.
version: 2.0.0
publish_to: none
homepage: https://github.com/protheeuz/local-storage-cache
homepage: https://github.com/mathtechstudio/local-storage-cache

resolution: workspace

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: local_storage_cache_platform_interface
description: A common platform interface for the local_storage_cache plugin.
version: 2.0.0
homepage: https://github.com/protheeuz/local-storage-cache
homepage: https://github.com/mathtechstudio/local-storage-cache

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/local_storage_cache_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: local_storage_cache_web
description: Web implementation of the local_storage_cache plugin.
version: 2.0.0
publish_to: none
homepage: https://github.com/protheeuz/local-storage-cache
homepage: https://github.com/mathtechstudio/local-storage-cache

resolution: workspace

Expand Down
2 changes: 1 addition & 1 deletion packages/local_storage_cache_windows/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: local_storage_cache_windows
description: Windows implementation of the local_storage_cache plugin.
version: 2.0.0
publish_to: none
homepage: https://github.com/protheeuz/local-storage-cache
homepage: https://github.com/mathtechstudio/local-storage-cache

resolution: workspace

Expand Down
Loading