mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01:00
* Update with bug fixes for tray icon and support for parent process * Process information enum * Update the docs * Fix spelling * Make sure that PID is used in PT config flow * Logic for checks based on #34148 * Update with link to PR * Fixes #34717 * Small cleanup * Proper task segmentation in a function * Cleanup the code * Fix synchronization context issue * Update planning doc * Test disabling caching to see if that manages to pass CI * Cleanup to make sure that we're logging things properly. * Update ci.yml * Disable cache to pass CI * Retry logic * Cleanup * Code cleanup * Fixes #35848 * Update notes and codename * After third attempt, log error instead of throwing exception * More cleanup to avoid double execution * Add expected word * Safeguards for bad values for timed keep-awake * More updates to make sure I am using uint * Update error message * Update packages * Fix notice and revert CsWinRT upgrade * Codename update * Update expect.txt * Update the struct * Ensuring we're properly awaiting tray initialization * Update to make sure tray reflects the bound process * Cleanup, proper JSON serialization for logs. * Not needed. * Add command validation logic * Moving the initialization logic earlier * Make sure we show the display state in the tooltip * Update tray string * Update src/modules/awake/Awake/Core/Manager.cs Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> * Update src/modules/awake/Awake/Core/Manager.cs Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> * Update src/modules/awake/Awake/Core/Manager.cs Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> * Update src/modules/awake/Awake/Core/Manager.cs Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> * Update logic for icon resets * Update doc * Simplify function for setting mode shell icon * Issues should be properly linked * Minor cleanup * Update timed behavior --------- Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> Co-authored-by: Clint Rutkas <clint@rutkas.com>
6.2 KiB
6.2 KiB
last-update
| last-update |
|---|
| 7-16-2024 |
PowerToys Awake Changelog
Builds
The build ID can be found in Core\Constants.cs in the BuildId variable - it is a unique identifier for the current builds that allows better diagnostics (we can look up the build ID from the logs) and offers a way to triage Awake-specific issues faster independent of the PowerToys version. The build ID does not carry any significance beyond that within the PowerToys code base.
The build ID moniker is made up of two components - a reference to a Halo character, and the date when the work on the specific build started in the format of MMDDYYYY.
| Build ID | Build Date |
|---|---|
TILLSON_11272024 |
November 27, 2024 |
PROMETHEAN_09082024 |
September 8, 2024 |
VISEGRADRELAY_08152024 |
August 15, 2024 |
DAISY023_04102024 |
April 10, 2024 |
ATRIOX_04132023 |
April 13, 2023 |
LIBRARIAN_03202022 |
March 20, 2022 |
ARBITER_01312022 |
January 31, 2022 |
TILLSON_11272024 (November 27, 2024)
Note
See pull request: Awake -
TILLSON_11272024
- #35250 Updates the icon retry policy, making sure that the icon consistently and correctly renders in the tray.
- #35848 Fixed a bug where custom tray time shortcuts for longer than 24 hours would be parsed as zero hours/zero minutes.
- #34716 Properly recover the state icon in the tray after an
explorer.execrash. - Added configuration safeguards to make sure that invalid values for timed keep-awake times do not result in exceptions.
- Updated the tray initialization logic, making sure we wait for it to be properly created before setting icons.
- Expanded logging capabilities to track invoking functions.
- Added command validation logic to make sure that incorrect command line arguments display an error.
- Display state now shown in the tray tooltip.
- When timed mode is used, changing the display setting will no longer reset the timer.
PROMETHEAN_09082024 (September 8, 2024)
Note
See pull request: Awake -
PROMETHEAN_09082024
- Updating the initialization logic to make sure that settings are respected for proper group policy and single-instance detection.
- #34148 Fixed a bug from the previous release that incorrectly synchronized threads for shell icon creation and initialized parent PID when it was not parented.
VISEGRADRELAY_08152024 (August 15, 2024)
Note
See pull request: Awake -
VISEGRADRELAY_08152024
- #34148 Fixes the issue where the Awake icon is not displayed.
- #17969 Add the ability to bind the process target to the parent of the Awake launcher.
- PID binding now correctly ignores irrelevant parameters (e.g., expiration, interval) and only works for indefinite periods.
- Amending the native API surface to make sure that the Win32 error is set correctly.
DAISY023_04102024 (April 10, 2024)
Note
See pull request: Awake Update -
DAISY023_04102024
- #33630 When in the UI and you select
0as hours and0as minutes inTIMEDawake mode, the UI becomes non-responsive whenever you try to get back to timed after it rolls back toPASSIVE. - #12714 Adds the option to keep track of Awake state through tray tooltip.
- #11996 Adds custom icons support for mode changes in Awake.
- Removes the dependency on
System.Windows.Formsand instead uses native Windows APIs to create the tray icon. - Removes redundant/unused code that impacted application performance.
- Updates dependent packages to their latest versions (
Microsoft.Windows.CsWinRTandSystem.Reactive).
ATRIOX_04132023 (April 13, 2023)
- Moves from using
Task.Runto spin up threads to actually using a blocking queue that properly sets thread parameters on the same thread. - Moves back to using native Windows APIs through P/Invoke instead of using a package.
- Move away from custom logging and to built-in logging that is consistent with the rest of PowerToys.
- Updates
System.CommandLineandSystem.Reactiveto the latest preview versions of the package.
LIBRARIAN_03202022 (March 20, 2022)
- Changed the tray context menu to be following OS conventions instead of the style offered by Windows Forms. This introduces better support for DPI scaling and theming in the future.
- Custom times in the tray can now be configured in the
settings.jsonfile for awake, through thetray_timesproperty. The property values are representative of aDictionary<string, int>and can be in the form of"YOUR_NAME": LENGTH_IN_SECONDS:
{
"properties": {
"awake_keep_display_on": true,
"awake_mode": 2,
"awake_hours": 0,
"awake_minutes": 3,
"tray_times": {
"Custom length": 1800,
"Another custom length": 3600
}
},
"name": "Awake",
"version": "1.0"
}
- Proper Awake background window closure was implemented to ensure that the process collects the correct handle instead of the empty one that was previously done through
System.Diagnostics.Process.GetCurrentProcess().CloseMainWindow(). This likely can help with the Awake process that is left hanging after PowerToys itself closes.