Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
44e9517453 | ||
|
|
95f79ae6d0 | ||
|
|
6d5b9bc2a8 | ||
|
|
d40f1f2935 |
@@ -14,7 +14,7 @@ public partial class AboutWindow : Window
|
||||
AuthorText.Text = AppInfo.Author;
|
||||
VersionText.Text = AppInfo.Version;
|
||||
BuildText.Text = AppInfo.Build;
|
||||
ConfigPathText.Text = ConfigService.ConfigPath;
|
||||
ConfigPathText.Text = "config.json beside TaskbarLauncher.exe";
|
||||
|
||||
if (string.IsNullOrWhiteSpace(AppInfo.GiveawaySiteUrl))
|
||||
{
|
||||
|
||||
13
App.xaml.cs
13
App.xaml.cs
@@ -13,6 +13,19 @@ public partial class App : System.Windows.Application
|
||||
ThemeService.Apply();
|
||||
controller = new LauncherController();
|
||||
controller.Start();
|
||||
|
||||
if (e.Args.Contains("--show-settings", StringComparer.OrdinalIgnoreCase))
|
||||
{
|
||||
controller.ShowSettings();
|
||||
}
|
||||
else if (e.Args.Contains("--show-about", StringComparer.OrdinalIgnoreCase))
|
||||
{
|
||||
controller.ShowAbout();
|
||||
}
|
||||
else if (e.Args.Contains("--show-launcher", StringComparer.OrdinalIgnoreCase))
|
||||
{
|
||||
controller.TogglePopup();
|
||||
}
|
||||
}
|
||||
|
||||
protected override void OnExit(System.Windows.ExitEventArgs e)
|
||||
|
||||
@@ -54,7 +54,7 @@ public partial class MainWindow : Window
|
||||
HotkeyBox.Text = controller.Config.Hotkey;
|
||||
DisplayModeBox.SelectedItem = controller.Config.DisplayMode;
|
||||
LoadStartupState();
|
||||
StatusText.Text = $"Config file: {ConfigService.ConfigPath}";
|
||||
StatusText.Text = "Config file: config.json beside TaskbarLauncher.exe";
|
||||
if (itemToSelect is not null && SelectTreeItem(itemToSelect))
|
||||
{
|
||||
selectedItem = itemToSelect;
|
||||
|
||||
14
README.md
14
README.md
@@ -21,6 +21,20 @@ Download the compiled Windows release from:
|
||||
- Optional Start with Windows shortcut
|
||||
- Windows light/dark theme support
|
||||
|
||||
## Screenshots
|
||||
|
||||
### Launcher Popup
|
||||
|
||||

|
||||
|
||||
### Settings
|
||||
|
||||

|
||||
|
||||
### About
|
||||
|
||||

|
||||
|
||||
## Project Layout
|
||||
|
||||
```text
|
||||
|
||||
@@ -11,10 +11,10 @@
|
||||
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
|
||||
<Authors>Ray Berezowski</Authors>
|
||||
<ApplicationIcon>Assets\AppIcon.ico</ApplicationIcon>
|
||||
<Version>1.0.0</Version>
|
||||
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
||||
<FileVersion>1.0.0.0</FileVersion>
|
||||
<InformationalVersion>1.0.0</InformationalVersion>
|
||||
<Version>1.0.1</Version>
|
||||
<AssemblyVersion>1.0.1.0</AssemblyVersion>
|
||||
<FileVersion>1.0.1.0</FileVersion>
|
||||
<InformationalVersion>1.0.1</InformationalVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
BIN
docs/screenshots/about-window-exact.png
Normal file
BIN
docs/screenshots/about-window-exact.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
BIN
docs/screenshots/launcher-popup-exact.png
Normal file
BIN
docs/screenshots/launcher-popup-exact.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.3 KiB |
BIN
docs/screenshots/settings-window-exact.png
Normal file
BIN
docs/screenshots/settings-window-exact.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 38 KiB |
Reference in New Issue
Block a user