Add README screenshots
This commit is contained in:
@@ -14,7 +14,7 @@ public partial class AboutWindow : Window
|
|||||||
AuthorText.Text = AppInfo.Author;
|
AuthorText.Text = AppInfo.Author;
|
||||||
VersionText.Text = AppInfo.Version;
|
VersionText.Text = AppInfo.Version;
|
||||||
BuildText.Text = AppInfo.Build;
|
BuildText.Text = AppInfo.Build;
|
||||||
ConfigPathText.Text = ConfigService.ConfigPath;
|
ConfigPathText.Text = "config.json beside TaskbarLauncher.exe";
|
||||||
|
|
||||||
if (string.IsNullOrWhiteSpace(AppInfo.GiveawaySiteUrl))
|
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();
|
ThemeService.Apply();
|
||||||
controller = new LauncherController();
|
controller = new LauncherController();
|
||||||
controller.Start();
|
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)
|
protected override void OnExit(System.Windows.ExitEventArgs e)
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ public partial class MainWindow : Window
|
|||||||
HotkeyBox.Text = controller.Config.Hotkey;
|
HotkeyBox.Text = controller.Config.Hotkey;
|
||||||
DisplayModeBox.SelectedItem = controller.Config.DisplayMode;
|
DisplayModeBox.SelectedItem = controller.Config.DisplayMode;
|
||||||
LoadStartupState();
|
LoadStartupState();
|
||||||
StatusText.Text = $"Config file: {ConfigService.ConfigPath}";
|
StatusText.Text = "Config file: config.json beside TaskbarLauncher.exe";
|
||||||
if (itemToSelect is not null && SelectTreeItem(itemToSelect))
|
if (itemToSelect is not null && SelectTreeItem(itemToSelect))
|
||||||
{
|
{
|
||||||
selectedItem = itemToSelect;
|
selectedItem = itemToSelect;
|
||||||
|
|||||||
14
README.md
14
README.md
@@ -21,6 +21,20 @@ Download the compiled Windows release from:
|
|||||||
- Optional Start with Windows shortcut
|
- Optional Start with Windows shortcut
|
||||||
- Windows light/dark theme support
|
- Windows light/dark theme support
|
||||||
|
|
||||||
|
## Screenshots
|
||||||
|
|
||||||
|
### Launcher Popup
|
||||||
|
|
||||||
|

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

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

|
||||||
|
|
||||||
## Project Layout
|
## Project Layout
|
||||||
|
|
||||||
```text
|
```text
|
||||||
|
|||||||
BIN
docs/screenshots/about-window.png
Normal file
BIN
docs/screenshots/about-window.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 36 KiB |
BIN
docs/screenshots/launcher-popup.png
Normal file
BIN
docs/screenshots/launcher-popup.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.3 KiB |
BIN
docs/screenshots/settings-window.png
Normal file
BIN
docs/screenshots/settings-window.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 41 KiB |
Reference in New Issue
Block a user