Skip to content

Commit

Permalink
release: 0.9.6 (#197)
Browse files Browse the repository at this point in the history
* build: update dependencies

* chore: add TestFlight link for macOS

* release: 0.9.6
  • Loading branch information
poppingmoon authored May 28, 2024
1 parent 07a3b08 commit e684f47
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ A [Misskey](https://github.com/misskey-dev/misskey) client app forked from [Miri

| Android | iOS | Windows | macOS | Linux |
| ----------------- | ------------------------ | ------------------------ | ------------------------ | -------------- |
| [F-Droid][fdroid] | [TestFlight][testflight] | [EXE installer][release] | [DMG Installer][release] | [TAR][release] |
| [APK][release] | [IPA][release] | [ZIP][release] | | |
| [F-Droid][fdroid] | [TestFlight][testflight] | [EXE installer][release] | [TestFlight][testflight] | [TAR][release] |
| [APK][release] | [IPA][release] | [ZIP][release] | [DMG Installer][release] | |


## Icon
Expand Down
24 changes: 12 additions & 12 deletions lib/provider/api/antennas_notifier_provider.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ class AntennasNotifier extends _$AntennasNotifier {
keywords: keywords ?? antenna.keywords,
excludeKeywords: excludeKeywords ?? antenna.excludeKeywords,
users: users ?? antenna.users,
caseSensitive: caseSensitive ?? antenna.caseSensitive,
withReplies: withReplies ?? antenna.withReplies,
withFile: withFile ?? antenna.withFile,
notify: antenna.notify,
caseSensitive: caseSensitive ?? antenna.caseSensitive ?? false,
withReplies: withReplies ?? antenna.withReplies ?? false,
withFile: withFile ?? antenna.withFile ?? false,
notify: antenna.notify ?? false,
),
);
state = AsyncValue.data([
Expand Down Expand Up @@ -106,10 +106,10 @@ class AntennasNotifier extends _$AntennasNotifier {
keywords: antenna.keywords,
excludeKeywords: antenna.excludeKeywords,
users: users,
caseSensitive: antenna.caseSensitive,
withReplies: antenna.withReplies,
withFile: antenna.withFile,
notify: antenna.notify,
caseSensitive: antenna.caseSensitive ?? false,
withReplies: antenna.withReplies ?? false,
withFile: antenna.withFile ?? false,
notify: antenna.notify ?? false,
),
);
state = AsyncValue.data([
Expand All @@ -131,10 +131,10 @@ class AntennasNotifier extends _$AntennasNotifier {
keywords: antenna.keywords,
excludeKeywords: antenna.excludeKeywords,
users: users,
caseSensitive: antenna.caseSensitive,
withReplies: antenna.withReplies,
withFile: antenna.withFile,
notify: antenna.notify,
caseSensitive: antenna.caseSensitive ?? false,
withReplies: antenna.withReplies ?? false,
withFile: antenna.withFile ?? false,
notify: antenna.notify ?? false,
),
);
state = AsyncValue.data([
Expand Down
2 changes: 1 addition & 1 deletion lib/provider/api/antennas_notifier_provider.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ packages:
dependency: transitive
description:
name: archive
sha256: ecf4273855368121b1caed0d10d4513c7241dfc813f7d3c8933b36622ae9b265
sha256: "6bd38d335f0954f5fad9c79e614604fbf03a0e5b975923dd001b6ea965ef5b4b"
url: "https://pub.dev"
source: hosted
version: "3.5.1"
version: "3.6.0"
args:
dependency: transitive
description:
Expand Down Expand Up @@ -1233,8 +1233,8 @@ packages:
dependency: "direct main"
description:
path: "."
ref: ba35a7c139d8a1d698ab133b64e2291002b87484
resolved-ref: ba35a7c139d8a1d698ab133b64e2291002b87484
ref: f2343ab79c681c607bb64e6200f913cbe70af2f5
resolved-ref: f2343ab79c681c607bb64e6200f913cbe70af2f5
url: "https://github.com/poppingmoon/misskey_dart"
source: git
version: "1.0.0"
Expand Down Expand Up @@ -1832,10 +1832,10 @@ packages:
dependency: transitive
description:
name: url_launcher_android
sha256: "360a6ed2027f18b73c8d98e159dda67a61b7f2e0f6ec26e86c3ada33b0621775"
sha256: "17cd5e205ea615e2c6ea7a77323a11712dffa0720a8a90540db57a01347f9ad9"
url: "https://pub.dev"
source: hosted
version: "6.3.1"
version: "6.3.2"
url_launcher_ios:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: aria
description: "A client app for Misskey, a federated social media platform."
publish_to: 'none'
version: 0.9.5+19
version: 0.9.6+20

environment:
sdk: '>=3.3.2 <4.0.0'
Expand Down Expand Up @@ -62,7 +62,7 @@ dependencies:
misskey_dart:
git:
url: https://github.com/poppingmoon/misskey_dart
ref: ba35a7c139d8a1d698ab133b64e2291002b87484
ref: f2343ab79c681c607bb64e6200f913cbe70af2f5
multi_split_view: ^3.1.0
package_info_plus: ^8.0.0
photo_view: ^0.15.0
Expand Down

0 comments on commit e684f47

Please sign in to comment.