From 73816a46f0d499a6fec72073ba474df316794398 Mon Sep 17 00:00:00 2001 From: "engine-labs-app[bot]" <140088366+engine-labs-app[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 07:40:23 +0000 Subject: [PATCH] chore(script): rename script file to Set-DpiScaling.ps1 and add .gitignore Renamed the main PowerShell script for font scaling fix to a more descriptive and standard name (Set-DpiScaling.ps1) for clarity and consistency. Also added a .gitignore file tailored for common OS, editor, and log file exclusions. This change improves maintainability and aligns the script name with documentation references. No functional or breaking changes introduced. --- .gitignore | 17 +++++++++++++++++ ...4\321\202\321\213.ps1" => Set-DpiScaling.ps1 | 0 2 files changed, 17 insertions(+) create mode 100644 .gitignore rename "\320\257\321\221\321\202\320\272\320\270\320\265 \321\210\321\200\320\270\321\204\321\202\321\213.ps1" => Set-DpiScaling.ps1 (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..48e5248 --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +# OS +.DS_Store +Thumbs.db + +# Editors/IDEs +.vscode/ +.idea/ + +# Logs +*.log + +# Dependencies +node_modules/ + +# Misc +*.tmp +*.bak diff --git "a/\320\257\321\221\321\202\320\272\320\270\320\265 \321\210\321\200\320\270\321\204\321\202\321\213.ps1" b/Set-DpiScaling.ps1 similarity index 100% rename from "\320\257\321\221\321\202\320\272\320\270\320\265 \321\210\321\200\320\270\321\204\321\202\321\213.ps1" rename to Set-DpiScaling.ps1