Skip to content

Commit c6ce709

Browse files
committed
feat: Update deps
1 parent 6ed4bea commit c6ce709

7 files changed

Lines changed: 23 additions & 18 deletions

File tree

Nickvision.Application.GNOME/Blueprints/ShortcutsDialog.blp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ Adw.ShortcutsDialog root {
77

88
Adw.ShortcutsItem {
99
title: _("Preferences");
10-
accelerator: "<Control>comma";
10+
accelerator: "<Primary>comma";
1111
}
1212

1313
Adw.ShortcutsItem {
1414
title: _("Keyboard Shortcuts");
15-
accelerator: "<Control>question";
15+
accelerator: "<Primary>question";
1616
}
1717

1818
Adw.ShortcutsItem {
@@ -22,7 +22,7 @@ Adw.ShortcutsDialog root {
2222

2323
Adw.ShortcutsItem {
2424
title: _("Quit");
25-
accelerator: "<Control>Q";
25+
accelerator: "<Primary>Q";
2626
}
2727
}
2828

@@ -31,12 +31,12 @@ Adw.ShortcutsDialog root {
3131

3232
Adw.ShortcutsItem {
3333
title: _("Open Folder");
34-
accelerator: "<Control>O";
34+
accelerator: "<Primary>O";
3535
}
3636

3737
Adw.ShortcutsItem {
3838
title: _("Close Folder");
39-
accelerator: "<Control>W";
39+
accelerator: "<Primary>W";
4040
}
4141
}
42-
}
42+
}

Nickvision.Application.GNOME/Views/MainWindow.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ private MainWindow(IServiceProvider serviceProvider, Adw.Application application
9090
var actQuit = Gio.SimpleAction.New("quit", null);
9191
actQuit.OnActivate += Quit;
9292
AddAction(actQuit);
93-
_application.SetAccelsForAction("win.quit", ["<Ctrl>q"]);
93+
_application.SetAccelsForAction("win.quit", ["<Primary>q"]);
9494
// Open in files action
9595
var actOpenInFiles = Gio.SimpleAction.New("openInFiles", null);
9696
actOpenInFiles.OnActivate += OpenInFiles;
@@ -99,22 +99,22 @@ private MainWindow(IServiceProvider serviceProvider, Adw.Application application
9999
var actOpenFolder = Gio.SimpleAction.New("openFolder", null);
100100
actOpenFolder.OnActivate += OpenFolder;
101101
AddAction(actOpenFolder);
102-
_application.SetAccelsForAction("win.openFolder", ["<Ctrl>o"]);
102+
_application.SetAccelsForAction("win.openFolder", ["<Primary>o"]);
103103
// Close folder action
104104
var actCloseFolder = Gio.SimpleAction.New("closeFolder", null);
105105
actCloseFolder.OnActivate += CloseFolder;
106106
AddAction(actCloseFolder);
107-
_application.SetAccelsForAction("win.closeFolder", ["<Ctrl>w"]);
107+
_application.SetAccelsForAction("win.closeFolder", ["<Primary>w"]);
108108
// Preferences action
109109
var actPreferences = Gio.SimpleAction.New("preferences", null);
110110
actPreferences.OnActivate += Preferences;
111111
AddAction(actPreferences);
112-
_application.SetAccelsForAction("win.preferences", ["<Ctrl>period"]);
112+
_application.SetAccelsForAction("win.preferences", ["<Primary>period"]);
113113
// Keyboard shortcuts action
114114
var actKeyboardShortcuts = Gio.SimpleAction.New("keyboardShortcuts", null);
115115
actKeyboardShortcuts.OnActivate += KeyboardShortcuts;
116116
AddAction(actKeyboardShortcuts);
117-
_application.SetAccelsForAction("win.keyboardShortcuts", ["<Ctrl>question"]);
117+
_application.SetAccelsForAction("win.keyboardShortcuts", ["<Primary>question"]);
118118
// About action
119119
var actAbout = Gio.SimpleAction.New("about", null);
120120
actAbout.OnActivate += About;

Nickvision.Application.Shared/Nickvision.Application.Shared.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Nickvision.Desktop" Version="2026.4.5" />
15+
<PackageReference Include="Nickvision.Desktop" Version="2026.4.6" />
1616
<PackageReference Include="NReco.Logging.File" Version="1.3.1" />
1717
</ItemGroup>
1818

Nickvision.Application.Shared/Services/EventsService.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,12 @@ namespace Nickvision.Application.Shared.Services;
88
public class EventsService : IEventsService
99
{
1010
private readonly IConfigurationService _configurationService;
11-
private readonly IDatabaseService _databaseService;
1211
private readonly IFolderService _folderService;
1312
private readonly INotificationService _notificationService;
1413

15-
public EventsService(IConfigurationService configurationService, IDatabaseService databaseService, IFolderService folderService, INotificationService notificationService)
14+
public EventsService(IConfigurationService configurationService, IFolderService folderService, INotificationService notificationService)
1615
{
1716
_configurationService = configurationService;
18-
_databaseService = databaseService;
1917
_folderService = folderService;
2018
_notificationService = notificationService;
2119
}

Nickvision.Application.Shared/Services/FolderService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public FolderService(ILogger<FolderService> logger, INotificationService notific
3030

3131
public void Open(string path)
3232
{
33-
_logger.LogInformation($"Opening folder: {path}");
33+
_logger.LogDebug($"Opening folder: {path}");
3434
if (!Directory.Exists(path))
3535
{
3636
_logger.LogError("Folder does not exist.");
@@ -58,7 +58,7 @@ public void Open(string path)
5858

5959
public void Close()
6060
{
61-
_logger.LogInformation($"Closing folder: {Path}");
61+
_logger.LogDebug($"Closing folder: {Path}");
6262
Path = null;
6363
Files.Clear();
6464
_logger.LogInformation("Folder closed.");

flatpak/nuget-sources.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,13 @@
503503
"url": "https://api.nuget.org/v3-flatcontainer/nickvision.desktop/2026.4.5/nickvision.desktop.2026.4.5.nupkg",
504504
"type": "file"
505505
},
506+
{
507+
"dest": "nuget-sources",
508+
"dest-filename": "nickvision.desktop.2026.4.6.nupkg",
509+
"sha512": "842ba6d71eba46a68b325400fcc0a70f4823eaea9396bb954d7b249ae92a18b83fbea83a166e4653426e02161f77fb87e15a5c8b7b83a58d2b497bf94d87b442",
510+
"url": "https://api.nuget.org/v3-flatcontainer/nickvision.desktop/2026.4.6/nickvision.desktop.2026.4.6.nupkg",
511+
"type": "file"
512+
},
506513
{
507514
"dest": "nuget-sources",
508515
"dest-filename": "nickvision.desktop.gnome.2026.4.2.nupkg",

resources/po/application.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-04-18 20:23-0400\n"
11+
"POT-Creation-Date: 2026-04-18 21:56-0400\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"

0 commit comments

Comments
 (0)