Skip to content

Commit

Permalink
chore: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatNerdSquared committed Jan 3, 2025
1 parent 35fc595 commit bcb32e5
Show file tree
Hide file tree
Showing 8 changed files with 179 additions and 143 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
*.swp
.DS_Store
.atom/
.build/
.buildlog/
.history
.svn/
.swiftpm/
migrate_working_dir/

# IntelliJ related
Expand Down
10 changes: 8 additions & 2 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
PODS:
- app_links (0.0.2):
- Flutter
- device_info_plus (0.0.1):
- Flutter
- DKImagePickerController/Core (4.3.4):
Expand Down Expand Up @@ -51,6 +53,7 @@ PODS:
- Flutter

DEPENDENCIES:
- app_links (from `.symlinks/plugins/app_links/ios`)
- device_info_plus (from `.symlinks/plugins/device_info_plus/ios`)
- file_picker (from `.symlinks/plugins/file_picker/ios`)
- Flutter (from `Flutter`)
Expand All @@ -67,6 +70,8 @@ SPEC REPOS:
- SwiftyGif

EXTERNAL SOURCES:
app_links:
:path: ".symlinks/plugins/app_links/ios"
device_info_plus:
:path: ".symlinks/plugins/device_info_plus/ios"
file_picker:
Expand All @@ -83,10 +88,11 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/url_launcher_ios/ios"

SPEC CHECKSUMS:
app_links: e7a6750a915a9e161c58d91bc610e8cd1d4d0ad0
device_info_plus: 97af1d7e84681a90d0693e63169a5d50e0839a0d
DKImagePickerController: b512c28220a2b8ac7419f21c491fc8534b7601ac
DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179
file_picker: ce3938a0df3cc1ef404671531facef740d03f920
file_picker: 09aa5ec1ab24135ccd7a1621c46c84134bfd6655
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
irondash_engine_context: 3458bf979b90d616ffb8ae03a150bafe2e860cc9
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
Expand All @@ -97,4 +103,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 7be2f5f74864d463a8ad433546ed1de7e0f29aef

COCOAPODS: 1.15.2
COCOAPODS: 1.16.2
2 changes: 1 addition & 1 deletion lib/widgets/entry_list_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class EntryListViewState extends ConsumerState<EntryListView> {
bottom: PretConfig.defaultElementSpacing * 6,
),
child: FloatingActionButton(
backgroundColor: const Color(0xffb69d7c).withOpacity(0.5),
backgroundColor: const Color(0xffb69d7c).withValues(alpha: 0.5),
onPressed: scrollToBottom,
child: const Icon(Icons.keyboard_double_arrow_down_sharp)),
),
Expand Down
4 changes: 2 additions & 2 deletions lib/widgets/pret_command_palette.dart
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ class PretPaletteToggle extends InheritedWidget {

const PretPaletteToggle({
super.key,
required super.child,
required this.isPaletteShown,
required this.togglePalette,
required Widget child,
}) : super(child: child);
});

static PretPaletteToggle of(BuildContext context) {
return context.dependOnInheritedWidgetOfExactType<PretPaletteToggle>()!;
Expand Down
2 changes: 1 addition & 1 deletion macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ SPEC CHECKSUMS:
irondash_engine_context: da62996ee25616d2f01bbeb85dc115d813359478
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
super_native_extensions: 85efee3a7495b46b04befcfc86ed12069264ebf3
url_launcher_macos: 5f437abeda8c85500ceb03f5c1938a8c5a705399
url_launcher_macos: c82c93949963e55b228a30115bd219499a6fe404

PODFILE CHECKSUM: 236401fc2c932af29a9fcf0e97baeeb2d750d367

Expand Down
4 changes: 4 additions & 0 deletions macos/Runner/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ class AppDelegate: FlutterAppDelegate {
override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool {
return true
}

override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool {
return true
}
}
Loading

0 comments on commit bcb32e5

Please sign in to comment.