diff --git a/BrightnessSwitch/BrightnessSwitch.csproj b/BrightnessSwitch/BrightnessSwitch.csproj index 17e481d..8ec27ec 100644 --- a/BrightnessSwitch/BrightnessSwitch.csproj +++ b/BrightnessSwitch/BrightnessSwitch.csproj @@ -6,7 +6,7 @@ enable true sun.ico - 1.1.0 + 1.1.1 win-x86;win-x64 Debug;Release;Store AnyCPU;x64;x86 diff --git a/CHANGELOG.md b/CHANGELOG.md index 46101fb..d848ac1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ # Changelog -## unreleased +## 1.1.1 - Fix bug on devices without light sensor - Optimized machine learning model +- First release in the [Microsoft Store](https://www.microsoft.com/store/productId/9NK5PND0SQ07) ## 1.1.0 diff --git a/README.md b/README.md index 57ab360..a739df9 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # BrightnessSwitch -[![Total downloads](https://img.shields.io/github/downloads/stephtr/BrightnessSwitch/total.svg)](https://github.com/stephtr/BrightnessSwitch/releases) _- hopefully increasing soon 😉_ +[Get it from Microsoft](https://www.microsoft.com/store/productId/9NK5PND0SQ07) -_Do you have a notebook with Fn and function keys combined and have issues with combinations like Alt+F4? Make sure to check out [FixSurfaceKeyboard](https://github.com/stephtr/FixSurfaceKeyboard)._ +_Do you have a notebook with Fn and function keys combined and have issues with combinations like Alt+F4? Make sure to also check out [FixSurfaceKeyboard](https://github.com/stephtr/FixSurfaceKeyboard)._ --- This small app automatically switches between Windows' Light- and Dark-Theme, depending on the ambient brightness, detected via your device's light sensor. -![Screenshot](screenshot.png)
+![Screenshot](images/screenshot.png)
_Screenshot of the app_ In order to control the switching mechanism, it adds a tray icon where one can enable or disable automatic switching of themes, but also an option to manually switch the theme. @@ -17,15 +17,14 @@ If automatic switching is enabled and one switches the theme, machine learning ( ## Download +- [Microsoft Store](https://www.microsoft.com/store/productId/9NK5PND0SQ07) - .zip package: [Latest release](https://github.com/stephtr/BrightnessSwitch/releases) -- Installer: coming soon... -- Microsoft Store: under consideration ## Running the app -The app is written in C# (.NET 5.0) and therefore needs the [Desktop Runtime 5.0](https://dotnet.microsoft.com/download/dotnet/5.0#runtime-desktop-5.0.0-preview.2) to be installed. +The easiest and recommended way is to use the [Microsoft Store](https://www.microsoft.com/store/productId/9NK5PND0SQ07) version. If you prefer to manually run the app, follow these instructions: -For this app there is currently no installer available, therefore just download the [latest release](https://github.com/stephtr/BrightnessSwitch/releases) and extract it to a folder of your choice. Then run `BrightnessControl.exe`, autostart with Windows can be enabled via the context menu. +Download the [latest release](https://github.com/stephtr/BrightnessSwitch/releases) and extract it to a folder of your choice. The app is written in C# (.NET 5.0) and therefore needs the [Desktop Runtime 5.0](https://dotnet.microsoft.com/download/dotnet/5.0#runtime-desktop-5.0.0-preview.2) to be installed. Then run `BrightnessControl.exe`, autostart with Windows can be enabled via the context menu. ## Privacy @@ -39,7 +38,7 @@ After cloning or downloading the source, running `dotnet run` is sufficient for Included with the source is also a small Python script for analysing the app's SVM configuration. By running `analysis.py`, it shows a plot containing all your recent manual interventions as dots. The vertical line corresponds to the criteria for switching between light and dark theme with the shaded area being a measure for the uncertainty. -![Screenshot analysis](screenshot_analysis.png)
+![Screenshot analysis](images/screenshot_analysis.png)
_Screenshot of the analysis tool_ ## Changelog diff --git a/images/microsoft_store_badge.svg b/images/microsoft_store_badge.svg new file mode 100644 index 0000000..91e4b0d --- /dev/null +++ b/images/microsoft_store_badge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/screenshot.png b/images/screenshot.png similarity index 100% rename from screenshot.png rename to images/screenshot.png diff --git a/screenshot_analysis.png b/images/screenshot_analysis.png similarity index 100% rename from screenshot_analysis.png rename to images/screenshot_analysis.png