From 0b41102f1ee9696274a177db6aa913b8481377de Mon Sep 17 00:00:00 2001 From: Xyueta <101590573+Xyueta@users.noreply.github.com> Date: Sat, 25 Oct 2025 14:32:42 +0000 Subject: [PATCH 1/6] fix: unpin network from explorer --- .../Network Discovery/Disable Network Discovery Services.cmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/playbook/Executables/AtlasDesktop/6. Advanced Configuration/Services/Network Discovery/Disable Network Discovery Services.cmd b/src/playbook/Executables/AtlasDesktop/6. Advanced Configuration/Services/Network Discovery/Disable Network Discovery Services.cmd index 60d6d24eae..a71edcf5dc 100644 --- a/src/playbook/Executables/AtlasDesktop/6. Advanced Configuration/Services/Network Discovery/Disable Network Discovery Services.cmd +++ b/src/playbook/Executables/AtlasDesktop/6. Advanced Configuration/Services/Network Discovery/Disable Network Discovery Services.cmd @@ -23,7 +23,7 @@ reg add "HKLM\SOFTWARE\AtlasOS\Services\%settingName%" /v path /t REG_SZ /d "%sc if not "%~1"=="/silent" call "%windir%\AtlasModules\Scripts\serviceWarning.cmd" %* :: Unpin 'Network' from Explorer sidebar -reg import "%windir%\AtlasDesktop\3. General Configuration\File Sharing\Network Navigation Pane\Disable Network Navigation Pane (default).reg" > nul +call "%windir%\AtlasDesktop\3. General Configuration\File Sharing\Network Navigation Pane\Disable Network Navigation Pane (default).cmd" > nul call setSvc.cmd fdPHost 4 call setSvc.cmd FDResPub 4 @@ -33,4 +33,4 @@ if "%~1"=="/silent" exit /b echo Finished, please reboot your device for changes to apply. pause -exit /b \ No newline at end of file +exit /b From 8de5062f3a92b511914efacd0844d60f61d47f1b Mon Sep 17 00:00:00 2001 From: Marc Durdin Date: Sat, 15 Nov 2025 05:58:52 +0100 Subject: [PATCH 2/6] Write `HKCU\Keyboard Layout\Toggle` and `...\Accessibility` values as REG_SZ instead of REG_DWORD The three values rewritten in `HKCU\Keyboard Layout\Toggle` should be of type REG_SZ: https://github.com/Atlas-OS/Atlas/blob/0b41102f1ee9696274a177db6aa913b8481377de/src/playbook/Executables/AtlasModules/Scripts/Modules/Qol/Qol.psm1#L47-L50 Expectation: Image I also checked the `HKCU\Control Panel\Accessibility\...` `Flag` values rewritten in the same function in the registry in a stock install of Windows, and those were also of type REG_SZ, so have patched those too. I have not checked other values in other functions. We received reports of this causing crashes in Keyman; see https://github.com/keymanapp/keyman/issues/14342. (We have now patched Keyman to work around the unexpected data type.) --- .../AtlasModules/Scripts/Modules/Qol/Qol.psm1 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/playbook/Executables/AtlasModules/Scripts/Modules/Qol/Qol.psm1 b/src/playbook/Executables/AtlasModules/Scripts/Modules/Qol/Qol.psm1 index acb9808e8f..471255746b 100644 --- a/src/playbook/Executables/AtlasModules/Scripts/Modules/Qol/Qol.psm1 +++ b/src/playbook/Executables/AtlasModules/Scripts/Modules/Qol/Qol.psm1 @@ -38,16 +38,16 @@ function Disable-ReadAndScan { # Function to disable commonly annoying features and shortcuts function Disable-AnnoyingFeaturesAndShortcuts { - reg add "HKCU\Control Panel\Accessibility\HighContrast" /v "Flags" /t REG_DWORD /d 0 /f - reg add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_DWORD /d 0 /f - reg add "HKCU\Control Panel\Accessibility\MouseKeys" /v "Flags" /t REG_DWORD /d 0 /f - reg add "HKCU\Control Panel\Accessibility\StickyKeys" /v "Flags" /t REG_DWORD /d 0 /f - reg add "HKCU\Control Panel\Accessibility\ToggleKeys" /v "Flags" /t REG_DWORD /d 0 /f + reg add "HKCU\Control Panel\Accessibility\HighContrast" /v "Flags" /t REG_SZ /d "0" /f + reg add "HKCU\Control Panel\Accessibility\Keyboard Response" /v "Flags" /t REG_SZ /d "0" /f + reg add "HKCU\Control Panel\Accessibility\MouseKeys" /v "Flags" /t REG_SZ /d "0" /f + reg add "HKCU\Control Panel\Accessibility\StickyKeys" /v "Flags" /t REG_SZ /d "0" /f + reg add "HKCU\Control Panel\Accessibility\ToggleKeys" /v "Flags" /t REG_SZ /d "0" /f reg delete "HKCU\Control Panel\Input Method\Hot Keys\00000104" /f - reg add "HKCU\Keyboard Layout\Toggle" /v "Layout Hotkey" /t REG_DWORD /d 3 /f - reg add "HKCU\Keyboard Layout\Toggle" /v "Language Hotkey" /t REG_DWORD /d 3 /f - reg add "HKCU\Keyboard Layout\Toggle" /v "Hotkey" /t REG_DWORD /d 3 /f + reg add "HKCU\Keyboard Layout\Toggle" /v "Layout Hotkey" /t REG_SZ /d "3" /f + reg add "HKCU\Keyboard Layout\Toggle" /v "Language Hotkey" /t REG_SZ /d "3" /f + reg add "HKCU\Keyboard Layout\Toggle" /v "Hotkey" /t REG_SZ /d "3" /f reg add "HKCU\Software\Microsoft\Narrator\NoRoam" /v "WinEnterLaunchEnabled" /t REG_DWORD /d 0 /f } From 845b29ccaf1b74f2eaddf59b8fc17340525b8fad Mon Sep 17 00:00:00 2001 From: SkyEmie_ Date: Sat, 17 Jan 2026 00:54:53 +0100 Subject: [PATCH 3/6] playbook: fix missing comma in devices list --- src/playbook/Executables/DISABLEPNP.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/playbook/Executables/DISABLEPNP.ps1 b/src/playbook/Executables/DISABLEPNP.ps1 index 7612b08db3..651c512970 100644 --- a/src/playbook/Executables/DISABLEPNP.ps1 +++ b/src/playbook/Executables/DISABLEPNP.ps1 @@ -4,7 +4,7 @@ $devices = @( "AMD SMBus", "Base System Device", "Composite Bus Enumerator", - "Direct memory access controller" + "Direct memory access controller", "High precision event timer", "Intel Management Engine", "Intel SMBus", From 4773bc65610c5ffee8b7f73b90319f594a2bcd0b Mon Sep 17 00:00:00 2001 From: Sten Tijhuis <102481635+Stensel8@users.noreply.github.com> Date: Sun, 22 Mar 2026 20:53:15 +0100 Subject: [PATCH 4/6] chore: Update bug report template Bumps the template to 25H2, which is the current Windows release that is supported by AtlasOS. --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9d50fdcb9c..f3a3e19b88 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -58,7 +58,7 @@ body: description: 'If you''re on v0.4.0, see the workarounds page first: https://github.com/orgs/Atlas-OS/projects/7/views/5' options: - Atlas v0.5.0 for Windows 10 22H2 - - Atlas v0.5.0 for Windows 11 24H2 + - Atlas v0.5.0 for Windows 11 25H2 validations: required: true From 5f30c704a4f4ef63cad57b572c072c6c9e318228 Mon Sep 17 00:00:00 2001 From: Sten Tijhuis <102481635+Stensel8@users.noreply.github.com> Date: Tue, 24 Mar 2026 16:44:21 +0100 Subject: [PATCH 5/6] Update bug report template in YAML format --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index f3a3e19b88..e95bf3d98d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -57,7 +57,7 @@ body: label: Atlas Version description: 'If you''re on v0.4.0, see the workarounds page first: https://github.com/orgs/Atlas-OS/projects/7/views/5' options: - - Atlas v0.5.0 for Windows 10 22H2 + - Atlas v0.5.0 for Windows 11 24H2 - Atlas v0.5.0 for Windows 11 25H2 validations: required: true From 1ed9630616b29f0c7974e8bd76a94fc06f60388c Mon Sep 17 00:00:00 2001 From: Lucas Luo <98566376+LWZsama@users.noreply.github.com> Date: Wed, 29 Apr 2026 11:07:53 +0100 Subject: [PATCH 6/6] fix: correct pull request labeler paths --- .github/labeler.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index e2963814d5..d790e7f7c3 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -8,24 +8,20 @@ actions: # Playbook playbook: -- src/**/* +- src/playbook/**/* appx: -- src/Configuration/atlas/appx.yml +- src/playbook/Configuration/atlas/appx.yml components: -- src/Configuration/atlas/components.yml -- src/Configuration/atlas/packages.yml - -config: -- src/Configuration/atlas/config.yml +- src/playbook/Configuration/atlas/components.yml services: -- src/Configuration/atlas/services.yml +- src/playbook/Configuration/atlas/services.yml tweaks: -- src/Configuration/tweaks.yml -- src/Configuration/tweaks/**/* +- src/playbook/Configuration/tweaks.yml +- src/playbook/Configuration/tweaks/**/* desktop folder: -- src/Executables/AtlasDesktop/**/* +- src/playbook/Executables/AtlasDesktop/**/*