4 Commits

Author SHA1 Message Date
Ray Berezowski
44e9517453 Bump version to 1.0.1 2026-06-02 21:18:39 -04:00
Ray Berezowski
95f79ae6d0 Use cache-busting exact screenshot names 2026-06-02 21:07:00 -04:00
Ray Berezowski
6d5b9bc2a8 Tighten README screenshot crops 2026-06-02 21:02:27 -04:00
Ray Berezowski
d40f1f2935 Add README screenshots 2026-06-02 20:59:34 -04:00
8 changed files with 33 additions and 6 deletions

View File

@@ -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))
{

View File

@@ -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)

View File

@@ -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;

View File

@@ -21,6 +21,20 @@ Download the compiled Windows release from:
- Optional Start with Windows shortcut
- Windows light/dark theme support
## Screenshots
### Launcher Popup
![Taskbar Launcher popup](docs/screenshots/launcher-popup-exact.png)
### Settings
![Taskbar Launcher settings](docs/screenshots/settings-window-exact.png)
### About
![Taskbar Launcher about window](docs/screenshots/about-window-exact.png)
## Project Layout
```text

View File

@@ -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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB