Skip to content

Commit

Permalink
4.16.1
Browse files Browse the repository at this point in the history
Took 38 minutes
  • Loading branch information
Drawner committed May 28, 2024
1 parent 2c5293b commit b9546b7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

## 4.16.1
May 27, 2024
- Cat and Bird images now come from https:\\api.sefinek.net

## 4.16.0
May 26, 2024
- The function, runAsync(), is *deprecated*.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ class _RandomBirdState extends ImageAPIStateX<RandomBird> {
_RandomBirdState()
: super(
controller: BirdController(),
message: 'message',
uri: Uri(
scheme: 'https',
host: 'shibe.online',
path: 'api/birds',
host: 'api.sefinek.net',
path: 'api/v2/random/animal/bird',
),
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,11 @@ class _RandomCatState extends ImageAPIStateX<RandomCat> {
_RandomCatState()
: super(
controller: CatController(),
// uri: Uri(
// scheme: 'https',
// host: 'aws.random.cat',
// path: 'meow',
// ),
message: 'message',
uri: Uri(
scheme: 'https',
host: 'shibe.online',
path: 'api/cats',
host: 'api.sefinek.net',
path: 'api/v2/random/animal/cat',
),
message: 'file',
);
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: state_extended
description: This class extends the capabilities of Flutter's State class and includes a controller.
version: 4.16.0
version: 4.16.1
homepage: https://www.andrioussolutions.com
repository: https://github.com/AndriousSolutions/state_extended

Expand Down

0 comments on commit b9546b7

Please sign in to comment.