Browse Source

neon: Update dependencies

pull/49/head
jld3103 2 years ago
parent
commit
5a70a98101
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 74
      packages/neon/lib/src/apps/files/blocs/files.rxb.g.dart
  2. 56
      packages/neon/lib/src/apps/news/blocs/news.rxb.g.dart
  3. 43
      packages/neon/lib/src/apps/notes/blocs/notes.rxb.g.dart
  4. 2
      packages/neon/lib/src/pages/home/home.dart
  5. 10
      packages/neon/lib/src/utils/push_utils.dart
  6. 93
      packages/neon/pubspec.lock
  7. 9
      packages/neon/pubspec.yaml

74
packages/neon/lib/src/apps/files/blocs/files.rxb.g.dart

@ -61,26 +61,62 @@ abstract class $FilesBloc extends RxBlocBase implements FilesBlocEvents, FilesBl
void refresh() => _$refreshEvent.add(null); void refresh() => _$refreshEvent.add(null);
@override @override
void uploadFile(List<String> path, String localPath) => _$uploadFileEvent.add(_UploadFileEventArgs(path, localPath)); void uploadFile(
List<String> path,
String localPath,
) =>
_$uploadFileEvent.add(_UploadFileEventArgs(
path,
localPath,
));
@override @override
void syncFile(List<String> path) => _$syncFileEvent.add(path); void syncFile(List<String> path) => _$syncFileEvent.add(path);
@override @override
void openFile(List<String> path, String etag, String? mimeType) => void openFile(
_$openFileEvent.add(_OpenFileEventArgs(path, etag, mimeType)); List<String> path,
String etag,
String? mimeType,
) =>
_$openFileEvent.add(_OpenFileEventArgs(
path,
etag,
mimeType,
));
@override @override
void delete(List<String> path) => _$deleteEvent.add(path); void delete(List<String> path) => _$deleteEvent.add(path);
@override @override
void rename(List<String> path, String name) => _$renameEvent.add(_RenameEventArgs(path, name)); void rename(
List<String> path,
String name,
) =>
_$renameEvent.add(_RenameEventArgs(
path,
name,
));
@override @override
void move(List<String> path, List<String> destination) => _$moveEvent.add(_MoveEventArgs(path, destination)); void move(
List<String> path,
List<String> destination,
) =>
_$moveEvent.add(_MoveEventArgs(
path,
destination,
));
@override @override
void copy(List<String> path, List<String> destination) => _$copyEvent.add(_CopyEventArgs(path, destination)); void copy(
List<String> path,
List<String> destination,
) =>
_$copyEvent.add(_CopyEventArgs(
path,
destination,
));
@override @override
void addFavorite(List<String> path) => _$addFavoriteEvent.add(path); void addFavorite(List<String> path) => _$addFavoriteEvent.add(path);
@ -129,7 +165,10 @@ abstract class $FilesBloc extends RxBlocBase implements FilesBlocEvents, FilesBl
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [FilesBlocEvents.uploadFile] event /// [FilesBlocEvents.uploadFile] event
class _UploadFileEventArgs { class _UploadFileEventArgs {
const _UploadFileEventArgs(this.path, this.localPath); const _UploadFileEventArgs(
this.path,
this.localPath,
);
final List<String> path; final List<String> path;
@ -139,7 +178,11 @@ class _UploadFileEventArgs {
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [FilesBlocEvents.openFile] event /// [FilesBlocEvents.openFile] event
class _OpenFileEventArgs { class _OpenFileEventArgs {
const _OpenFileEventArgs(this.path, this.etag, this.mimeType); const _OpenFileEventArgs(
this.path,
this.etag,
this.mimeType,
);
final List<String> path; final List<String> path;
@ -151,7 +194,10 @@ class _OpenFileEventArgs {
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [FilesBlocEvents.rename] event /// [FilesBlocEvents.rename] event
class _RenameEventArgs { class _RenameEventArgs {
const _RenameEventArgs(this.path, this.name); const _RenameEventArgs(
this.path,
this.name,
);
final List<String> path; final List<String> path;
@ -161,7 +207,10 @@ class _RenameEventArgs {
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [FilesBlocEvents.move] event /// [FilesBlocEvents.move] event
class _MoveEventArgs { class _MoveEventArgs {
const _MoveEventArgs(this.path, this.destination); const _MoveEventArgs(
this.path,
this.destination,
);
final List<String> path; final List<String> path;
@ -171,7 +220,10 @@ class _MoveEventArgs {
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [FilesBlocEvents.copy] event /// [FilesBlocEvents.copy] event
class _CopyEventArgs { class _CopyEventArgs {
const _CopyEventArgs(this.path, this.destination); const _CopyEventArgs(
this.path,
this.destination,
);
final List<String> path; final List<String> path;

56
packages/neon/lib/src/apps/news/blocs/news.rxb.g.dart

@ -64,16 +64,37 @@ abstract class $NewsBloc extends RxBlocBase implements NewsBlocEvents, NewsBlocS
void refresh({required bool mainArticlesToo}) => _$refreshEvent.add(mainArticlesToo); void refresh({required bool mainArticlesToo}) => _$refreshEvent.add(mainArticlesToo);
@override @override
void addFeed(String url, int? folderId) => _$addFeedEvent.add(_AddFeedEventArgs(url, folderId)); void addFeed(
String url,
int? folderId,
) =>
_$addFeedEvent.add(_AddFeedEventArgs(
url,
folderId,
));
@override @override
void removeFeed(int feedId) => _$removeFeedEvent.add(feedId); void removeFeed(int feedId) => _$removeFeedEvent.add(feedId);
@override @override
void renameFeed(int feedId, String feedTitle) => _$renameFeedEvent.add(_RenameFeedEventArgs(feedId, feedTitle)); void renameFeed(
int feedId,
String feedTitle,
) =>
_$renameFeedEvent.add(_RenameFeedEventArgs(
feedId,
feedTitle,
));
@override @override
void moveFeed(int feedId, int? folderId) => _$moveFeedEvent.add(_MoveFeedEventArgs(feedId, folderId)); void moveFeed(
int feedId,
int? folderId,
) =>
_$moveFeedEvent.add(_MoveFeedEventArgs(
feedId,
folderId,
));
@override @override
void markFeedAsRead(int feedId) => _$markFeedAsReadEvent.add(feedId); void markFeedAsRead(int feedId) => _$markFeedAsReadEvent.add(feedId);
@ -85,7 +106,14 @@ abstract class $NewsBloc extends RxBlocBase implements NewsBlocEvents, NewsBlocS
void deleteFolder(int folderId) => _$deleteFolderEvent.add(folderId); void deleteFolder(int folderId) => _$deleteFolderEvent.add(folderId);
@override @override
void renameFolder(int folderId, String name) => _$renameFolderEvent.add(_RenameFolderEventArgs(folderId, name)); void renameFolder(
int folderId,
String name,
) =>
_$renameFolderEvent.add(_RenameFolderEventArgs(
folderId,
name,
));
@override @override
void markFolderAsRead(int folderId) => _$markFolderAsReadEvent.add(folderId); void markFolderAsRead(int folderId) => _$markFolderAsReadEvent.add(folderId);
@ -136,7 +164,10 @@ abstract class $NewsBloc extends RxBlocBase implements NewsBlocEvents, NewsBlocS
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [NewsBlocEvents.addFeed] event /// [NewsBlocEvents.addFeed] event
class _AddFeedEventArgs { class _AddFeedEventArgs {
const _AddFeedEventArgs(this.url, this.folderId); const _AddFeedEventArgs(
this.url,
this.folderId,
);
final String url; final String url;
@ -146,7 +177,10 @@ class _AddFeedEventArgs {
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [NewsBlocEvents.renameFeed] event /// [NewsBlocEvents.renameFeed] event
class _RenameFeedEventArgs { class _RenameFeedEventArgs {
const _RenameFeedEventArgs(this.feedId, this.feedTitle); const _RenameFeedEventArgs(
this.feedId,
this.feedTitle,
);
final int feedId; final int feedId;
@ -156,7 +190,10 @@ class _RenameFeedEventArgs {
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [NewsBlocEvents.moveFeed] event /// [NewsBlocEvents.moveFeed] event
class _MoveFeedEventArgs { class _MoveFeedEventArgs {
const _MoveFeedEventArgs(this.feedId, this.folderId); const _MoveFeedEventArgs(
this.feedId,
this.folderId,
);
final int feedId; final int feedId;
@ -166,7 +203,10 @@ class _MoveFeedEventArgs {
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [NewsBlocEvents.renameFolder] event /// [NewsBlocEvents.renameFolder] event
class _RenameFolderEventArgs { class _RenameFolderEventArgs {
const _RenameFolderEventArgs(this.folderId, this.name); const _RenameFolderEventArgs(
this.folderId,
this.name,
);
final int folderId; final int folderId;

43
packages/neon/lib/src/apps/notes/blocs/notes.rxb.g.dart

@ -43,13 +43,32 @@ abstract class $NotesBloc extends RxBlocBase implements NotesBlocEvents, NotesBl
void refresh() => _$refreshEvent.add(null); void refresh() => _$refreshEvent.add(null);
@override @override
void createNote({String title = '', String category = ''}) => void createNote({
_$createNoteEvent.add(_CreateNoteEventArgs(title: title, category: category)); String title = '',
String category = '',
}) =>
_$createNoteEvent.add(_CreateNoteEventArgs(
title: title,
category: category,
));
@override @override
void updateNote(int id, String etag, {String? title, String? category, String? content, bool? favorite}) => void updateNote(
_$updateNoteEvent int id,
.add(_UpdateNoteEventArgs(id, etag, title: title, category: category, content: content, favorite: favorite)); String etag, {
String? title,
String? category,
String? content,
bool? favorite,
}) =>
_$updateNoteEvent.add(_UpdateNoteEventArgs(
id,
etag,
title: title,
category: category,
content: content,
favorite: favorite,
));
@override @override
void deleteNote(int id) => _$deleteNoteEvent.add(id); void deleteNote(int id) => _$deleteNoteEvent.add(id);
@ -89,7 +108,10 @@ abstract class $NotesBloc extends RxBlocBase implements NotesBlocEvents, NotesBl
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [NotesBlocEvents.createNote] event /// [NotesBlocEvents.createNote] event
class _CreateNoteEventArgs { class _CreateNoteEventArgs {
const _CreateNoteEventArgs({this.title = '', this.category = ''}); const _CreateNoteEventArgs({
this.title = '',
this.category = '',
});
final String title; final String title;
@ -99,7 +121,14 @@ class _CreateNoteEventArgs {
/// Helps providing the arguments in the [Subject.add] for /// Helps providing the arguments in the [Subject.add] for
/// [NotesBlocEvents.updateNote] event /// [NotesBlocEvents.updateNote] event
class _UpdateNoteEventArgs { class _UpdateNoteEventArgs {
const _UpdateNoteEventArgs(this.id, this.etag, {this.title, this.category, this.content, this.favorite}); const _UpdateNoteEventArgs(
this.id,
this.etag, {
this.title,
this.category,
this.content,
this.favorite,
});
final int id; final int id;

2
packages/neon/lib/src/pages/home/home.dart

@ -189,7 +189,7 @@ class _HomePageState extends State<HomePage> with tray.TrayListener, WindowListe
final details = await localNotificationsPlugin.getNotificationAppLaunchDetails(); final details = await localNotificationsPlugin.getNotificationAppLaunchDetails();
if (details != null && details.didNotificationLaunchApp) { if (details != null && details.didNotificationLaunchApp) {
await Global.onPushNotificationClicked!(details.payload); await Global.onPushNotificationClicked!(details.notificationResponse?.payload);
} }
} }
}); });

10
packages/neon/lib/src/utils/push_utils.dart

@ -19,7 +19,7 @@ class PushUtils {
} }
static Future<FlutterLocalNotificationsPlugin> initLocalNotifications({ static Future<FlutterLocalNotificationsPlugin> initLocalNotifications({
final SelectNotificationCallback? onSelectNotification, final DidReceiveNotificationResponseCallback? onDidReceiveNotificationResponse,
}) async { }) async {
final localNotificationsPlugin = FlutterLocalNotificationsPlugin(); final localNotificationsPlugin = FlutterLocalNotificationsPlugin();
await localNotificationsPlugin.initialize( await localNotificationsPlugin.initialize(
@ -30,7 +30,7 @@ class PushUtils {
defaultIcon: AssetsLinuxIcon('assets/logo_harbour.svg'), defaultIcon: AssetsLinuxIcon('assets/logo_harbour.svg'),
), ),
), ),
onSelectNotification: onSelectNotification, onDidReceiveNotificationResponse: onDidReceiveNotificationResponse,
); );
return localNotificationsPlugin; return localNotificationsPlugin;
} }
@ -39,9 +39,9 @@ class PushUtils {
WidgetsFlutterBinding.ensureInitialized(); WidgetsFlutterBinding.ensureInitialized();
final localNotificationsPlugin = await initLocalNotifications( final localNotificationsPlugin = await initLocalNotifications(
onSelectNotification: (final payload) async { onDidReceiveNotificationResponse: (final notification) async {
if (Global.onPushNotificationClicked != null) { if (Global.onPushNotificationClicked != null) {
await Global.onPushNotificationClicked!(payload); await Global.onPushNotificationClicked!(notification.payload);
} }
}, },
); );
@ -101,7 +101,7 @@ class PushUtils {
groupKey: 'app_${app.id}', groupKey: 'app_${app.id}',
icon: '@mipmap/app_${app.id}', icon: '@mipmap/app_${app.id}',
color: themePrimaryColor, color: themePrimaryColor,
category: notification.type == 'voip' ? 'CATEGORY_CALL' : null, category: notification.type == 'voip' ? AndroidNotificationCategory.call : null,
importance: Importance.max, importance: Importance.max,
priority: notification.priority == 'high' priority: notification.priority == 'high'
? (notification.type == 'voip' ? Priority.max : Priority.high) ? (notification.type == 'voip' ? Priority.max : Priority.high)

93
packages/neon/pubspec.lock

@ -7,14 +7,14 @@ packages:
name: _fe_analyzer_shared name: _fe_analyzer_shared
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "46.0.0" version: "47.0.0"
analyzer: analyzer:
dependency: transitive dependency: "direct overridden"
description: description:
name: analyzer name: analyzer
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "4.6.0" version: "4.7.0"
archive: archive:
dependency: transitive dependency: transitive
description: description:
@ -35,7 +35,7 @@ packages:
name: asn1lib name: asn1lib
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.1.0" version: "1.1.1"
async: async:
dependency: transitive dependency: transitive
description: description:
@ -56,7 +56,7 @@ packages:
name: build name: build
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.3.0" version: "2.3.1"
build_config: build_config:
dependency: transitive dependency: transitive
description: description:
@ -77,21 +77,21 @@ packages:
name: build_resolvers name: build_resolvers
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.0.9" version: "2.0.10"
build_runner: build_runner:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: build_runner name: build_runner
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.2.0" version: "2.2.1"
build_runner_core: build_runner_core:
dependency: transitive dependency: transitive
description: description:
name: build_runner_core name: build_runner_core
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "7.2.3" version: "7.2.4"
built_collection: built_collection:
dependency: transitive dependency: transitive
description: description:
@ -113,13 +113,6 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.2.1" version: "1.2.1"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.1"
checked_yaml: checked_yaml:
dependency: transitive dependency: transitive
description: description:
@ -140,7 +133,7 @@ packages:
name: code_builder name: code_builder
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "4.2.0" version: "4.3.0"
collection: collection:
dependency: "direct main" dependency: "direct main"
description: description:
@ -161,7 +154,7 @@ packages:
name: cross_file name: cross_file
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.3.3+1" version: "0.3.3+2"
crypto: crypto:
dependency: "direct main" dependency: "direct main"
description: description:
@ -189,7 +182,7 @@ packages:
name: dart_style name: dart_style
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.2.3" version: "2.2.4"
dbus: dbus:
dependency: transitive dependency: transitive
description: description:
@ -269,7 +262,7 @@ packages:
name: flutter_file_dialog name: flutter_file_dialog
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.3.1" version: "2.3.2"
flutter_html: flutter_html:
dependency: "direct main" dependency: "direct main"
description: description:
@ -283,21 +276,21 @@ packages:
name: flutter_local_notifications name: flutter_local_notifications
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "9.9.0" version: "11.0.1"
flutter_local_notifications_linux: flutter_local_notifications_linux:
dependency: transitive dependency: transitive
description: description:
name: flutter_local_notifications_linux name: flutter_local_notifications_linux
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.5.1" version: "1.0.0"
flutter_local_notifications_platform_interface: flutter_local_notifications_platform_interface:
dependency: transitive dependency: transitive
description: description:
name: flutter_local_notifications_platform_interface name: flutter_local_notifications_platform_interface
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "5.0.0" version: "6.0.0"
flutter_localizations: flutter_localizations:
dependency: "direct main" dependency: "direct main"
description: flutter description: flutter
@ -309,14 +302,14 @@ packages:
name: flutter_markdown name: flutter_markdown
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.6.10+5" version: "0.6.12"
flutter_native_splash: flutter_native_splash:
dependency: "direct main" dependency: "direct main"
description: description:
name: flutter_native_splash name: flutter_native_splash
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.2.8" version: "2.2.9"
flutter_plugin_android_lifecycle: flutter_plugin_android_lifecycle:
dependency: transitive dependency: transitive
description: description:
@ -337,7 +330,7 @@ packages:
name: flutter_svg name: flutter_svg
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.1.4" version: "1.1.5"
flutter_test: flutter_test:
dependency: "direct dev" dependency: "direct dev"
description: flutter description: flutter
@ -422,7 +415,7 @@ packages:
name: image_picker_android name: image_picker_android
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.8.5+2" version: "0.8.5+3"
image_picker_for_web: image_picker_for_web:
dependency: transitive dependency: transitive
description: description:
@ -436,7 +429,7 @@ packages:
name: image_picker_ios name: image_picker_ios
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.8.5+6" version: "0.8.6+1"
image_picker_platform_interface: image_picker_platform_interface:
dependency: transitive dependency: transitive
description: description:
@ -483,14 +476,14 @@ packages:
name: json_annotation name: json_annotation
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "4.6.0" version: "4.7.0"
json_serializable: json_serializable:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: json_serializable name: json_serializable
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "6.3.1" version: "6.4.0"
lint: lint:
dependency: transitive dependency: transitive
description: description:
@ -511,7 +504,7 @@ packages:
name: markdown name: markdown
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "5.0.0" version: "6.0.1"
matcher: matcher:
dependency: transitive dependency: transitive
description: description:
@ -716,7 +709,7 @@ packages:
name: permission_handler name: permission_handler
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "10.0.0" version: "10.0.1"
permission_handler_android: permission_handler_android:
dependency: transitive dependency: transitive
description: description:
@ -737,7 +730,7 @@ packages:
name: permission_handler_platform_interface name: permission_handler_platform_interface
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "3.7.0" version: "3.7.1"
permission_handler_windows: permission_handler_windows:
dependency: transitive dependency: transitive
description: description:
@ -765,14 +758,14 @@ packages:
name: plugin_platform_interface name: plugin_platform_interface
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.1.2" version: "2.1.3"
pointycastle: pointycastle:
dependency: transitive dependency: transitive
description: description:
name: pointycastle name: pointycastle
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "3.6.1" version: "3.6.2"
pool: pool:
dependency: transitive dependency: transitive
description: description:
@ -821,7 +814,7 @@ packages:
name: quick_actions name: quick_actions
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.6.0+11" version: "1.0.0"
quick_actions_android: quick_actions_android:
dependency: transitive dependency: transitive
description: description:
@ -870,7 +863,7 @@ packages:
name: screen_retriever name: screen_retriever
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.1.2" version: "0.1.3"
settings: settings:
dependency: "direct main" dependency: "direct main"
description: description:
@ -884,7 +877,7 @@ packages:
name: share_plus name: share_plus
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "4.0.10+1" version: "4.4.0"
share_plus_linux: share_plus_linux:
dependency: transitive dependency: transitive
description: description:
@ -933,7 +926,7 @@ packages:
name: shared_preferences_android name: shared_preferences_android
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.0.12" version: "2.0.13"
shared_preferences_ios: shared_preferences_ios:
dependency: transitive dependency: transitive
description: description:
@ -982,7 +975,7 @@ packages:
name: shelf name: shelf
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.3.2" version: "1.4.0"
shelf_web_socket: shelf_web_socket:
dependency: transitive dependency: transitive
description: description:
@ -1015,14 +1008,14 @@ packages:
name: source_gen name: source_gen
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.2.2" version: "1.2.5"
source_helper: source_helper:
dependency: transitive dependency: transitive
description: description:
name: source_helper name: source_helper
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.3.2" version: "1.3.3"
source_span: source_span:
dependency: transitive dependency: transitive
description: description:
@ -1036,14 +1029,14 @@ packages:
name: sqflite name: sqflite
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.0.3+1" version: "2.1.0"
sqflite_common: sqflite_common:
dependency: transitive dependency: transitive
description: description:
name: sqflite_common name: sqflite_common
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.2.1+1" version: "2.3.0"
sqflite_common_ffi: sqflite_common_ffi:
dependency: "direct main" dependency: "direct main"
description: description:
@ -1057,7 +1050,7 @@ packages:
name: sqlite3 name: sqlite3
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.8.0" version: "1.9.0"
stack_trace: stack_trace:
dependency: transitive dependency: transitive
description: description:
@ -1099,7 +1092,7 @@ packages:
name: synchronized name: synchronized
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "3.0.0+2" version: "3.0.0+3"
term_glyph: term_glyph:
dependency: transitive dependency: transitive
description: description:
@ -1120,7 +1113,7 @@ packages:
name: timezone name: timezone
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.8.0" version: "0.9.0"
timing: timing:
dependency: transitive dependency: transitive
description: description:
@ -1183,7 +1176,7 @@ packages:
name: url_launcher_android name: url_launcher_android
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "6.0.17" version: "6.0.19"
url_launcher_ios: url_launcher_ios:
dependency: transitive dependency: transitive
description: description:
@ -1309,21 +1302,21 @@ packages:
name: webview_flutter_android name: webview_flutter_android
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.9.5" version: "2.10.2"
webview_flutter_platform_interface: webview_flutter_platform_interface:
dependency: transitive dependency: transitive
description: description:
name: webview_flutter_platform_interface name: webview_flutter_platform_interface
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.9.2" version: "1.9.3"
webview_flutter_wkwebview: webview_flutter_wkwebview:
dependency: transitive dependency: transitive
description: description:
name: webview_flutter_wkwebview name: webview_flutter_wkwebview
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.9.3" version: "2.9.4"
win32: win32:
dependency: transitive dependency: transitive
description: description:

9
packages/neon/pubspec.yaml

@ -18,7 +18,7 @@ dependencies:
flutter_dotenv: ^5.0.2 flutter_dotenv: ^5.0.2
flutter_file_dialog: ^2.3.0 flutter_file_dialog: ^2.3.0
flutter_html: ^3.0.0-alpha.3 flutter_html: ^3.0.0-alpha.3
flutter_local_notifications: ^9.7.0 flutter_local_notifications: ^11.0.1
flutter_localizations: flutter_localizations:
sdk: flutter sdk: flutter
flutter_markdown: ^0.6.10+2 flutter_markdown: ^0.6.10+2
@ -30,7 +30,7 @@ dependencies:
image_picker: ^0.8.5+3 image_picker: ^0.8.5+3
intersperse: ^2.0.0 intersperse: ^2.0.0
intl: ^0.17.0 intl: ^0.17.0
json_annotation: ^4.5.0 json_annotation: ^4.7.0
material_design_icons_flutter: ^5.0.6595 material_design_icons_flutter: ^5.0.6595
nextcloud: nextcloud:
path: ../nextcloud path: ../nextcloud
@ -41,7 +41,7 @@ dependencies:
permission_handler: ^10.0.0 permission_handler: ^10.0.0
provider: ^6.0.2 provider: ^6.0.2
queue: ^3.1.0+1 queue: ^3.1.0+1
quick_actions: ^0.6.0+11 quick_actions: ^1.0.0
rx_bloc: ^3.2.1 rx_bloc: ^3.2.1
rxdart: ^0.27.3 rxdart: ^0.27.3
settings: settings:
@ -60,6 +60,9 @@ dependencies:
window_manager: ^0.2.5 window_manager: ^0.2.5
xdg_directories: ^0.2.0+1 xdg_directories: ^0.2.0+1
dependency_overrides:
analyzer: ^4.0.0 # 5.0.0 breaks rx_bloc_generator
dev_dependencies: dev_dependencies:
build_runner: ^2.1.7 build_runner: ^2.1.7
flutter_driver: flutter_driver:

Loading…
Cancel
Save