Skip to content

Commit

Permalink
chore: update links (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnurmi authored Jul 17, 2023
1 parent 154593c commit e679e3b
Show file tree
Hide file tree
Showing 17 changed files with 37 additions and 35 deletions.
6 changes: 3 additions & 3 deletions packages/safe_change_notifier/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

[![pub](https://img.shields.io/pub/v/safe_change_notifier.svg)](https://pub.dev/packages/safe_change_notifier)
[![license: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://opensource.org/licenses/MIT)
![CI](https://github.com/ubuntu-flutter-community/safe_change_notifier/workflows/CI/badge.svg)
[![codecov](https://codecov.io/gh/ubuntu-flutter-community/safe_change_notifier/branch/main/graph/badge.svg)](https://codecov.io/gh/ubuntu-flutter-community/safe_change_notifier)
[![CI](https://github.com/canonical/ubuntu-flutter-plugins/workflows/CI/badge.svg)](https://github.com/canonical/ubuntu-flutter-plugins/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/canonical/ubuntu-flutter-plugins/branch/main/graph/badge.svg)](https://codecov.io/gh/canonical/ubuntu-flutter-plugins)

Safe drop-in replacements for Flutter's `ChangeNotifier` and `ValueNotifier`
that make `notifyListeners()` a no-op, rather than an error, after disposal.

![safe_change_notifier](https://github.com/ubuntu-flutter-community/safe_change_notifier/raw/main/images/safe_change_notifier.png)
![safe_change_notifier](https://github.com/canonical/ubuntu-flutter-plugins/raw/main/packages/safe_change_notifier/images/safe_change_notifier.png)
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// Safe drop-in replacements for Flutter's `ChangeNotifier` and `ValueNotifier`
/// that make `notifyListeners()` a no-op, rather than an error, after disposal.
///
/// ![safe_change_notifier](https://github.com/ubuntu-flutter-community/safe_change_notifier/raw/main/images/safe_change_notifier.png)
/// ![safe_change_notifier](https://github.com/canonical/ubuntu-flutter-plugins/raw/main/packages/safe_change_notifier/images/safe_change_notifier.png)
library safe_change_notifier;

export 'src/change_notifier.dart';
Expand Down
2 changes: 1 addition & 1 deletion packages/safe_change_notifier/lib/src/change_notifier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ import 'notifier_mixin.dart';
/// A safe drop-in replacement for Flutter's `ChangeNotifier` that makes
/// `notifyListeners()` a no-op, rather than an error, after its disposal.
///
/// ![safe_change_notifier](https://github.com/ubuntu-flutter-community/safe_change_notifier/raw/main/images/safe_change_notifier.png)
/// ![safe_change_notifier](https://github.com/canonical/ubuntu-flutter-plugins/raw/main/packages/safe_change_notifier/images/safe_change_notifier.png)
class SafeChangeNotifier extends ChangeNotifier with SafeNotifierMixin {}
2 changes: 1 addition & 1 deletion packages/safe_change_notifier/lib/src/notifier_mixin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import 'package:flutter/foundation.dart';
/// A safe mixin for Flutter's `ChangeNotifier` and `ValueNotifier` that makes
/// `notifyListeners()` a no-op, rather than an error, after disposal.
///
/// ![safe_change_notifier](https://github.com/ubuntu-flutter-community/safe_change_notifier/raw/main/images/safe_change_notifier.png)
/// ![safe_change_notifier](https://github.com/canonical/ubuntu-flutter-plugins/raw/main/packages/safe_change_notifier/images/safe_change_notifier.png)
mixin SafeNotifierMixin on ChangeNotifier {
var _isDisposed = false;

Expand Down
2 changes: 1 addition & 1 deletion packages/safe_change_notifier/lib/src/state_notifier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:state_notifier/state_notifier.dart';
/// A safe drop-in replacement for Riverpod's `StateNotifier` that makes
/// state changes no-op, rather than an error, after its disposal.
///
/// ![safe_change_notifier](https://github.com/ubuntu-flutter-community/safe_change_notifier/raw/main/images/safe_change_notifier.png)
/// ![safe_change_notifier](https://github.com/canonical/ubuntu-flutter-plugins/raw/main/packages/safe_change_notifier/images/safe_change_notifier.png)
class SafeStateNotifier<T> extends StateNotifier<T> {
SafeStateNotifier(super.value);

Expand Down
2 changes: 1 addition & 1 deletion packages/safe_change_notifier/lib/src/value_notifier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import 'notifier_mixin.dart';
/// A safe drop-in replacement for Flutter's `ValueNotifier` that makes
/// `notifyListeners()` a no-op, rather than an error, after its disposal.
///
/// ![safe_change_notifier](https://github.com/ubuntu-flutter-community/safe_change_notifier/raw/main/images/safe_change_notifier.png)
/// ![safe_change_notifier](https://github.com/canonical/ubuntu-flutter-plugins/raw/main/packages/safe_change_notifier/images/safe_change_notifier.png)
class SafeValueNotifier<T> extends ValueNotifier<T> with SafeNotifierMixin {
SafeValueNotifier(super.value);
}
6 changes: 3 additions & 3 deletions packages/safe_change_notifier/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: safe_change_notifier
description: |
A safe drop-in replacement for Flutter's ChangeNotifier, that makes
notifyListeners() a no-op, rather than an error, after its disposal.
homepage: https://github.com/canonical/ubuntu-flutter-plugins
repository: https://github.com/canonical/ubuntu-flutter-plugins/tree/main/packages/safe_change_notifier
issue_tracker: https://github.com/canonical/ubuntu-flutter-plugins/issues
version: 0.3.0
homepage: https://github.com/ubuntu-flutter-community/safe_change_notifier
repository: https://github.com/ubuntu-flutter-community/safe_change_notifier
issue_tracker: https://github.com/ubuntu-flutter-community/safe_change_notifier/issues

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down
5 changes: 3 additions & 2 deletions packages/ubuntu_flavor/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Ubuntu Flavor

[![pub](https://img.shields.io/pub/v/ubuntu_flavor.svg)](https://pub.dev/packages/ubuntu_flavor)
[![CI](https://github.com/ubuntu-flutter-community/ubuntu_flavor/workflows/CI/badge.svg)](https://github.com/ubuntu-flutter-community/ubuntu_flavor/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/ubuntu-flutter-community/ubuntu_flavor/branch/main/graph/badge.svg)](https://codecov.io/gh/ubuntu-flutter-community/ubuntu_flavor)
[![license: MPL](https://img.shields.io/badge/license-MPL-magenta.svg)](https://opensource.org/licenses/MPL-2.0)
[![CI](https://github.com/canonical/ubuntu-flutter-plugins/workflows/CI/badge.svg)](https://github.com/canonical/ubuntu-flutter-plugins/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/canonical/ubuntu-flutter-plugins/branch/main/graph/badge.svg)](https://codecov.io/gh/canonical/ubuntu-flutter-plugins)

Detect Ubuntu flavor.

Expand Down
6 changes: 3 additions & 3 deletions packages/ubuntu_flavor/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: ubuntu_flavor
description: Detect Ubuntu flavor
homepage: https://github.com/ubuntu-flutter-community/ubuntu_flavor
repository: https://github.com/ubuntu-flutter-community/ubuntu_flavor
issue_tracker: https://github.com/ubuntu-flutter-community/ubuntu_flavor/issues
homepage: https://github.com/canonical/ubuntu-flutter-plugins
repository: https://github.com/canonical/ubuntu-flutter-plugins/tree/main/packages/ubuntu_flavor
issue_tracker: https://github.com/canonical/ubuntu-flutter-plugins/issues
version: 0.2.0

environment:
Expand Down
5 changes: 3 additions & 2 deletions packages/ubuntu_service/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Ubuntu Service

[![pub](https://img.shields.io/pub/v/ubuntu_service.svg)](https://pub.dev/packages/ubuntu_service)
[![CI](https://github.com/ubuntu-flutter-community/ubuntu_service/workflows/CI/badge.svg)](https://github.com/ubuntu-flutter-community/ubuntu_service/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/ubuntu-flutter-community/ubuntu_service/branch/main/graph/badge.svg)](https://codecov.io/gh/ubuntu-flutter-community/ubuntu_service)
[![license: MPL](https://img.shields.io/badge/license-MPL-magenta.svg)](https://opensource.org/licenses/MPL-2.0)
[![CI](https://github.com/canonical/ubuntu-flutter-plugins/workflows/CI/badge.svg)](https://github.com/canonical/ubuntu-flutter-plugins/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/canonical/ubuntu-flutter-plugins/branch/main/graph/badge.svg)](https://codecov.io/gh/canonical/ubuntu-flutter-plugins)

Simple service locator API based on [GetIt](https://pub.dev/packages/get_it).

Expand Down
6 changes: 3 additions & 3 deletions packages/ubuntu_service/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: ubuntu_service
description: Simple service locator API based on GetIt.
homepage: https://github.com/ubuntu-flutter-community/ubuntu_service
repository: https://github.com/ubuntu-flutter-community/ubuntu_service
issue_tracker: https://github.com/ubuntu-flutter-community/ubuntu_service/issues
homepage: https://github.com/canonical/ubuntu-flutter-plugins
repository: https://github.com/canonical/ubuntu-flutter-plugins/tree/main/packages/ubuntu_service
issue_tracker: https://github.com/canonical/ubuntu-flutter-plugins/issues
version: 0.2.3

environment:
Expand Down
6 changes: 3 additions & 3 deletions packages/wizard_router/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

[![pub](https://img.shields.io/pub/v/wizard_router.svg)](https://pub.dev/packages/wizard_router)
[![license: BSD](https://img.shields.io/badge/license-BSD-yellow.svg)](https://opensource.org/licenses/BSD-3-Clause)
![CI](https://github.com/ubuntu-flutter-community/wizard_router/workflows/CI/badge.svg)
[![codecov](https://codecov.io/gh/ubuntu-flutter-community/wizard_router/branch/main/graph/badge.svg?token=MrjLartk0G)](https://codecov.io/gh/ubuntu-flutter-community/wizard_router)
[![CI](https://github.com/canonical/ubuntu-flutter-plugins/workflows/CI/badge.svg)](https://github.com/canonical/ubuntu-flutter-plugins/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/canonical/ubuntu-flutter-plugins/branch/main/graph/badge.svg)](https://codecov.io/gh/canonical/ubuntu-flutter-plugins)

[wizard_router](https://pub.dev/packages/wizard_router) provides routing for
classic linear wizards in a way that it eliminates dependencies between wizard
pages. Wizard pages can request the next or previous page without knowing or
caring what is the next or the previous wizard page. Thus, adding, removing, or
re-ordering pages does not cause changes in existing pages.

![wizard_router](https://github.com/ubuntu-flutter-community/wizard_router/raw/main/images/wizard_router.png)
![wizard_router](https://github.com/canonical/ubuntu-flutter-plugins/raw/main/packages/wizard_router/images/wizard_router.png)

## Usage

Expand Down
2 changes: 1 addition & 1 deletion packages/wizard_router/lib/src/wizard.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ part 'controller.dart';
/// previous wizard page. Thus, adding, removing, or re-ordering pages does not
/// cause changes in existing pages.
///
/// ![wizard_router](https://github.com/ubuntu-flutter-community/wizard_router/raw/main/images/wizard_router.png)
/// ![wizard_router](https://github.com/canonical/ubuntu-flutter-plugins/raw/main/packages/wizard_router/images/wizard_router.png)
///
/// ## Usage
///
Expand Down
2 changes: 1 addition & 1 deletion packages/wizard_router/lib/wizard_router.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/// previous wizard page. Thus, adding, removing, or re-ordering pages does not
/// cause changes in existing pages.
///
/// ![wizard_router](https://github.com/ubuntu-flutter-community/wizard_router/raw/main/images/wizard_router.png)
/// ![wizard_router](https://github.com/canonical/ubuntu-flutter-plugins/raw/main/packages/wizard_router/images/wizard_router.png)
library wizard_router;

export 'src/exception.dart';
Expand Down
6 changes: 3 additions & 3 deletions packages/wizard_router/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: wizard_router
description: >-
Routing for linear wizards. No dependencies between pages. Pages merely
request the next page. Routes and conditions defined in a central place.
homepage: https://github.com/ubuntu-flutter-community/wizard_router
repository: https://github.com/ubuntu-flutter-community/wizard_router
issue_tracker: https://github.com/ubuntu-flutter-community/wizard_router/issues
homepage: https://github.com/canonical/ubuntu-flutter-plugins
repository: https://github.com/canonical/ubuntu-flutter-plugins/tree/main/packages/wizard_router
issue_tracker: https://github.com/canonical/ubuntu-flutter-plugins/issues
version: 1.0.2

environment:
Expand Down
6 changes: 3 additions & 3 deletions packages/xdg_icons/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[![pub](https://img.shields.io/pub/v/xdg_icons.svg)](https://pub.dev/packages/xdg_icons)
[![license: MPL](https://img.shields.io/badge/license-MPL-magenta.svg)](https://opensource.org/licenses/MPL-2.0)
[![CI](https://github.com/ubuntu-flutter-community/xdg_icons/actions/workflows/ci.yaml/badge.svg)](https://github.com/ubuntu-flutter-community/xdg_icons/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/ubuntu-flutter-community/xdg_icons/branch/main/graph/badge.svg?token=kH74iDZapj)](https://codecov.io/gh/ubuntu-flutter-community/xdg_icons)
[![CI](https://github.com/canonical/ubuntu-flutter-plugins/workflows/CI/badge.svg)](https://github.com/canonical/ubuntu-flutter-plugins/actions/workflows/ci.yaml)
[![codecov](https://codecov.io/gh/canonical/ubuntu-flutter-plugins/branch/main/graph/badge.svg)](https://codecov.io/gh/canonical/ubuntu-flutter-plugins)

[XDG theme icons](https://specifications.freedesktop.org/icon-theme-spec/icon-theme-spec-latest.html) for Flutter.

Expand All @@ -14,4 +14,4 @@ XdgIcon(
)
```

![XDG Icons](https://raw.githubusercontent.com/ubuntu-flutter-community/xdg_icons/main/images/xdg_icons.png "XDG Icons")
![XDG Icons](https://raw.githubusercontent.com/canonical/ubuntu-flutter-plugins/main/packages/xdg_icons/images/xdg_icons.png "XDG Icons")
6 changes: 3 additions & 3 deletions packages/xdg_icons/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: xdg_icons
description: XDG theme icons for Flutter.
homepage: https://github.com/ubuntu-flutter-community/xdg_icons
repository: https://github.com/ubuntu-flutter-community/xdg_icons
issue_tracker: https://github.com/ubuntu-flutter-community/xdg_icons/issues
homepage: https://github.com/canonical/ubuntu-flutter-plugins
repository: https://github.com/canonical/ubuntu-flutter-plugins/tree/main/packages/xdg_icons
issue_tracker: https://github.com/canonical/ubuntu-flutter-plugins/issues
version: 0.0.1

environment:
Expand Down

0 comments on commit e679e3b

Please sign in to comment.