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 6c0b808
Show file tree
Hide file tree
Showing 7 changed files with 171 additions and 141 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
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 6c0b808

Please sign in to comment.