Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add topics to packages #1910

Merged
merged 7 commits into from
Jul 31, 2023
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
8 changes: 7 additions & 1 deletion dio/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
name: dio
version: 5.3.0

description: |
A powerful HTTP networking package,
supports Interceptors,
Aborting and canceling a request,
Custom adapters, Transformers, etc.
topics:
- dio
- http
- network
- interceptor
ueman marked this conversation as resolved.
Show resolved Hide resolved
- middleware
homepage: https://github.com/cfug/dio
repository: https://github.com/cfug/dio/blob/main/dio
issue_tracker: https://github.com/cfug/dio/issues
version: 5.3.0

environment:
sdk: '>=2.15.0 <3.0.0'
Expand Down
4 changes: 2 additions & 2 deletions plugins/cookie_manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

[![Pub](https://img.shields.io/pub/v/dio_cookie_manager.svg)](https://pub.dev/packages/dio_cookie_manager)

A cookie manager for [dio](https://github.com/cfug/dio).
A cookie manager combines cookie_jar and dio, based on the interceptor algorithm.

## Getting Started

### Install

```yaml
dependencies:
dio_cookie_manager: ^2.0.0 # latest version
dio_cookie_manager: ^latest-version
```

### Usage
Expand Down
9 changes: 8 additions & 1 deletion plugins/cookie_manager/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: dio_cookie_manager
description: A cookie manager combines cookie_jar and dio, based on the interceptor algorithm.
version: 3.1.0

description: A cookie manager combines cookie_jar and dio, based on the interceptor algorithm.
topics:
- dio
- cookie
- network
- storage
- persistence
homepage: https://github.com/cfug/dio
repository: https://github.com/cfug/dio/blob/main/plugins/cookie_manager
issue_tracker: https://github.com/cfug/dio/issues
Expand Down
2 changes: 1 addition & 1 deletion plugins/http2_adapter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Pub](https://img.shields.io/pub/v/dio_http2_adapter.svg)](https://pub.dev/packages/dio_http2_adapter)

An HTTP/2 adapter for [dio](https://github.com/cfug/dio).
An adapter that combines HTTP/2 and dio. Supports reusing connections, header compression, etc.

## Getting Started

Expand Down
8 changes: 7 additions & 1 deletion plugins/http2_adapter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: dio_http2_adapter
description: An adapter that combines HTTP/2 and dio. Supports reuse connections, header compression, etc.
version: 2.3.1

description: An adapter that combines HTTP/2 and dio. Supports reusing connections, header compression, etc.
topics:
- dio
- http2
- native
kuhnroyal marked this conversation as resolved.
Show resolved Hide resolved
- network
homepage: https://github.com/cfug/dio
repository: https://github.com/cfug/dio/blob/main/plugins/http2_adapter
issue_tracker: https://github.com/cfug/dio/issues
Expand Down
9 changes: 8 additions & 1 deletion plugins/native_dio_adapter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: native_dio_adapter
description: A client for dio which makes use of cupertino_http and cronet_http to delegate HTTP requests to the native platform.
version: 1.0.0+1

description: A client for dio which makes use of cupertino_http and cronet_http to delegate HTTP requests to the native platform.
topics:
- dio
- http
- native
- network
- cronet
homepage: https://github.com/cfug/dio
repository: https://github.com/cfug/dio/blob/main/plugins/native_dio_adapter
issue_tracker: https://github.com/cfug/dio/issues
Expand Down
Loading