repo
stringlengths
5
53
pr_number
int32
1
321k
task_type
stringclasses
2 values
issue_text
stringlengths
0
81.2k
pr_title
stringlengths
1
319
pr_body
stringlengths
0
105k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
gold_diff
stringlengths
0
202M
changed_files
listlengths
0
100
review_threads
listlengths
0
100
test_patch
stringlengths
0
23.4M
merged
bool
1 class
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
I wonder if this should be a `TextSpan` (so a position in the text document) instead of a word.
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs b/src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs new file mode 100644 index 0000000000..c0030d5127 --- /dev/null +++ b/src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs @@ -0,0 +1,26 @@ +namespace DevToys.Api; + +/// ...
[ "src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs" ]
[ { "comment": "I wonder if this should be a `TextSpan` (so a position in the text document) instead of a word.", "path": "src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs", "hunk": "@@ -0,0 +1,14 @@\n+namespace DevToys.Api;\n+\n+public record UIHoverTooltip\n+{\n+ public string Word { ge...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
Please add this event to the interface above.
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIMultiLineTextInput.cs b/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIMultiLineTextInput.cs index b0e7a866a3..af901b647d 100644 --- a/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIMultiLineTextInput.cs +++ b/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIMul...
[ "src/app/dev/DevToys.Api/Tool/GUI/Components/IUIMultiLineTextInput.cs" ]
[ { "comment": "Please add this event to the interface above.", "path": "src/app/dev/DevToys.Api/Tool/GUI/Components/IUIMultiLineTextInput.cs", "hunk": "@@ -122,6 +134,7 @@ internal set\n }\n }\n \n+ public event EventHandler? HoverTooltipChanged;", "resolving_sha": "15a7b7f4a9dc709a680...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
I think I understand why you made it this way specifically for JWT. You get the list of claims a JWT, you get the localized description for it and try to display it at a tooltip. But you don't know where the claim is in the JSON. So you rely on the current word position. It has a few drawback though: 1. You can to cl...
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Blazor/Components/UIElements/UIMultiLineTextInputPresenter.razor.cs b/src/app/dev/DevToys.Blazor/Components/UIElements/UIMultiLineTextInputPresenter.razor.cs index cd3f1df02e..d4b3a02f2d 100644 --- a/src/app/dev/DevToys.Blazor/Components/UIElements/UIMultiLineTextInputPresenter.razor.cs...
[ "src/app/dev/DevToys.Blazor/Components/UIElements/UIMultiLineTextInputPresenter.razor.cs" ]
[ { "comment": "I think I understand why you made it this way specifically for JWT. You get the list of claims a JWT, you get the localized description for it and try to display it at a tooltip. But you don't know where the claim is in the JSON. So you rely on the current word position.\r\nIt has a few drawback t...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
There's already **Newtonsoft.Json** on line 420. It excludes the runtime because DevToys comes with Newtonsoft.Json already, so we avoid having 2 copies or it.
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Tools/DevToys.Tools.csproj b/src/app/dev/DevToys.Tools/DevToys.Tools.csproj index a04aae9f2c..4d25145f90 100644 --- a/src/app/dev/DevToys.Tools/DevToys.Tools.csproj +++ b/src/app/dev/DevToys.Tools/DevToys.Tools.csproj @@ -53,6 +53,11 @@ <AutoGen>True</AutoGen> <DependentUp...
[ "src/app/dev/DevToys.Tools/DevToys.Tools.csproj" ]
[ { "comment": "There's already **Newtonsoft.Json** on line 420. It excludes the runtime because DevToys comes with Newtonsoft.Json already, so we avoid having 2 copies or it.", "path": "src/app/dev/DevToys.Tools/DevToys.Tools.csproj", "hunk": "@@ -398,6 +407,9 @@\n </ItemGroup>\n \n <ItemGroup>\n+ ...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
Please add XML documentation for all the public parts here. It will be exposed in the documentation.
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs b/src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs new file mode 100644 index 0000000000..c0030d5127 --- /dev/null +++ b/src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs @@ -0,0 +1,26 @@ +namespace DevToys.Api; + +/// ...
[ "src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs" ]
[ { "comment": "Please add XML documentation for all the public parts here. It will be exposed in the documentation.", "path": "src/app/dev/DevToys.Api/Tool/GUI/Components/UIHoverTooltip.cs", "hunk": "@@ -0,0 +1,14 @@\n+namespace DevToys.Api;\n+\n+public record UIHoverTooltip", "resolving_sha": "15a7...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
Please add XML documentation on these properties.
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Api/Core/ResultInfo.cs b/src/app/dev/DevToys.Api/Core/ResultInfo.cs index a6e02d45e6..88ca765d56 100644 --- a/src/app/dev/DevToys.Api/Core/ResultInfo.cs +++ b/src/app/dev/DevToys.Api/Core/ResultInfo.cs @@ -1,18 +1,107 @@ -namespace DevToys.Api; +using static System.Runtime.InteropServ...
[ "src/app/dev/DevToys.Api/Core/ResultInfo.cs" ]
[ { "comment": "Please add XML documentation on these properties.", "path": "src/app/dev/DevToys.Api/Core/ResultInfo.cs", "hunk": "@@ -1,18 +1,89 @@\n-namespace DevToys.Api;\n+using static System.Runtime.InteropServices.JavaScript.JSType;\n+\n+namespace DevToys.Api;\n \n /// <summary>\n /// Record to co...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
Do we really want to save this string in the settings? We're basically saving a user input on the hard drive by doing this. Settings aren't encrypted. Could this be a risky thing to do? Same thing for Audience.
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Tools/Tools/EncodersDecoders/JsonWebToken/JsonWebTokenEncoderGuiTool.cs b/src/app/dev/DevToys.Tools/Tools/EncodersDecoders/JsonWebToken/JsonWebTokenEncoderGuiTool.cs new file mode 100644 index 0000000000..88c2f1781e --- /dev/null +++ b/src/app/dev/DevToys.Tools/Tools/EncodersDecoders/Js...
[ "src/app/dev/DevToys.Tools/Tools/EncodersDecoders/JsonWebToken/JsonWebTokenEncoderGuiTool.cs" ]
[ { "comment": "Do we really want to save this string in the settings? We're basically saving a user input on the hard drive by doing this. Settings aren't encrypted. Could this be a risky thing to do?\r\n\r\nSame thing for Audience.", "path": "src/app/dev/DevToys.Tools/Tools/EncodersDecoders/JsonWebToken/Jso...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
Same thing here. Is it risky to save this user input in a setting that is persisted on the hard drive?
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Tools/Tools/EncodersDecoders/JsonWebToken/JsonWebTokenDecoderGuiTool.cs b/src/app/dev/DevToys.Tools/Tools/EncodersDecoders/JsonWebToken/JsonWebTokenDecoderGuiTool.cs new file mode 100644 index 0000000000..d57b4d6116 --- /dev/null +++ b/src/app/dev/DevToys.Tools/Tools/EncodersDecoders/Js...
[ "src/app/dev/DevToys.Tools/Tools/EncodersDecoders/JsonWebToken/JsonWebTokenDecoderGuiTool.cs" ]
[ { "comment": "Same thing here. Is it risky to save this user input in a setting that is persisted on the hard drive?", "path": "src/app/dev/DevToys.Tools/Tools/EncodersDecoders/JsonWebToken/JsonWebTokenDecoderGuiTool.cs", "hunk": "@@ -0,0 +1,593 @@\n+using DevToys.Tools.Helpers.JsonWebToken;\n+using De...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
Should we return?
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs b/src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs new file mode 100644 index 0000000000..f8059790d5 --- /dev/null +++ b/src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs @@ -0,0...
[ "src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs" ]
[ { "comment": "Should we return?", "path": "src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs", "hunk": "@@ -0,0 +1,372 @@\n+using System.Security.Cryptography;\n+using System.Text;\n+using System.Text.Json;\n+using DevToys.Tools.Helpers.Core;\n+using DevToys.Tools.Models;\n+us...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
Any chance the exception contains user personal information?
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs b/src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs new file mode 100644 index 0000000000..f8059790d5 --- /dev/null +++ b/src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs @@ -0,0...
[ "src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs" ]
[ { "comment": "Any chance the exception contains user personal information?", "path": "src/app/dev/DevToys.Tools/Helpers/JsonWebToken/JsonWebTokenEncoderHelper.cs", "hunk": "@@ -0,0 +1,372 @@\n+using System.Security.Cryptography;\n+using System.Text;\n+using System.Text.Json;\n+using DevToys.Tools.Helpe...
true
DevToys-app/DevToys
1,078
comment_to_fix
Ported Json Web Token Encoder Decoder to DevToys 2.0
Is this condition doing something?
7d3896855c03ebba419e00fc0647c38f8a8c57c4
15a7b7f4a9dc709a680c03a7be268b87e1079214
diff --git a/src/app/dev/DevToys.Tools/Helpers/Core/JsonWebTokenPayloadConverter.cs b/src/app/dev/DevToys.Tools/Helpers/Core/JsonWebTokenPayloadConverter.cs new file mode 100644 index 0000000000..5f82d3b33f --- /dev/null +++ b/src/app/dev/DevToys.Tools/Helpers/Core/JsonWebTokenPayloadConverter.cs @@ -0,0 +1,134 @@ +us...
[ "src/app/dev/DevToys.Tools/Helpers/Core/JsonWebTokenPayloadConverter.cs" ]
[ { "comment": "Is this condition doing something?", "path": "src/app/dev/DevToys.Tools/Helpers/Core/JsonWebTokenPayloadConverter.cs", "hunk": "@@ -0,0 +1,140 @@\n+using System.Globalization;\n+using System.Text.Json;\n+using System.Text.Json.Serialization;\n+\n+namespace DevToys.Tools.Helpers.Core;\n+\n...
true
DevToys-app/DevToys
1,225
issue_to_patch
Improve font appearance on non-Ubuntu Linux desktops
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [x] New feature or enhancement - [x] UI...
fb096f8fede5a7ba336e5a9f14c95649b1135b67
0a7e009c02f6d977edfbf19220711e0cfe2c30be
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b4c9e42158..4c8e6a2a5d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -66,7 +66,7 @@ You can contribute to DevToys app by: ``` ### Build, Run & Debug -#### If you are using JetBains Rider: +#### If you are using JetBrains Rider: 1. Open `src/DevToys-M...
[ "CONTRIBUTING.md", "src/app/dev/DevToys.Blazor/Assets/sass/theme/_default.scss", "src/app/dev/DevToys.Blazor/Assets/sass/theme/linux/dark.scss", "src/app/dev/DevToys.Blazor/Assets/sass/theme/linux/light.scss", "src/app/dev/DevToys.Blazor/wwwroot/css/devtoys.g.css" ]
[]
true
DevToys-app/DevToys
1,659
issue_to_patch
Allow Stack UI element to take all the space available
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [x] New feature or enhancement - [ ] UI...
290b0ae0c397b53875ed7ed874898a8da3b5646f
bde1d9ff7f38494908e0494f9dc092e6d5a022a3
diff --git a/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIStack.cs b/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIStack.cs index 8818748e33..074b578977 100644 --- a/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIStack.cs +++ b/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIStack.cs @@ -5,6 +5,11 @@ /// </summary> ...
[ "src/app/dev/DevToys.Api/Tool/GUI/Components/IUIStack.cs", "src/app/dev/DevToys.Blazor/Components/Layout/StackPanel/StackPanel.razor.cs", "src/app/dev/DevToys.Blazor/Components/UIElements/UIStackPresenter.razor", "src/app/dev/DevToys.Blazor/wwwroot/css/devtoys.g.css" ]
[]
true
DevToys-app/DevToys
1,505
issue_to_patch
New Crowdin updates
bfeafa7f29267836d038d186d42647720fd82dd6
d70775eb70b9b669eb27b3c914455fbd6049cd84
diff --git a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx index a8f1ca7d95..da04434c96 100644 --- a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx +++ b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx @@ -118,7 +118,7 @@ ...
[ "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.be-BY.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.en-GB.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.fa-IR.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.ru-RU.resx"...
[]
true
DevToys-app/DevToys
1,643
issue_to_patch
Critical Path Traversal (Zip Slip) Vulnerability in DevToys Extension Installation. ### Current behavior # GitHub Security Advisory: Critical Path Traversal (Zip Slip) Vulnerability in DevToys Extension Installation. ## Summary **CRITICAL SECURITY VULNERABILITY - IMMEDIATE CVE ASSIGNMENT REQUIRED** A critical path...
Updated extensions manager to handle CWE-22 & CWE-23
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [x] Bugfix - [ ] New feature or enhancement - [ ] UI...
bfeafa7f29267836d038d186d42647720fd82dd6
3f10b8420527f249a0e76f76bdf96f2fb45ebdcc
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 001b9a2422..d024a3caea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,13 +38,13 @@ jobs: run: ./build.cmd RunTests macos-latest: name: macOS - runs-on: macos-14 + runs-on: macos-15 timeout-min...
[ ".github/workflows/ci.yml", ".gitignore", "src/Directory.Packages.props", "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationManager.cs", "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationResult.cs", "src/app/dev/DevToys.Blazor/BuiltInTools/Extens...
[]
diff --git a/src/app/tests/DevToys.UnitTests/Blazor/BuiltInTools/ExtensionInstallationManagerTests.cs b/src/app/tests/DevToys.UnitTests/Blazor/BuiltInTools/ExtensionInstallationManagerTests.cs new file mode 100644 index 0000000000..546001f16d --- /dev/null +++ b/src/app/tests/DevToys.UnitTests/Blazor/BuiltInTools/Exten...
true
DevToys-app/DevToys
1,450
issue_to_patch
New Crowdin updates
453ffd1b342ad4237fa9b8f7c03589383bc8ab0b
358fdc595d062161445ab877b5216e57c8b35d47
diff --git a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.fa-IR.resx b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.fa-IR.resx index 73310aa0d9..144e56fa0c 100644 --- a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.fa-IR.resx +++ b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.fa-IR.resx @@ -121,6 +121,6 @@ ...
[ "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.fa-IR.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.he-IL.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.vi-VN.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.da-DK.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.fa-IR.resx"...
[]
true
DevToys-app/DevToys
139
issue_to_patch
Image converter tool
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [x] Feature - [ ] Code style update (fo...
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/README.md b/README.md index 98b9740023..2445578102 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ Many tools are available. - Graphic - Color Blindness Simulator - PNG / JPEG Compressor + - Image Converter ... and more are coming! @@ -95,6 +96,7 @@ Here is the list of tool nam...
[ "README.md", "src/dev/impl/DevToys/DevToys.csproj", "src/dev/impl/DevToys/Helpers/ImageHelper.cs", "src/dev/impl/DevToys/Helpers/StorageFileHelper.cs", "src/dev/impl/DevToys/LanguageManager.cs", "src/dev/impl/DevToys/Strings/cs-CZ/ImageConverter.resw", "src/dev/impl/DevToys/Strings/en-US/ImageConverter....
[ { "comment": "You don't seem to use these methods. Can you remove them if it's the case?", "path": "src/dev/impl/DevToys/Helpers/ImageHelper.cs", "hunk": "@@ -0,0 +1,71 @@\n+#nullable enable\n+\n+using System;\n+using System.Threading.Tasks;\n+using Windows.Foundation;\n+using Windows.Graphics.Imaging;...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
You don't seem to use these methods. Can you remove them if it's the case?
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/Helpers/ImageHelper.cs b/src/dev/impl/DevToys/Helpers/ImageHelper.cs new file mode 100644 index 0000000000..851c82d6b8 --- /dev/null +++ b/src/dev/impl/DevToys/Helpers/ImageHelper.cs @@ -0,0 +1,65 @@ +#nullable enable + +using System; +using System.Threading.Tasks; +using Windows.Foun...
[ "src/dev/impl/DevToys/Helpers/ImageHelper.cs" ]
[ { "comment": "You don't seem to use these methods. Can you remove them if it's the case?", "path": "src/dev/impl/DevToys/Helpers/ImageHelper.cs", "hunk": "@@ -0,0 +1,71 @@\n+#nullable enable\n+\n+using System;\n+using System.Threading.Tasks;\n+using Windows.Foundation;\n+using Windows.Graphics.Imaging;...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
Can you please also add the PowerShell protocol too?
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/README.md b/README.md index 98b9740023..2445578102 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ Many tools are available. - Graphic - Color Blindness Simulator - PNG / JPEG Compressor + - Image Converter ... and more are coming! @@ -95,6 +96,7 @@ Here is the list of tool nam...
[ "README.md" ]
[ { "comment": "Can you please also add the PowerShell protocol too?", "path": "README.md", "hunk": "@@ -49,6 +49,7 @@ Many tools are available.\n - Graphic\r\n - Color Blindness Simulator\r\n - PNG / JPEG Compressor\r\n+ - Image Converter\r", "resolving_sha": "4cbbdcfb95c8821be0a4caa82ef8cbc82a7...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
I don't see where these methods are used, except IsJpegFormat. Can we remove them if they're not used please?
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/Helpers/ImageHelper.cs b/src/dev/impl/DevToys/Helpers/ImageHelper.cs new file mode 100644 index 0000000000..851c82d6b8 --- /dev/null +++ b/src/dev/impl/DevToys/Helpers/ImageHelper.cs @@ -0,0 +1,65 @@ +#nullable enable + +using System; +using System.Threading.Tasks; +using Windows.Foun...
[ "src/dev/impl/DevToys/Helpers/ImageHelper.cs" ]
[ { "comment": "I don't see where these methods are used, except IsJpegFormat. Can we remove them if they're not used please?", "path": "src/dev/impl/DevToys/Helpers/ImageHelper.cs", "hunk": "@@ -0,0 +1,71 @@\n+#nullable enable\n+\n+using System;\n+using System.Threading.Tasks;\n+using Windows.Foundation...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
please use Ordinal String.Equals instead of `is` keywrod :)
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/Helpers/ImageHelper.cs b/src/dev/impl/DevToys/Helpers/ImageHelper.cs new file mode 100644 index 0000000000..851c82d6b8 --- /dev/null +++ b/src/dev/impl/DevToys/Helpers/ImageHelper.cs @@ -0,0 +1,65 @@ +#nullable enable + +using System; +using System.Threading.Tasks; +using Windows.Foun...
[ "src/dev/impl/DevToys/Helpers/ImageHelper.cs" ]
[ { "comment": "please use Ordinal String.Equals instead of `is` keywrod :)", "path": "src/dev/impl/DevToys/Helpers/ImageHelper.cs", "hunk": "@@ -0,0 +1,71 @@\n+#nullable enable\n+\n+using System;\n+using System.Threading.Tasks;\n+using Windows.Foundation;\n+using Windows.Graphics.Imaging;\n+using Window...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
In what scenario would `encodingOptions` be null?
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/Helpers/ImageHelper.cs b/src/dev/impl/DevToys/Helpers/ImageHelper.cs new file mode 100644 index 0000000000..851c82d6b8 --- /dev/null +++ b/src/dev/impl/DevToys/Helpers/ImageHelper.cs @@ -0,0 +1,65 @@ +#nullable enable + +using System; +using System.Threading.Tasks; +using Windows.Foun...
[ "src/dev/impl/DevToys/Helpers/ImageHelper.cs" ]
[ { "comment": "In what scenario would `encodingOptions` be null?", "path": "src/dev/impl/DevToys/Helpers/ImageHelper.cs", "hunk": "@@ -0,0 +1,71 @@\n+#nullable enable\n+\n+using System;\n+using System.Threading.Tasks;\n+using Windows.Foundation;\n+using Windows.Graphics.Imaging;\n+using Windows.Storage....
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
Can we use NotSupportedException instead?
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/Helpers/ImageHelper.cs b/src/dev/impl/DevToys/Helpers/ImageHelper.cs new file mode 100644 index 0000000000..851c82d6b8 --- /dev/null +++ b/src/dev/impl/DevToys/Helpers/ImageHelper.cs @@ -0,0 +1,65 @@ +#nullable enable + +using System; +using System.Threading.Tasks; +using Windows.Foun...
[ "src/dev/impl/DevToys/Helpers/ImageHelper.cs" ]
[ { "comment": "Can we use NotSupportedException instead?", "path": "src/dev/impl/DevToys/Helpers/ImageHelper.cs", "hunk": "@@ -0,0 +1,71 @@\n+#nullable enable\n+\n+using System;\n+using System.Threading.Tasks;\n+using Windows.Foundation;\n+using Windows.Graphics.Imaging;\n+using Windows.Storage.Streams;...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
Please provide a copy of this RESW file in every other language folder (even if not translated). This would help translators to find what isn't translated yet.
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/Strings/en-US/ImageConverter.resw b/src/dev/impl/DevToys/Strings/en-US/ImageConverter.resw new file mode 100644 index 0000000000..ca2eeb44f7 --- /dev/null +++ b/src/dev/impl/DevToys/Strings/en-US/ImageConverter.resw @@ -0,0 +1,205 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + ...
[ "src/dev/impl/DevToys/Strings/en-US/ImageConverter.resw" ]
[ { "comment": "Please provide a copy of this RESW file in every other language folder (even if not translated). This would help translators to find what isn't translated yet.", "path": "src/dev/impl/DevToys/Strings/en-US/ImageConverter.resw", "hunk": "@@ -0,0 +1,202 @@\n+<?xml version=\"1.0\" encoding=\...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
Since `ComputePropertiesAsync` and `HumanizeFileSize` also exist in Png / Jpeg Compressor, you can move these methods to an internal helper to avoid duplicating the code.
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs b/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs new file mode 100644 index 0000000000..11788d9390 --- /dev/null +++ b/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverte...
[ "src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs" ]
[ { "comment": "Since `ComputePropertiesAsync` and `HumanizeFileSize` also exist in Png / Jpeg Compressor, you can move these methods to an internal helper to avoid duplicating the code.", "path": "src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs", "hunk": "@@ -0,0 +...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
Don't forget to dispose the bitmap when you don't need it anymore 😉
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs b/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs new file mode 100644 index 0000000000..11788d9390 --- /dev/null +++ b/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverte...
[ "src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs" ]
[ { "comment": "Don't forget to dispose the bitmap when you don't need it anymore 😉", "path": "src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs", "hunk": "@@ -0,0 +1,118 @@\n+#nullable enable\n+\n+using System;\n+using System.Collections.Generic;\n+using System.Thr...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
Here too, please don't forget to dispose this resource after `FlushAsync`.
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConverterToolViewModel.cs b/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConverterToolViewModel.cs new file mode 100644 index 0000000000..358050bef6 --- /dev/null +++ b/src/dev/impl/DevToys/ViewModels/Tools/Graphic/Image...
[ "src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConverterToolViewModel.cs" ]
[ { "comment": "Here too, please don't forget to dispose this resource after `FlushAsync`.", "path": "src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConverterToolViewModel.cs", "hunk": "@@ -0,0 +1,303 @@\n+#nullable enable\n+\n+using System;\n+using System.Collections.Generic;\n+using ...
true
DevToys-app/DevToys
139
comment_to_fix
Image converter tool
This property doesn't seem to be used anymore. Can we remove it?
0ebab4eeb28f8d94e7bc97738e1c9439ee892b67
4cbbdcfb95c8821be0a4caa82ef8cbc82a7822f4
diff --git a/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs b/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs new file mode 100644 index 0000000000..11788d9390 --- /dev/null +++ b/src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverte...
[ "src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs" ]
[ { "comment": "This property doesn't seem to be used anymore. Can we remove it?", "path": "src/dev/impl/DevToys/ViewModels/Tools/Graphic/ImageConverter/ImageConversionWorkItem.cs", "hunk": "@@ -0,0 +1,132 @@\n+#nullable enable\n+\n+using System;\n+using System.Collections.Generic;\n+using System.IO;\n+u...
true
DevToys-app/DevToys
1,457
issue_to_patch
Blank window ### Current behavior Hello, On my Arch system the last version that opens with an usable UI is 2.0.2.0. All versions after this one are just opening a blank window. My current system has an AMD 780M GPU. I had the same behavior also on a Manjaro system, with Nvidia GPU. ### How to reproduce ...
Fixed blank window on Linux
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
453ffd1b342ad4237fa9b8f7c03589383bc8ab0b
2444052402e355b8ddc146339e4c23976e53a3d9
diff --git a/src/app/dev/platforms/desktop/DevToys.Linux/Components/BlazorWebView/BlazorWebView.cs b/src/app/dev/platforms/desktop/DevToys.Linux/Components/BlazorWebView/BlazorWebView.cs index f319640745..6269dd7947 100644 --- a/src/app/dev/platforms/desktop/DevToys.Linux/Components/BlazorWebView/BlazorWebView.cs +++ b...
[ "src/app/dev/platforms/desktop/DevToys.Linux/Components/BlazorWebView/BlazorWebView.cs" ]
[]
true
DevToys-app/DevToys
1,456
issue_to_patch
Blank window appearing in Alt+Tab on Window ### Current behavior ![image](https://github.com/user-attachments/assets/5a424ea5-4265-4fa8-a0c8-97d891031fbd) ### How to reproduce it (as minimally and precisely as possible) Open DevToys and press Alt+Tab ### Expected behavior No secondary blank window ### Screensh...
Fixed issue where a blank window appears in Alt+Tab in Windows
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
453ffd1b342ad4237fa9b8f7c03589383bc8ab0b
0caee9c0295af02a33db086b8869cd2586dba9ba
diff --git a/src/app/dev/platforms/desktop/DevToys.Windows/Controls/OverlayWindow.xaml.cs b/src/app/dev/platforms/desktop/DevToys.Windows/Controls/OverlayWindow.xaml.cs index 3d87456134..e9b3a297fd 100644 --- a/src/app/dev/platforms/desktop/DevToys.Windows/Controls/OverlayWindow.xaml.cs +++ b/src/app/dev/platforms/desk...
[ "src/app/dev/platforms/desktop/DevToys.Windows/Controls/OverlayWindow.xaml.cs", "src/app/dev/platforms/desktop/DevToys.Windows/Native/HwndSourceMessages.cs", "src/app/dev/platforms/desktop/DevToys.Windows/Native/NativeMethods.cs" ]
[]
true
DevToys-app/DevToys
1,449
issue_to_patch
Revert "Added support of per-extension assembly isolation"
Reverts DevToys-app/DevToys#1431 Discovered it's blocking MacOS in Release. Somehow I missed it when build the release bits. https://github.com/xamarin/xamarin-macios/issues/15685
0cb94b795eba0e084e2b1eb22f2602b8d41116c7
e58bf3d167fcbbfde9a4c460ff047bfc0dc9047e
diff --git a/src/app/dev/DevToys.Core/Mef/AssemblyIsolation.cs b/src/app/dev/DevToys.Core/Mef/AssemblyIsolation.cs deleted file mode 100644 index d60460223e..0000000000 --- a/src/app/dev/DevToys.Core/Mef/AssemblyIsolation.cs +++ /dev/null @@ -1,26 +0,0 @@ -using System.Reflection; -using System.Runtime.Loader; - -name...
[ "src/app/dev/DevToys.Core/Mef/AssemblyIsolation.cs", "src/app/dev/DevToys.Core/Mef/RecursiveDirectoryCatalog.cs" ]
[]
true
DevToys-app/DevToys
1,434
issue_to_patch
New Crowdin updates
874fca37af7ec2597fae60f75e4323a645facf26
43e2a86dbe9b4e59c3f360880bc47cdbe6664436
diff --git a/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.vi-VN.resx b/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.vi-VN.resx index 2140a0b577..bef7ed634f 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.vi-VN.resx ++...
[ "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.vi-VN.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.af-ZA.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.ar-SA.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.be-BY.resx", "s...
[]
true
DevToys-app/DevToys
1,435
issue_to_patch
Add support for UTF-32 glyphs in icon components
Added components that extend the size of the icon Glyph to 32-bit. ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [x] New feature or enhancement - [ ] UI change (pl...
874fca37af7ec2597fae60f75e4323a645facf26
4f45f8cab7d910a58e1ba621c7679ef044ed982d
diff --git a/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIButton.cs b/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIButton.cs index 04e48c509c..13efa6eaa3 100644 --- a/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIButton.cs +++ b/src/app/dev/DevToys.Api/Tool/GUI/Components/IUIButton.cs @@ -57,7 +57,7 @@ public inte...
[ "src/app/dev/DevToys.Api/Tool/GUI/Components/IUIButton.cs", "src/app/dev/DevToys.Api/Tool/GUI/Components/IUIDropDownButton.cs", "src/app/dev/DevToys.Api/Tool/GUI/Components/IUIDropDownMenuItem.cs", "src/app/dev/DevToys.Api/Tool/GUI/Components/IUIIcon.cs", "src/app/dev/DevToys.Api/Tool/GUI/Components/IUIUtf3...
[]
true
DevToys-app/DevToys
1,433
issue_to_patch
Ability to turn off (or move?) Recents in All Tools menu ### What improvement do you think would an existing feature or tool in DevToys? It would be nice if an option were implemented to disable Recents within the All Tools menu or to rearrange/configure what shows up in All Tools in some manner. I personally would l...
Added an option to disable recent tools
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [X] New feature or enhancement - [ ] UI...
003e38b87a6d15082911e0e21778aa60fbc51d78
31c58dde63c664b375e00846bab640baad8be217
diff --git a/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.Designer.cs b/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.Designer.cs index 400a510a4e..d6d769d9e2 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.Designer.cs +++ b/src/app/dev/DevToys.Blazor/BuiltInTools/Setting...
[ "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.Designer.cs", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/SettingsGuiTool.cs", "src/app/dev/DevToys.Core/Settings/PredefinedSettings.cs", "src/app/dev/DevToys.Core/Tools/GuiTool...
[]
true
DevToys-app/DevToys
1,429
issue_to_patch
[API] GetChildElementById doesn't work with Card ### Current behavior [`GetChildElementById`](https://github.com/DevToys-app/DevToys/blob/20136a6eedfb5270bc9b73cc14d1f97c8b837192/src/app/dev/DevToys.Api/Tool/GUI/Components/UIToolView.cs#L105) is not able to find element for pane children within the `SplitGrid`. ...
Fix GetChildElementById no access to elements inside Card
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [x] Bugfix - [ ] New feature or enhancement - [ ] UI...
a8f22e522727fe8ae91e06ac81ad42829390fcad
e9f755a7d9be4e21f5c79452c952152e66ee1bbb
diff --git a/src/app/dev/DevToys.Api/Tool/GUI/Components/IUICard.cs b/src/app/dev/DevToys.Api/Tool/GUI/Components/IUICard.cs index e70e30e60a..c3eaf01a99 100644 --- a/src/app/dev/DevToys.Api/Tool/GUI/Components/IUICard.cs +++ b/src/app/dev/DevToys.Api/Tool/GUI/Components/IUICard.cs @@ -1,7 +1,7 @@ namespace DevToys.A...
[ "src/app/dev/DevToys.Api/Tool/GUI/Components/IUICard.cs", "src/app/tests/DevToys.UnitTests/Tool/GUI/Components/UIElementWithChildrenTests.cs" ]
[]
diff --git a/src/app/tests/DevToys.UnitTests/Tool/GUI/Components/UIElementWithChildrenTests.cs b/src/app/tests/DevToys.UnitTests/Tool/GUI/Components/UIElementWithChildrenTests.cs new file mode 100644 index 0000000000..76b56f4346 --- /dev/null +++ b/src/app/tests/DevToys.UnitTests/Tool/GUI/Components/UIElementWithChildr...
true
DevToys-app/DevToys
1,431
issue_to_patch
Extension assembly isolation ### Current behavior DevToys relies on some dependencies, such as `NuGet.Versioning`, version `6.9`. If I create a DevToys extension that relies on a different version of `NuGet.Versioning`, such as `5.0` or `6.11`, it is ignored, and instead, the version `6.9` is used. This cause...
Added support of per-extension assembly isolation
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
a8f22e522727fe8ae91e06ac81ad42829390fcad
724c01c98fed0f0d45308b93ff08c6ff5917bddc
diff --git a/src/app/dev/DevToys.Core/Mef/AssemblyIsolation.cs b/src/app/dev/DevToys.Core/Mef/AssemblyIsolation.cs new file mode 100644 index 0000000000..d60460223e --- /dev/null +++ b/src/app/dev/DevToys.Core/Mef/AssemblyIsolation.cs @@ -0,0 +1,26 @@ +using System.Reflection; +using System.Runtime.Loader; + +namespac...
[ "src/app/dev/DevToys.Core/Mef/AssemblyIsolation.cs", "src/app/dev/DevToys.Core/Mef/RecursiveDirectoryCatalog.cs" ]
[]
true
DevToys-app/DevToys
1,432
issue_to_patch
Color Blindness Simulator page is not responsive (MacOS) ### Current behavior Images superimposed on MacOs ### How to reproduce it (as minimally and precisely as possible) _No response_ ### Expected behavior I think we need to have a scrollbar to see the other images ### Screenshots <img width="822" alt="Scre...
Fixed sizing issue in Image Viewer
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [X] UI...
be339a9f218b8a35d4bc1158dec344ebc7d3c255
de1d73d3085ba44ef0c7d95ca7cb109df475a372
diff --git a/src/app/dev/DevToys.Blazor/Components/UIElements/UIImageViewerPresenter.razor.scss b/src/app/dev/DevToys.Blazor/Components/UIElements/UIImageViewerPresenter.razor.scss index d7517e8a45..5b8e28e983 100644 --- a/src/app/dev/DevToys.Blazor/Components/UIElements/UIImageViewerPresenter.razor.scss +++ b/src/app/...
[ "src/app/dev/DevToys.Blazor/Components/UIElements/UIImageViewerPresenter.razor.scss", "src/app/dev/DevToys.Blazor/wwwroot/css/devtoys.g.css" ]
[]
true
DevToys-app/DevToys
1,426
issue_to_patch
New Crowdin updates
a8f22e522727fe8ae91e06ac81ad42829390fcad
bed13a83f42620d0a42ec87b51d99ef05c9543d3
diff --git a/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx b/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx index d0bb79e67b..8333534a69 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx +++ b/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx @@ -118,43 +118,43 @@...
[ "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx", "src/app/dev/platforms/desktop/DevToys.MacOS/Strings/AppMenuBar/AppMenuBar.ja-JP.resx" ]
[]
true
DevToys-app/DevToys
1,425
issue_to_patch
Dropdown list extends off-screen in Language Settings ### Current behavior When opening the dropdown list in Settings > Appearance > Language, the list extends off the screen, making the top choices unclickable. ### How to reproduce it (as minimally and precisely as possible) 1. Open DevToys on Windows. 1. Navigat...
Fixed issue where context menu and drop down list may appear over the title bar
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [X] UI...
581b05fc1c740441758089845a053c103f00325c
00f1df0cdc6be2680dfa6c91502088bd56fca262
diff --git a/src/app/dev/DevToys.Blazor/Assets/javascript/popover.js b/src/app/dev/DevToys.Blazor/Assets/javascript/popover.js index 9dbbb54870..a4a25bf941 100644 --- a/src/app/dev/DevToys.Blazor/Assets/javascript/popover.js +++ b/src/app/dev/DevToys.Blazor/Assets/javascript/popover.js @@ -362,7 +362,7 @@ class Popover...
[ "src/app/dev/DevToys.Blazor/Assets/javascript/popover.js", "src/app/dev/DevToys.Blazor/Assets/javascript/popover.js.map", "src/app/dev/DevToys.Blazor/Assets/javascript/popover.ts", "src/app/dev/DevToys.Blazor/wwwroot/css/devtoys.g.css", "src/app/dev/DevToys.Blazor/wwwroot/js/devtoys.g.js" ]
[]
true
DevToys-app/DevToys
1,422
issue_to_patch
Increase Window Resizable Area for Better Usability on High-Resolution Displays ### What improvement do you think would an existing feature or tool in DevToys? The window resizing functionality needs improvement, especially for users on high-resolution displays. Currently, the resizable area of the window’s edge is o...
Increase window resizable area on Windows #1413
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
87dc5cac532d085affe996bee3bf70c5068e36ef
41e2d5968d42a142a8200b97a1e067234e057638
diff --git a/src/app/dev/DevToys.Blazor/Components/Menu/NavBar/NavBar.razor b/src/app/dev/DevToys.Blazor/Components/Menu/NavBar/NavBar.razor index 46318c4c1d..e7ef559f88 100644 --- a/src/app/dev/DevToys.Blazor/Components/Menu/NavBar/NavBar.razor +++ b/src/app/dev/DevToys.Blazor/Components/Menu/NavBar/NavBar.razor @@ -2...
[ "src/app/dev/DevToys.Blazor/Components/Menu/NavBar/NavBar.razor", "src/app/dev/platforms/desktop/DevToys.Windows/Controls/MicaWindowWithOverlay.xaml", "src/app/dev/platforms/desktop/DevToys.Windows/Controls/MicaWindowWithOverlay.xaml.cs" ]
[]
true
DevToys-app/DevToys
1,382
issue_to_patch
Linux: Use desktop portals to get dark theme information >> If I might chime in on this issue: I noticed you changed the code to check the GTK theme name in order to check for dark mode. This is not an ideal way to check it. In fact, on a modern Gnome Desktop, it doesn't detect dark mode at all: ![Bildschirmfoto ...
Fixed a regression where Linux theme is not properly detected
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
20136a6eedfb5270bc9b73cc14d1f97c8b837192
06f11e716ac605f6368847c0196ea545976cced8
diff --git a/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs b/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs index b33f5704a0..5e978013e5 100644 --- a/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs +++ b/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListe...
[ "src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs" ]
[ { "comment": "You can remove this line. This is part of the sample as the Gio.Module is not initialized automatically. \n\nFor Libadwaita and GTK applications this is done automatically via the `Gtk.Application` class for all GTK dependencies including Gio.\n\n- [Gtk.Application](https://github.com/gircore/gir....
true
DevToys-app/DevToys
1,382
comment_to_fix
Fixed a regression where Linux theme is not properly detected
Somewhere here you should, if I read the documentation right, check for an G_IO_ERROR_CLOSED error, in which case the fallback should be called.
20136a6eedfb5270bc9b73cc14d1f97c8b837192
06f11e716ac605f6368847c0196ea545976cced8
diff --git a/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs b/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs index b33f5704a0..5e978013e5 100644 --- a/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs +++ b/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListe...
[ "src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs" ]
[ { "comment": "Somewhere here you should, if I read the documentation right, check for an G_IO_ERROR_CLOSED error, in which case the fallback should be called. ", "path": "src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs", "hunk": "@@ -147,8 +155,48 @@ private void UpdateSystemSettingsAn...
true
DevToys-app/DevToys
1,424
issue_to_patch
Get rid of the huge forehead for mac version ### What feature or new tool do you think should be added to DevToys? Get rid of this: <img width="1429" alt="image" src="https://github.com/user-attachments/assets/1370203d-3959-4d53-b57d-bac6540cd1fb"> ### Why do you think this is needed? It's not the prettiest UI...
Removed forehead on macOS
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [ ] New feature or enhancement - [X] UI...
87dc5cac532d085affe996bee3bf70c5068e36ef
cf7fdedee0a0d818c8c03b8169cd98bf33b24be5
diff --git a/src/app/dev/DevToys.Blazor/Assets/sass/theme/linux/dark.scss b/src/app/dev/DevToys.Blazor/Assets/sass/theme/linux/dark.scss index 61191d03e7..c344c964bc 100644 --- a/src/app/dev/DevToys.Blazor/Assets/sass/theme/linux/dark.scss +++ b/src/app/dev/DevToys.Blazor/Assets/sass/theme/linux/dark.scss @@ -423,4 +42...
[ "src/app/dev/DevToys.Blazor/Assets/sass/theme/linux/dark.scss", "src/app/dev/DevToys.Blazor/Assets/sass/theme/linux/light.scss", "src/app/dev/DevToys.Blazor/Assets/sass/theme/macos/dark.scss", "src/app/dev/DevToys.Blazor/Assets/sass/theme/macos/light.scss", "src/app/dev/DevToys.Blazor/Assets/sass/theme/wind...
[]
true
DevToys-app/DevToys
1,423
issue_to_patch
Searching json not discover "json formatter" ### Current behavior On french version, when searching "json" in main search filed, in list, I dont't have "formatteur de JSON" ### How to reproduce it (as minimally and precisely as possible) Go to main search field type json in the list, you don't have "formatteur de...
Improved search accuracy
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [X] New feature or enhancement - [ ] UI...
87dc5cac532d085affe996bee3bf70c5068e36ef
3c12122c6425a598247bff4e116613d4cdcd747e
diff --git a/src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs b/src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs index c819526bab..aee75ad7d5 100644 --- a/src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs +++ b/src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs @@ -362,15 +362,21 @@ public void SearchTools(string sear...
[ "src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs", "src/app/tests/DevToys.UnitTests/Core/Tools/GuiToolProviderTests.cs" ]
[]
diff --git a/src/app/tests/DevToys.UnitTests/Core/Tools/GuiToolProviderTests.cs b/src/app/tests/DevToys.UnitTests/Core/Tools/GuiToolProviderTests.cs index 689f8c138d..fcdb5e100d 100644 --- a/src/app/tests/DevToys.UnitTests/Core/Tools/GuiToolProviderTests.cs +++ b/src/app/tests/DevToys.UnitTests/Core/Tools/GuiToolProvid...
true
DevToys-app/DevToys
1,421
issue_to_patch
SixLabors.ImageSharp 3.1.4 vulnerable ### Current behavior DevToys.Api dependency SixLabors.ImageSharp version 3.1.4 is vulnerable: * Severity 1 - https://github.com/advisories/GHSA-qxrv-gp6x-rc23 * Severity 2 - https://github.com/advisories/GHSA-63p8-c4ww-9cg7 ### How to reproduce it (as minimally and precisel...
Fixed NuGet vulnerabilities
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
87dc5cac532d085affe996bee3bf70c5068e36ef
d4c7fa50cdcdcfe7ecdc419d76fa280eaabf2dd6
diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props index 36dfc0bec5..8fe950a5f3 100644 --- a/src/Directory.Packages.props +++ b/src/Directory.Packages.props @@ -1,6 +1,6 @@ <Project> <PropertyGroup> - <CommunityToolkitVersion>8.2.1</CommunityToolkitVersion> + <CommunityToolkitVersion>8.3...
[ "src/Directory.Packages.props" ]
[]
true
DevToys-app/DevToys
1,384
issue_to_patch
New Crowdin updates
20136a6eedfb5270bc9b73cc14d1f97c8b837192
f6488d1cdbcf20381e0e13219602b5d389cdd972
diff --git a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.el-GR.resx b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.el-GR.resx index 73310aa0d9..ebd6665b57 100644 --- a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.el-GR.resx +++ b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.el-GR.resx @@ -118,9 +118,9 @@ ...
[ "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.el-GR.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.hu-HU.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.sr-SP.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ca-ES.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.es-ES.resx"...
[]
true
DevToys-app/DevToys
522
issue_to_patch
Accessibility Issue : Tabs vs Spaces - SQL Formatter ### Description Please offer tabs for indentation. Users who need very large fonts often prefer tabs for this reason: - they can tell their editor to display tabs very narrow, preventing whitespace from using too much screen space. You have this option on ...
Added "One tab" indentation for SQL Formatter
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [x] Feature - [x] UI change (please inc...
b11f267ef738501bbf993c677013777cb764b1aa
94be6f405ceae8c12b584b799fc18fc7376cfaa7
diff --git a/src/dev/impl/DevToys/Helpers/SqlFormatter/Core/Formatter.cs b/src/dev/impl/DevToys/Helpers/SqlFormatter/Core/Formatter.cs index cdba05b50b..a85bec0053 100644 --- a/src/dev/impl/DevToys/Helpers/SqlFormatter/Core/Formatter.cs +++ b/src/dev/impl/DevToys/Helpers/SqlFormatter/Core/Formatter.cs @@ -29,7 +29,7 @@...
[ "src/dev/impl/DevToys/Helpers/SqlFormatter/Core/Formatter.cs", "src/dev/impl/DevToys/Helpers/SqlFormatter/Core/Indentation.cs", "src/dev/impl/DevToys/Helpers/SqlFormatter/SqlFormatterOptions.cs", "src/dev/impl/DevToys/ViewModels/Tools/Formatters/SqlFormatter/SqlFormatterToolViewModel.cs", "src/tests/DevToys...
[]
diff --git a/src/tests/DevToys.Tests/Providers/Tools/SqlFormatterTests.cs b/src/tests/DevToys.Tests/Providers/Tools/SqlFormatterTests.cs index 87612cac5f..5c921d6acc 100644 --- a/src/tests/DevToys.Tests/Providers/Tools/SqlFormatterTests.cs +++ b/src/tests/DevToys.Tests/Providers/Tools/SqlFormatterTests.cs @@ -1247,7 +1...
true
DevToys-app/DevToys
1,366
issue_to_patch
Add workflow to label issues.
<!--- Please provide a general summary of your changes in the title above --> Add a workflow that automatically assigns labels to issues corresponding to the app type and platform. This makes it easier to manage issues. Specifically, it makes it easier to identify and narrow down the environment in which bugs are ide...
1c60b39fe9f317bc02fb55249fb8ab8d5c6c31ee
980f2c0081e905500a97380366dd0111cc8db238
diff --git a/.github/advanced-issue-labeler.yml b/.github/advanced-issue-labeler.yml new file mode 100644 index 0000000000..c3422ecd6a --- /dev/null +++ b/.github/advanced-issue-labeler.yml @@ -0,0 +1,19 @@ +policy: + - template: ["bug_report.yml"] + section: + - id: ["platforms"] + block-list: [] + ...
[ ".github/advanced-issue-labeler.yml", ".github/workflows/issue_labeler.yml" ]
[]
true
DevToys-app/DevToys
1,380
issue_to_patch
Unable to load shared library 'libadwaita-1.so.0' ### Current behavior Hi! Just downloaded the latest **devtoys_linux_x64_portable.zip** from the releases page and I'm getting an error when I'm trying to boot it. ``` Unhandled exception. System.TypeInitializationException: The type initializer for 'Adw.Applicat...
Removed dependency on libadwaita in Linux
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [ ] New feature or enhancement - [ ] UI...
7fd73a0486f1846b4a5cc9f73d80944f5c2a3f48
825b3e51a17d929cb863f464b70acf7e79c3f7a2
diff --git a/src/app/dev/DevToys.Blazor/wwwroot/css/devtoys.g.css b/src/app/dev/DevToys.Blazor/wwwroot/css/devtoys.g.css index 2626050c72..d1d5cf2a3b 100644 --- a/src/app/dev/DevToys.Blazor/wwwroot/css/devtoys.g.css +++ b/src/app/dev/DevToys.Blazor/wwwroot/css/devtoys.g.css @@ -1,1 +1,1 @@ -.ui-card-presenter>div{width...
[ "src/app/dev/DevToys.Blazor/wwwroot/css/devtoys.g.css", "src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs", "src/app/dev/platforms/desktop/DevToys.Linux/DevToys.Linux.csproj", "src/app/dev/platforms/desktop/DevToys.Linux/LinuxProgram.cs", "src/app/dev/platforms/desktop/DevToys.Linux/MainWin...
[ { "comment": "Hi @badcel ,\r\nDo you think this is a reliable way to detect the dark theme? On Linux Mint, without Adw, `GtkApplicationPreferDarkTheme` is always false even if the system theme is dark.", "path": "src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs", "hunk": "@@ -142,14 +13...
true
DevToys-app/DevToys
1,380
comment_to_fix
Removed dependency on libadwaita in Linux
Hi @badcel , Do you think this is a reliable way to detect the dark theme? On Linux Mint, without Adw, `GtkApplicationPreferDarkTheme` is always false even if the system theme is dark.
7fd73a0486f1846b4a5cc9f73d80944f5c2a3f48
825b3e51a17d929cb863f464b70acf7e79c3f7a2
diff --git a/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs b/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs index 78479d3ec2..b33f5704a0 100644 --- a/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs +++ b/src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListe...
[ "src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs" ]
[ { "comment": "Hi @badcel ,\r\nDo you think this is a reliable way to detect the dark theme? On Linux Mint, without Adw, `GtkApplicationPreferDarkTheme` is always false even if the system theme is dark.", "path": "src/app/dev/platforms/desktop/DevToys.Linux/Core/ThemeListener.cs", "hunk": "@@ -142,14 +13...
true
DevToys-app/DevToys
1,374
issue_to_patch
New Crowdin updates
7fd73a0486f1846b4a5cc9f73d80944f5c2a3f48
087aa6b3211aad7490f54d505b0ee68af04209d8
diff --git a/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.cs-CZ.resx b/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.cs-CZ.resx index 9a7abe7931..246278b799 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.cs-CZ.resx +++ b/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.cs-CZ.resx @@ -118,40 +118,40 @@...
[ "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.cs-CZ.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.de-DE.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.id-ID.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.id-ID.resx", "src/app/dev/DevToys.Localization/Strings/MainWind...
[]
true
DevToys-app/DevToys
1,372
issue_to_patch
New Crowdin updates
785f47f1d1399069ea7287f92e784f31b666a060
503d31706e2ba451ccb22cc3d8ddb16358a881f2
diff --git a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.pt-BR.resx b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.pt-BR.resx index c559c04bf2..20350d9655 100644 --- a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.pt-BR.resx +++ b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.pt-BR.resx @@ -118,9 +118,9 @@ ...
[ "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.pt-BR.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.de-DE.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.it-IT.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ko-KR.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.pt-BR.resx"...
[]
true
DevToys-app/DevToys
1,371
issue_to_patch
Category name translation ### What improvement do you think would an existing feature or tool in DevToys? There is currently no corresponding translation file for the tool category name <img width="261" alt="2024-07-16_11-11" src="https://github.com/user-attachments/assets/2748b6ea-6983-4f5f-9c6f-636cb7e1e998"> #...
New Crowdin updates
78a727427f746f1dd8f0673fde58d9a518c88b16
461671ac271a7e7b04aaf006c2ce1fd23afcbff3
diff --git a/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx b/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx index 9a7abe7931..d0bb79e67b 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx +++ b/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx @@ -118,45 +118,45 @@...
[ "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ja-JP.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.zh-Hans.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.zh-Hant.resx" ]
[]
true
DevToys-app/DevToys
1,369
issue_to_patch
New Crowdin updates
576a3f0010280d01edcbcfe5487887fefa2360ab
4ed8f5e9d5d781e77c8d640185692d5c75b01de1
diff --git a/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.af-ZA.resx b/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.af-ZA.resx new file mode 100644 index 0000000000..9a7abe7931 --- /dev/null +++ b/src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.af-ZA.resx @@ -0,0 +1,162 @@ +<?xml version="1.0" encoding="utf-8"?>...
[ "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.af-ZA.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ar-SA.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.be-BY.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.bn-BD.resx", "src/app/dev/DevToys.Blazor/BuiltInGroups/Groups.ca-ES.resx"...
[]
true
DevToys-app/DevToys
1,354
issue_to_patch
Added conflict internal name resolution for resource assembly identifier.
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
ee85fda03c33192988d2be49c16aa5760508f000
031cfbb32ba18614799fa53fe8b971278751c420
diff --git a/src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs b/src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs index fb563ece42..c819526bab 100644 --- a/src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs +++ b/src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs @@ -1,5 +1,7 @@ using System.Collections.ObjectModel; +...
[ "src/app/dev/DevToys.Core/Tools/GuiToolProvider.cs" ]
[]
true
DevToys-app/DevToys
1,353
issue_to_patch
Fixed a bug in extension update check test
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
ee85fda03c33192988d2be49c16aa5760508f000
30f543f1cd79d6520909489132d3d08f4a52ac38
diff --git a/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationManager.cs b/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationManager.cs index cedab61cd9..aabefdeba0 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationMana...
[ "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationManager.cs" ]
[]
true
DevToys-app/DevToys
1,350
issue_to_patch
Lag When Expanding/Collapsing Sidebar on macOS ### Current behavior I am experiencing severe lag when using DevToys on my MacBook Air M2 running macOS 14.4.1. Specifically, the issue occurs when I open the sidebar with the tools interface. The sidebar becomes extremely sluggish and unresponsive. DevToys is a fanta...
Reduced animations
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
ee85fda03c33192988d2be49c16aa5760508f000
1ec8ce8c5d8f291cf0cab39fc35664866e85f897
diff --git a/src/app/dev/DevToys.Api/Core/Theme/IThemeListener.cs b/src/app/dev/DevToys.Api/Core/Theme/IThemeListener.cs index 46648eab64..ad1950f16e 100644 --- a/src/app/dev/DevToys.Api/Core/Theme/IThemeListener.cs +++ b/src/app/dev/DevToys.Api/Core/Theme/IThemeListener.cs @@ -35,6 +35,11 @@ public interface IThemeLis...
[ "src/app/dev/DevToys.Api/Core/Theme/IThemeListener.cs", "src/app/dev/DevToys.Blazor/Assets/sass/_transitions.scss", "src/app/dev/DevToys.Blazor/Components/Layout/Dialog/Dialog.razor.scss", "src/app/dev/DevToys.Blazor/Components/Menu/NavBar/NavBar.razor.scss", "src/app/dev/DevToys.Blazor/Pages/MainLayout.raz...
[]
true
DevToys-app/DevToys
1,360
issue_to_patch
New Crowdin updates
fcbcc979a1546771f61abf9403ff2d161101b0e5
a73874e91a4f582310946938c55c034abf765d2b
diff --git a/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.es-ES.resx b/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.es-ES.resx index 36f1cf265b..a8dd32b2f4 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.es-ES.resx +++ b/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/S...
[ "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.es-ES.resx", "src/app/dev/DevToys.Localization/Strings/MainWindow/MainWindow.es-ES.resx" ]
[]
true
DevToys-app/DevToys
1,355
issue_to_patch
New Crowdin updates
cb1004753911050b79e0afc08b65a915dfdaa196
94ab1fd131581b19a913c18482d87beda0fe8ae0
diff --git a/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.cs-CZ.resx b/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.cs-CZ.resx index 842e4dc282..3063f86e9d 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.cs-CZ.resx +++ b/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/S...
[ "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.cs-CZ.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.it-IT.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.pt-BR.resx", "src/app/dev/DevToys.Localization/Strings/MainWindow/MainWindow.cs-CZ.resx", "src/app/dev/De...
[]
true
DevToys-app/DevToys
1,330
issue_to_patch
New Crowdin updates
ee85fda03c33192988d2be49c16aa5760508f000
f2046584ec6bbcfd8b4b946db24a2f90ff7d998c
diff --git a/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.nl-NL.resx b/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.nl-NL.resx index 1a34a01362..b2e2a2c201 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.nl-NL.resx ++...
[ "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.nl-NL.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.ta-IN.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.ca-ES.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings...
[]
true
DevToys-app/DevToys
1,309
issue_to_patch
New Crowdin updates
ffce4677a74e02f74fe3eb1d21ca1ecf9da25226
1eed11b286e47e015d7f261b4e1296e8c9d017d1
diff --git a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.be-BY.resx b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.be-BY.resx new file mode 100644 index 0000000000..73310aa0d9 --- /dev/null +++ b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.be-BY.resx @@ -0,0 +1,126 @@ +<?xml version="1.0" encoding="utf-8"?>...
[ "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.be-BY.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.fa-IR.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.ka-GE.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.be-BY.resx", "src/app/dev/DevToys.Blazor/Buil...
[]
true
DevToys-app/DevToys
1,329
issue_to_patch
[MacOS] Paste Shortcut is not working ### Current behavior `CMD` + `V` is not working Error from logs ``` 2024-06-12T08:05:51.0668720+05:30 Warning [DevToys.MacOS.Core.Clipboard] [LogGetClipboardFailed] Failed to retrieve the clipboard data. AppKit Consistency error: you are calling a method that can only be ...
[MacOS] added menu bar items for Copy, Cut, Paste, Select All
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [X] UI...
6b5f92b924c0ecf808700a6411c444bb7fc49ee2
cff8d8fd2951c4ca783c304e5e4f2ecd73e18f4e
diff --git a/src/app/dev/DevToys.Blazor/Assets/javascript/dom.js b/src/app/dev/DevToys.Blazor/Assets/javascript/dom.js index e538e405ff..5710c56970 100644 --- a/src/app/dev/DevToys.Blazor/Assets/javascript/dom.js +++ b/src/app/dev/DevToys.Blazor/Assets/javascript/dom.js @@ -1,3 +1,4 @@ +import MonacoEditor from "./mona...
[ "src/app/dev/DevToys.Blazor/Assets/javascript/dom.js", "src/app/dev/DevToys.Blazor/Assets/javascript/dom.js.map", "src/app/dev/DevToys.Blazor/Assets/javascript/dom.ts", "src/app/dev/DevToys.Blazor/Assets/javascript/monacoEditor.js", "src/app/dev/DevToys.Blazor/Assets/javascript/monacoEditor.js.map", "src/...
[]
true
DevToys-app/DevToys
1,321
issue_to_patch
Window opens offscreen and I can't move it ### Current behavior I'm not sure what happened, but when I launch the tools the window doesn't show up, I can see the taskbar icon, and when I hover it I see a preview of the window, but the window never shows on my desktop. I can click on it but nothing happens, it's like ...
[Windows] the window may be off screen after unplugging a monitor
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
b439eb067a5d178ec9f71afc7bf9001b91408eef
69d186071a18a3c09630867fe1e35b1415cdb6fa
diff --git a/src/app/dev/platforms/desktop/DevToys.Windows/MainWindow.xaml.cs b/src/app/dev/platforms/desktop/DevToys.Windows/MainWindow.xaml.cs index 512ada9954..ed6b022354 100644 --- a/src/app/dev/platforms/desktop/DevToys.Windows/MainWindow.xaml.cs +++ b/src/app/dev/platforms/desktop/DevToys.Windows/MainWindow.xaml....
[ "src/app/dev/platforms/desktop/DevToys.Windows/MainWindow.xaml.cs" ]
[]
true
DevToys-app/DevToys
1,328
issue_to_patch
New MS store icon looks off ### Current behavior The new MS store icon looks possibly too small but also has a strange background to it. I did a reboot after install to make sure it wasn't just icon caching or something. ![image](https://github.com/user-attachments/assets/e99cb8a9-014d-48ce-9816-36744ae5f21b) ![i...
[Windows] Fixed icon for DevToys preview and Stable in MSIX
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
b439eb067a5d178ec9f71afc7bf9001b91408eef
a1c922eacb4099f6312198456e8b88f213d93a8e
diff --git a/assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-100.png b/assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-100.png index 1a8cf3b05d..2975b6bf08 100644 Binary files a/assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-100.png and b/assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-100....
[ "assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-100.png", "assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-125.png", "assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-150.png", "assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-200.png", "assets/logo/Windows-Linux/Preview/msix/Smal...
[]
true
DevToys-app/DevToys
1,308
issue_to_patch
[Settings] Change "Help us translating DevToys" to "Help us translate DevToys"
<!--- Please provide a general summary of your changes in the title above --> Change *Help us translating DevToys* to *Help us translate DevToys* in the Settings ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of cha...
966a7677bc68f299fe89117670da6181c5489bae
980d81c56631acd80a8b8a03bca59b083d158b77
diff --git a/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.Designer.cs b/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.Designer.cs index 61766c4e50..400a510a4e 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.Designer.cs +++ b/src/app/dev/DevToys.Blazor/BuiltInTools/Setting...
[ "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.Designer.cs", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.resx" ]
[]
true
DevToys-app/DevToys
1,300
issue_to_patch
Added check for update for extensions
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [X] New feature or enhancement - [ ] UI...
966a7677bc68f299fe89117670da6181c5489bae
4b8bef4c04d6bb4c1993fb9e34aab7b4c97ac2af
diff --git a/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationManager.cs b/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationManager.cs index 78d4120d29..cedab61cd9 100644 --- a/src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationMana...
[ "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionInstallationManager.cs", "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManagerGuiTool.cs", "src/app/dev/DevToys.Blazor/BuiltInTools/SupportDevelopment/SupportDevelopmentGuidTools.cs", "src/app/dev/DevToys.Blazor/Pages/I...
[]
true
DevToys-app/DevToys
1,302
issue_to_patch
New Crowdin updates
966a7677bc68f299fe89117670da6181c5489bae
b9e64819e52440ab645b612ec3ce773dfab3020f
diff --git a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.sv-SE.resx b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.sv-SE.resx index 73310aa0d9..5dd611c2cc 100644 --- a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.sv-SE.resx +++ b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.sv-SE.resx @@ -118,9 +118,9 @@ ...
[ "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.sv-SE.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/ExtensionsManager.sv-SE.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/Settings/Settings.sv-SE.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/SupportDevelopment/SupportDevelopment.sv-SE.r...
[]
true
DevToys-app/DevToys
1,299
issue_to_patch
Windows 11 misaligned title bar color ### Current behavior The color on title bar is misaligned. It should be invisible (non colorized): ![image](https://github.com/DevToys-app/DevToys/assets/3747805/e0a5b02c-b190-4106-b137-496bbd496ca9) ### How to reproduce it (as minimally and precisely as possible) _No ...
[Windows] fixed a bug where title bar's background color was misaligned
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [X] UI...
966a7677bc68f299fe89117670da6181c5489bae
39201f0de1838a43d1ecee24cbab0bdadce3f269
diff --git a/src/app/dev/platforms/desktop/DevToys.Windows/Controls/MicaWindowWithOverlay.xaml b/src/app/dev/platforms/desktop/DevToys.Windows/Controls/MicaWindowWithOverlay.xaml index 439302773a..8d42daba8f 100644 --- a/src/app/dev/platforms/desktop/DevToys.Windows/Controls/MicaWindowWithOverlay.xaml +++ b/src/app/dev...
[ "src/app/dev/platforms/desktop/DevToys.Windows/Controls/MicaWindowWithOverlay.xaml", "src/app/dev/platforms/desktop/DevToys.Windows/Controls/MicaWindowWithOverlay.xaml.cs" ]
[]
true
DevToys-app/DevToys
1,284
issue_to_patch
App stays blank forever in macos 15 ### Current behavior App Stays blank on launch ### How to reproduce it (as minimally and precisely as possible) Download the the app from homebew or install Devtoys.app Launch the app App stays blank forerver ### Expected behavior Should show tools ### Screenshots <img widt...
[MacOS] Fixed an issue where the app is completely blank on MacOS 15 Beta
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancement - [ ] UI...
5f1ccd34a1b1ea72b130c1bc91a8410c7034ea28
ae93ef7fb867aecd4c6a37909d2260034acbb43e
diff --git a/src/app/dev/platforms/desktop/DevToys.MacOS/Controls/BlazorWebView/BlazorWKWebView.cs b/src/app/dev/platforms/desktop/DevToys.MacOS/Controls/BlazorWebView/BlazorWKWebView.cs index 9476438cde..678f9d9110 100644 --- a/src/app/dev/platforms/desktop/DevToys.MacOS/Controls/BlazorWebView/BlazorWKWebView.cs +++ b...
[ "src/app/dev/platforms/desktop/DevToys.MacOS/Controls/BlazorWebView/BlazorWKWebView.cs", "src/app/dev/platforms/desktop/DevToys.MacOS/Controls/BlazorWebView/BlazorWebViewManager.cs" ]
[]
true
DevToys-app/DevToys
1,283
issue_to_patch
DevToys extension : Struggling with nuget package ### Discussed in https://github.com/DevToys-app/DevToys/discussions/1280 <div type='discussions-op-text'> <sup>Originally posted by **Poilaupat** July 1, 2024</sup> Hi, I have an idea for a DevToys extension, so I started following the "Getting Started" sect...
Fix issue on NuGet install where DevToys.Api doesn't get to the build…
… folder. <!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [X] Bugfix - [ ] New feature or enhancem...
5f1ccd34a1b1ea72b130c1bc91a8410c7034ea28
ab92874a3b1bc1b46d74b31d8ecd96744b72b031
diff --git a/src/app/dev/DevToys.Api/DevToys.Api.csproj b/src/app/dev/DevToys.Api/DevToys.Api.csproj index 08c76e89ed..a126f70b87 100644 --- a/src/app/dev/DevToys.Api/DevToys.Api.csproj +++ b/src/app/dev/DevToys.Api/DevToys.Api.csproj @@ -15,7 +15,6 @@ <PackageTags>devtoys-app</PackageTags> <PackageLicenseFil...
[ "src/app/dev/DevToys.Api/DevToys.Api.csproj" ]
[]
true
DevToys-app/DevToys
1,267
issue_to_patch
New Crowdin updates
5f1ccd34a1b1ea72b130c1bc91a8410c7034ea28
2bdba1c0219e200eefad023afd018f5be153b226
diff --git a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx index 73310aa0d9..a8f1ca7d95 100644 --- a/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx +++ b/src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx @@ -118,9 +118,9 @@ ...
[ "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.af-ZA.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.en-GB.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.is-IS.resx", "src/app/dev/DevToys.Api/Strings/ApiText/ApiText.ja-JP.resx", "src/app/dev/DevToys.Blazor/BuiltInTools/ExtensionsManager/E...
[]
true
DevToys-app/DevToys
1,290
issue_to_patch
Fixed icons in MSIX
<!--- Please provide a general summary of your changes in the title above --> ## Pull request type <!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [ ] New feature or enhancement - [ ] UI...
5f1ccd34a1b1ea72b130c1bc91a8410c7034ea28
72bc80617d143641390ff2697bfdb1e677db45aa
diff --git a/assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-100.png b/assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-100.png new file mode 100644 index 0000000000..d97b5479bd Binary files /dev/null and b/assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-100.png differ diff --git a/assets/logo/Windo...
[ "assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-100.png", "assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-125.png", "assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-150.png", "assets/logo/Windows-Linux/Preview/msix/LargeTile.scale-200.png", "assets/logo/Windows-Linux/Preview/msix/Larg...
[]
true
Devolutions/UniGetUI
4,922
issue_to_patch
Make Avalonia frontend the default
## Summary - default launcher selection to modern Avalonia unless `UseClassicMode` is explicitly enabled - add `UseClassicMode` setting and wire the existing "Use classic mode" setting UI to it - prefer current process architecture when resolving development Avalonia builds - update launcher tests for the new defau...
cd212864074446c002bee19cdb0470e9e6c68a62
e3cb0cfb8b6fc4da663d3e592a2c2bab62f636b6
diff --git a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Interface_P.axaml b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Interface_P.axaml index 4909487c9a..ad2506ceec 100644 --- a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Interface_P.axaml +++ b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Interface_P...
[ "src/UniGetUI.Avalonia/Views/Pages/SettingsPages/Interface_P.axaml", "src/UniGetUI.Core.Settings/SettingsEngine_Names.cs", "src/UniGetUI.Tests/ModernAppLauncherTests.cs", "src/UniGetUI/ModernAppLauncher.cs", "src/UniGetUI/Pages/SettingsPages/GeneralPages/Interface_P.xaml" ]
[]
true
Devolutions/UniGetUI
4,920
issue_to_patch
Fix Mica readability: links, window border, overlay filter pane
This pull request focuses on improving visual consistency and accessibility in the application's UI, particularly around hyperlink colors, Mica window styling, and filter pane behavior. The main themes are better resource usage for link colors, simplification of Mica window border handling, and improved overlay panel b...
e48665fddd84a844d38d2adf3d8d238dd9f3df6f
fb2c10560ba4eabea350a4140bb59f9e3e34af82
diff --git a/src/UniGetUI.Avalonia/Assets/Styles/Styles.Common.axaml b/src/UniGetUI.Avalonia/Assets/Styles/Styles.Common.axaml index c3973aeb4..77f4a4c96 100644 --- a/src/UniGetUI.Avalonia/Assets/Styles/Styles.Common.axaml +++ b/src/UniGetUI.Avalonia/Assets/Styles/Styles.Common.axaml @@ -18,6 +18,8 @@ ...
[ "src/UniGetUI.Avalonia/Assets/Styles/Styles.Common.axaml", "src/UniGetUI.Avalonia/Infrastructure/MicaWindowHelper.cs", "src/UniGetUI.Avalonia/Views/DialogPages/PackageDetailsWindow.axaml.cs", "src/UniGetUI.Avalonia/Views/SoftwarePages/AbstractPackagesPage.axaml.cs" ]
[]
true
Devolutions/UniGetUI
4,919
issue_to_patch
Enable Avalonia self-update on macOS and Linux via .tar.gz
On macOS and Linux, clicking Check for updates showed "Auto-update is not yet available on this platform" — even though releases for both platforms are now published in productinfo.json alongside Windows. Consume the published tar.gz archives on macOS and Linux (decision: tar.gz over dmg/deb/rpm for the simplest, no...
e48665fddd84a844d38d2adf3d8d238dd9f3df6f
cb2e8539aa877f9e81708a818bc1fa908a237fab
diff --git a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs index 8c87e1a97..2b6bc0e4a 100644 --- a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs +++ b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs @@ -421,10 +421,9 @...
[ "src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs" ]
[ { "comment": "`ExtractTarGz` hard-codes `/usr/bin/tar`. On some Linux distros (or non-FHS layouts like Nix), `tar` may not live at that path, causing update extraction to fail even though `tar` is available on PATH.", "path": "src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs", "hunk": "@@ -85...
true
Devolutions/UniGetUI
4,919
comment_to_fix
Enable Avalonia self-update on macOS and Linux via .tar.gz
`ExtractTarGz` hard-codes `/usr/bin/tar`. On some Linux distros (or non-FHS layouts like Nix), `tar` may not live at that path, causing update extraction to fail even though `tar` is available on PATH.
e48665fddd84a844d38d2adf3d8d238dd9f3df6f
cb2e8539aa877f9e81708a818bc1fa908a237fab
diff --git a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs index 8c87e1a97..2b6bc0e4a 100644 --- a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs +++ b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs @@ -421,10 +421,9 @...
[ "src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs" ]
[ { "comment": "`ExtractTarGz` hard-codes `/usr/bin/tar`. On some Linux distros (or non-FHS layouts like Nix), `tar` may not live at that path, causing update extraction to fail even though `tar` is available on PATH.", "path": "src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs", "hunk": "@@ -85...
true
Devolutions/UniGetUI
4,919
comment_to_fix
Enable Avalonia self-update on macOS and Linux via .tar.gz
`ExtractTarGz` always uses the same `update-staging` directory and deletes it before extraction. Since update checks can be triggered concurrently (background loop + manual check), two attempts can race and delete/overwrite each other’s staging contents, producing intermittent extraction or swap failures. Use a per-att...
e48665fddd84a844d38d2adf3d8d238dd9f3df6f
cb2e8539aa877f9e81708a818bc1fa908a237fab
diff --git a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs index 8c87e1a97..2b6bc0e4a 100644 --- a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs +++ b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs @@ -421,10 +421,9 @...
[ "src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs" ]
[ { "comment": "`ExtractTarGz` always uses the same `update-staging` directory and deletes it before extraction. Since update checks can be triggered concurrently (background loop + manual check), two attempts can race and delete/overwrite each other’s staging contents, producing intermittent extraction or swap f...
true
Devolutions/UniGetUI
4,919
comment_to_fix
Enable Avalonia self-update on macOS and Linux via .tar.gz
`VerifyMacAppSignature` redirects both stdout and stderr, but reads them sequentially. In the rare case `codesign` writes enough output to fill one pipe, this can deadlock the updater. Read both streams concurrently (or only redirect the stream you need).
e48665fddd84a844d38d2adf3d8d238dd9f3df6f
cb2e8539aa877f9e81708a818bc1fa908a237fab
diff --git a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs index 8c87e1a97..2b6bc0e4a 100644 --- a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs +++ b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs @@ -421,10 +421,9 @...
[ "src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs" ]
[ { "comment": "`VerifyMacAppSignature` redirects both stdout and stderr, but reads them sequentially. In the rare case `codesign` writes enough output to fill one pipe, this can deadlock the updater. Read both streams concurrently (or only redirect the stream you need).", "path": "src/UniGetUI.Avalonia/Infra...
true
Devolutions/UniGetUI
4,912
issue_to_patch
[IMPROVEMENT] Show progress of operations at top ### Please confirm these before moving forward. - [x] I have searched for my feature proposal and have not found a work-in-progress/duplicate/resolved/discarded issue. - [x] This improvement refers to an existing feature. If you want to suggest a new feature, please us...
Show operations progress counter in the operations panel header
This pull request improves the user experience by displaying a dynamic summary of operation progress in both the Avalonia and WinUI main views. The summary now shows how many operations have completed out of the total, updating live as operation statuses change. The implementation introduces logic to track batches of o...
cd26228e2f5c5268ae4f1ed678167669ab716b2a
640c4838ffb85bf9f07d838ea4afc7ad3a22070e
diff --git a/src/Languages/lang_en.json b/src/Languages/lang_en.json index efc443e2c..d128bb58e 100644 --- a/src/Languages/lang_en.json +++ b/src/Languages/lang_en.json @@ -1,4 +1,5 @@ { + "{0} of {1} operations completed": "{0} of {1} operations completed", "{0} is now {1}": "{0} is now {1}", "Enabled": "Enabl...
[ "src/Languages/lang_en.json", "src/UniGetUI.Avalonia/ViewModels/MainWindowViewModel.cs", "src/UniGetUI.Avalonia/Views/MainWindow.axaml", "src/UniGetUI/Pages/MainView.xaml", "src/UniGetUI/Pages/MainView.xaml.cs" ]
[]
true
Devolutions/UniGetUI
4,916
issue_to_patch
Implement loopback OAuth flow for GitHub login in Avalonia
This pull request implements a new OAuth login flow for GitHub authentication in the Avalonia app, switching from the device flow to a local loopback HTTP server that captures the OAuth redirect and authorization code. It also adds support for securely providing the GitHub client secret, improves error handling, and up...
83c06e314fdb2a1d4fb910cd444ce29680045361
70a17e9287a002ecb7aea6c00fb5363e4b58bfed
diff --git a/src/UniGetUI.Avalonia/Infrastructure/GHAuthApiRunner.cs b/src/UniGetUI.Avalonia/Infrastructure/GHAuthApiRunner.cs new file mode 100644 index 0000000000..b9f1e29f18 --- /dev/null +++ b/src/UniGetUI.Avalonia/Infrastructure/GHAuthApiRunner.cs @@ -0,0 +1,148 @@ +using System.Net; +using System.Net.Sockets; +us...
[ "src/UniGetUI.Avalonia/Infrastructure/GHAuthApiRunner.cs", "src/UniGetUI.Avalonia/Infrastructure/GitHubAuthService.cs", "src/UniGetUI.Avalonia/Infrastructure/Secrets.cs", "src/UniGetUI.Avalonia/Infrastructure/generate-secrets.ps1", "src/UniGetUI.Avalonia/Infrastructure/generate-secrets.sh", "src/UniGetUI....
[]
true
Devolutions/UniGetUI
4,915
issue_to_patch
[IMPROVEMENT] duplicated calls to cmd.exe in generated powershell-script ### Please confirm these before moving forward. - [x] I have searched for my feature proposal and have not found a work-in-progress/duplicate/resolved/discarded issue. - [x] This improvement refers to an existing feature. If you want to suggest ...
Fix: remove duplicated cmd.exe /C call in generated PowerShell script
This pull request makes a small change to how command strings are generated for package bundles. The change removes the explicit use of `cmd.exe /C` from the generated command strings, simplifying them. * The command generation logic in both `PackageBundlesPage.cs` and `PackageBundlesPage.cs` (Avalonia version) now ...
cd26228e2f5c5268ae4f1ed678167669ab716b2a
51a6e65f2d050fe956d6586932935801f07de706
diff --git a/src/UniGetUI.Avalonia/Views/SoftwarePages/PackageBundlesPage.cs b/src/UniGetUI.Avalonia/Views/SoftwarePages/PackageBundlesPage.cs index c7c6b1761..6216d51ca 100644 --- a/src/UniGetUI.Avalonia/Views/SoftwarePages/PackageBundlesPage.cs +++ b/src/UniGetUI.Avalonia/Views/SoftwarePages/PackageBundlesPage.cs @@ ...
[ "src/UniGetUI.Avalonia/Views/SoftwarePages/PackageBundlesPage.cs", "src/UniGetUI/Pages/SoftwarePages/PackageBundlesPage.cs" ]
[]
true
Devolutions/UniGetUI
4,914
issue_to_patch
Fix race condition on startup and improve fault tolerance
This pull request improves the robustness of package manager initialization and error reporting throughout the application, ensuring that failures in constructing individual package managers do not crash the entire app. It also enhances exception logging and updates code to handle package managers that may be unavailab...
cd26228e2f5c5268ae4f1ed678167669ab716b2a
26cacfa34c44528967dcb33350884c352e34f6e1
diff --git a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAppHost.cs b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAppHost.cs index 6b4a5c8af6..345d3bd32f 100644 --- a/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAppHost.cs +++ b/src/UniGetUI.Avalonia/Infrastructure/AvaloniaAppHost.cs @@ -1,5 +1,6 @@ using System.Run...
[ "src/UniGetUI.Avalonia/Infrastructure/AvaloniaAppHost.cs", "src/UniGetUI.PackageEngine.PackageEngine/PEInterface.cs", "src/UniGetUI/CrashHandler.cs", "src/UniGetUI/Pages/DialogPages/IgnoredUpdates.xaml.cs", "src/UniGetUI/Pages/MainView.xaml.cs", "src/UniGetUI/Pages/SettingsPages/ManagersPages/PackageManag...
[]
true
Devolutions/UniGetUI
4,913
issue_to_patch
Fix empty WinGet update list on fresh launch + bump pinget to 0.9.0
On a cold start the WinGet update list was frequently empty or partial, only populating after a manual reload. _getAvailableUpdates runs `pinget source update` via Task.Run(RefreshPackageIndexes).Wait(60s) and then `pinget upgrade`; .Wait(timeout) does not cancel the task, so when source update runs longer than 60s the...
cd26228e2f5c5268ae4f1ed678167669ab716b2a
054b48ad6f0d66e1396de82a1ae16ff4a4e31944
diff --git a/src/UniGetUI.Avalonia/UniGetUI.Avalonia.csproj b/src/UniGetUI.Avalonia/UniGetUI.Avalonia.csproj index 4bcda3fbe..419014d06 100644 --- a/src/UniGetUI.Avalonia/UniGetUI.Avalonia.csproj +++ b/src/UniGetUI.Avalonia/UniGetUI.Avalonia.csproj @@ -138,7 +138,7 @@ <PackageReference Include="Octokit" Versio...
[ "src/UniGetUI.Avalonia/UniGetUI.Avalonia.csproj", "src/UniGetUI.PackageEngine.Managers.WinGet/ClientHelpers/PingetCliHelper.cs", "src/UniGetUI.PackageEngine.Managers.WinGet/ClientHelpers/PingetPackageDetailsProvider.cs", "src/UniGetUI.PackageEngine.Managers.WinGet/ClientHelpers/WinGetCliHelper.cs", "src/Uni...
[]
true
Devolutions/UniGetUI
4,911
issue_to_patch
Fix: username redaction must not corrupt operation result detection
This pull request improves how sensitive information (specifically usernames) is handled in operation logs, ensuring that redaction only applies to user-facing output and not to internal result parsing. It also adds tests to prevent regressions in this behavior. **Sensitive information handling:** * Updated `Abst...
e61c4d592a156ff39b77bc93485d894fab1d66d8
cc6b3e133f224ff9afc32201a855780f096d5121
diff --git a/src/UniGetUI.PackageEngine.Operations/AbstractOperation.cs b/src/UniGetUI.PackageEngine.Operations/AbstractOperation.cs index d13a3f46f..24bdf78b0 100644 --- a/src/UniGetUI.PackageEngine.Operations/AbstractOperation.cs +++ b/src/UniGetUI.PackageEngine.Operations/AbstractOperation.cs @@ -99,15 +99,19 @@ pub...
[ "src/UniGetUI.PackageEngine.Operations/AbstractOperation.cs", "src/UniGetUI.PackageEngine.Operations/AbstractProcessOperation.cs", "src/UniGetUI.PackageEngine.Tests/PackageOperationsTests.cs" ]
[]
true
Devolutions/UniGetUI
4,909
issue_to_patch
splashscreen not showing in winui
This pull request improves how splash images are loaded and ensures they are correctly included in published builds. The most important changes are: **Splash image loading improvements:** * Updated `ApplySplashImage()` in `MainWindow.xaml.cs` to load splash images directly from the executable directory, reading t...
e61c4d592a156ff39b77bc93485d894fab1d66d8
648f48b896702677b3a21ac5eb8cfcb00001573a
diff --git a/src/UniGetUI/MainWindow.xaml.cs b/src/UniGetUI/MainWindow.xaml.cs index deb8573ab..021bd04b1 100644 --- a/src/UniGetUI/MainWindow.xaml.cs +++ b/src/UniGetUI/MainWindow.xaml.cs @@ -706,7 +706,15 @@ private void ApplySplashImage() { bool dark = MainApp.Instance.ThemeListener.CurrentThem...
[ "src/UniGetUI/MainWindow.xaml.cs", "src/UniGetUI/UniGetUI.csproj" ]
[]
true
Devolutions/UniGetUI
4,906
issue_to_patch
Update application with new icon
Replaces the UniGetUI icon (blue layered-stack glyph) with the new Devolutions UniGetUI icon everywhere it appears, across both the WinUI and Avalonia front-ends, and reworks the system-tray icon to a single legacy style. ### App icon (all sizes/formats, regenerated from the new master SVG) ...
f63515424ea53a7ab56042525f7de5bf4df8d396
eddb3574ce4201e5a9ddef9ead69bdf3df0b9456
diff --git a/InstallerExtras/installer-banner.png b/InstallerExtras/installer-banner.png index 0180abea3b..7c7450e113 100644 Binary files a/InstallerExtras/installer-banner.png and b/InstallerExtras/installer-banner.png differ diff --git a/InstallerExtras/unigetui-256.png b/InstallerExtras/unigetui-256.png index b12537...
[ "InstallerExtras/installer-banner.png", "InstallerExtras/unigetui-256.png", "media/Icon sizes/1024.png", "media/Icon sizes/128.png", "media/Icon sizes/16.png", "media/Icon sizes/2048.png", "media/Icon sizes/256.png", "media/Icon sizes/32.png", "media/Icon sizes/4096.png", "media/Icon sizes/512.png...
[]
true
Devolutions/UniGetUI
4,905
issue_to_patch
[FEATURE REQUEST] Open changelog on first run after update ### Please confirm these before moving forward. - [x] I have searched for my feature proposal and have not found a work-in-progress/duplicate/resolved/discarded issue. - [x] This proposal is a completely new feature. If you want to suggest an improvement or a...
Show release notes on first run after an update
This pull request introduces a new feature that automatically shows the release notes to users the first time they run the app after an update, unless the user disables this behavior in the settings. To support this, two new settings have been added: one to track the last known build number and another to allow users t...
f63515424ea53a7ab56042525f7de5bf4df8d396
53da808c44dd34d667ad7beab9c5553517976e16
diff --git a/src/UniGetUI.Avalonia/ViewModels/MainWindowViewModel.cs b/src/UniGetUI.Avalonia/ViewModels/MainWindowViewModel.cs index cda71f44a..442f77989 100644 --- a/src/UniGetUI.Avalonia/ViewModels/MainWindowViewModel.cs +++ b/src/UniGetUI.Avalonia/ViewModels/MainWindowViewModel.cs @@ -252,7 +252,27 @@ public MainWin...
[ "src/UniGetUI.Avalonia/ViewModels/MainWindowViewModel.cs", "src/UniGetUI.Avalonia/Views/Pages/SettingsPages/General.axaml", "src/UniGetUI.Core.Settings/SettingsEngine_Names.cs", "src/UniGetUI/Pages/MainView.xaml.cs", "src/UniGetUI/Pages/SettingsPages/GeneralPages/General.xaml" ]
[]
true
Devolutions/UniGetUI
4,904
issue_to_patch
Respect OS "reduce motion" setting for Avalonia UI animations
This pull request adds support for honoring the operating system's "reduce motion" accessibility preference throughout the application's UI transitions. When the user enables "reduce motion" in their OS settings, page transitions and certain animations are disabled or simplified for improved accessibility. The main cha...
bb538045c3723db434e2c63257cbb856c20faf1a
57be6a91ee37481ced9324dcbd27a3040d26fc32
diff --git a/src/UniGetUI.Avalonia/Infrastructure/DirectionalSlideTransition.cs b/src/UniGetUI.Avalonia/Infrastructure/DirectionalSlideTransition.cs index db92102df..7ddba620c 100644 --- a/src/UniGetUI.Avalonia/Infrastructure/DirectionalSlideTransition.cs +++ b/src/UniGetUI.Avalonia/Infrastructure/DirectionalSlideTrans...
[ "src/UniGetUI.Avalonia/Infrastructure/DirectionalSlideTransition.cs", "src/UniGetUI.Avalonia/Infrastructure/EntrancePageTransition.cs", "src/UniGetUI.Avalonia/Infrastructure/MotionPreference.cs", "src/UniGetUI.Avalonia/Views/DialogPages/PackageDetailsWindow.axaml.cs" ]
[]
true
Devolutions/UniGetUI
4,902
issue_to_patch
Add setting to redact username from logs for privacy
This pull request introduces a new privacy feature that allows users to hide their username from all logs generated by UniGetUI. When enabled, the user's name is replaced with `****` in logs, crash reports, update logs, and operation outputs. This is controlled by a new setting, exposed in the UI and persisted in the a...
047722c52f4de9e168e67970ae87c9cfec74c6c0
c7a30a3471c0233518b10e8bbdc39b200a351613
diff --git a/src/Languages/lang_en.json b/src/Languages/lang_en.json index 55c4fb5b69..efc443e2cc 100644 --- a/src/Languages/lang_en.json +++ b/src/Languages/lang_en.json @@ -2,6 +2,9 @@ "{0} is now {1}": "{0} is now {1}", "Enabled": "Enabled", "Disabled": "Disabled", + "Privacy": "Privacy", + "Hide my usern...
[ "src/Languages/lang_en.json", "src/UniGetUI.Avalonia/CrashHandler.cs", "src/UniGetUI.Avalonia/Infrastructure/AvaloniaAppHost.cs", "src/UniGetUI.Avalonia/Infrastructure/AvaloniaAutoUpdater.cs", "src/UniGetUI.Avalonia/ViewModels/Pages/SettingsPages/GeneralViewModel.cs", "src/UniGetUI.Avalonia/Views/Pages/Se...
[]
true
Devolutions/UniGetUI
4,900
issue_to_patch
[BUG] Windows Dark / Light change does not affect all parts of the app. ### Please confirm these before moving forward - [x] I have searched for my issue and have not found a work-in-progress/duplicate/resolved issue. - [x] I have tested that this issue has not been fixed in the latest [(beta or stable) release](http...
Fix UI not fully updating on runtime system theme change
This pull request improves how the application's theme and system tray icon are updated in response to system and theme changes. The main changes focus on ensuring the tray icon and theme stay in sync with the system, even when the app's theme is fixed. **Theme and system tray synchronization:** * Updated the `Ma...
94c78dadf3c30d51555802cf815b67a26f1a51f6
38c936b277dbfd7752a5a93615b7df4054b00570
diff --git a/src/UniGetUI/MainWindow.xaml.cs b/src/UniGetUI/MainWindow.xaml.cs index eb73f143d..becbc1855 100644 --- a/src/UniGetUI/MainWindow.xaml.cs +++ b/src/UniGetUI/MainWindow.xaml.cs @@ -61,7 +61,10 @@ public MainWindow() ExtendsContentIntoTitleBar = true; AppWindow.TitleBar.PreferredHei...
[ "src/UniGetUI/MainWindow.xaml.cs" ]
[]
true
Devolutions/UniGetUI
4,899
issue_to_patch
[BUG] Error on update / install of Notepad++ from Scoop ### Please confirm these before moving forward - [x] I have searched for my issue and have not found a work-in-progress/duplicate/resolved issue. - [x] I have tested that this issue has not been fixed in the latest [(beta or stable) release](https://github.com/D...
Fix Scoop shim failure under RedirectionGuard by retrying elevated
This pull request improves how the Scoop package manager handles shim creation failures that require elevation, and adds tests to ensure this behavior works as expected. The main change is to automatically retry failed shim operations with elevated privileges if a specific error is detected, preventing unnecessary fail...
94c78dadf3c30d51555802cf815b67a26f1a51f6
d2907d6a535aab229a0d7da7216db446840659bc
diff --git a/src/UniGetUI.PackageEngine.Managers.Scoop/Helpers/ScoopPkgOperationHelper.cs b/src/UniGetUI.PackageEngine.Managers.Scoop/Helpers/ScoopPkgOperationHelper.cs index c2f74f00ef..fb4f4942f7 100644 --- a/src/UniGetUI.PackageEngine.Managers.Scoop/Helpers/ScoopPkgOperationHelper.cs +++ b/src/UniGetUI.PackageEngine...
[ "src/UniGetUI.PackageEngine.Managers.Scoop/Helpers/ScoopPkgOperationHelper.cs", "src/UniGetUI.PackageEngine.Tests/ScoopManagerTests.cs" ]
[]
true
Devolutions/UniGetUI
4,897
issue_to_patch
[BUG] Bun‘s logo is not displayed ### Please confirm these before moving forward - [x] I have searched for my issue and have not found a work-in-progress/duplicate/resolved issue. - [x] I have tested that this issue has not been fixed in the latest [(beta or stable) release](https://github.com/Devolutions/UniGetUI/re...
Add missing Bun glyph to WinUI symbol font
In the WinUI build, the Bun package manager shows no logo in the package manager preferences (and anywhere else the manager icon is rendered) — the icon area is blank. ### Fix Added the Bun glyph to UniGetUI-Symbols.ttf, generated from the existing Assets/Symbols/bun.svg and scaled into the font's em box
94c78dadf3c30d51555802cf815b67a26f1a51f6
0340038ec189c62ee07ea3f00436f45809a96d94
diff --git a/src/UniGetUI/Assets/Symbols/Font/fonts/UniGetUI-Symbols.ttf b/src/UniGetUI/Assets/Symbols/Font/fonts/UniGetUI-Symbols.ttf index ff676331bf..5b090f3f83 100644 Binary files a/src/UniGetUI/Assets/Symbols/Font/fonts/UniGetUI-Symbols.ttf and b/src/UniGetUI/Assets/Symbols/Font/fonts/UniGetUI-Symbols.ttf differ
[ "src/UniGetUI/Assets/Symbols/Font/fonts/UniGetUI-Symbols.ttf" ]
[]
true
Devolutions/UniGetUI
4,890
issue_to_patch
Fix UniGetUI not quitting properly on macOS
On macOS, UniGetUI couldn't be quit normally and had to be Force Quit from Activity Monitor. Three distinct issues (#4887): ...
5b05b35bedfa5e15927c4e586644a0e40c9aba4a
18debe7f379bb69bb16a5695582ab0f8e21218ff
diff --git a/src/UniGetUI.Avalonia/App.axaml.cs b/src/UniGetUI.Avalonia/App.axaml.cs index 1d75b8aa7..29bb3200e 100644 --- a/src/UniGetUI.Avalonia/App.axaml.cs +++ b/src/UniGetUI.Avalonia/App.axaml.cs @@ -122,6 +122,24 @@ private static void StartMainWindow(IClassicDesktopStyleApplicationLifetime desk Avalonia...
[ "src/UniGetUI.Avalonia/App.axaml.cs", "src/UniGetUI.Avalonia/ViewModels/MainWindowViewModel.cs", "src/UniGetUI.Avalonia/Views/MainWindow.axaml.cs" ]
[]
true
Devolutions/UniGetUI
4,889
issue_to_patch
improve avalonia consistencies
This pull request introduces a new, reusable `LogTextEditor` control based on AvaloniaEdit to provide a performant, colored, and selectable log/console viewer across the app. It replaces the previous use of `SelectableTextBlock` for log output in dialogs, improving performance, visual consistency, and theming. The upda...
5b05b35bedfa5e15927c4e586644a0e40c9aba4a
f1c78e27a59017a1999b0977d1ef8c4aa4d4c15e
diff --git a/src/UniGetUI.Avalonia/App.axaml b/src/UniGetUI.Avalonia/App.axaml index e948a7b790..0090c8aa0b 100644 --- a/src/UniGetUI.Avalonia/App.axaml +++ b/src/UniGetUI.Avalonia/App.axaml @@ -11,6 +11,7 @@ <Application.Styles> <FluentTheme /> + <StyleInclude Source="avares://AvaloniaEdit/Theme...
[ "src/UniGetUI.Avalonia/App.axaml", "src/UniGetUI.Avalonia/UniGetUI.Avalonia.csproj", "src/UniGetUI.Avalonia/ViewModels/SidebarViewModel.cs", "src/UniGetUI.Avalonia/Views/Controls/LogTextEditor.cs", "src/UniGetUI.Avalonia/Views/Controls/Settings/SettingsCard.cs", "src/UniGetUI.Avalonia/Views/DialogPages/Op...
[]
true
Devolutions/UniGetUI
4,881
issue_to_patch
Fix translation too long in lang_it.json
586edeabecf3f83a37c758f4f152987f32d73cb2
566cded48daa52c8418ea768b88ddec8857f023e
diff --git a/src/Languages/lang_it.json b/src/Languages/lang_it.json index 3b6a60bdb..341fc7c1c 100644 --- a/src/Languages/lang_it.json +++ b/src/Languages/lang_it.json @@ -747,7 +747,7 @@ "Source name:": "Nome sorgente:", "Source URL:": "URL sorgente:", "An error occurred when adding the source: ": "Si è veri...
[ "src/Languages/lang_it.json" ]
[]
true
Devolutions/UniGetUI
4,880
issue_to_patch
[BUG] bun package manager is not working ### Please confirm these before moving forward - [x] I have searched for my issue and have not found a work-in-progress/duplicate/resolved issue. - [x] I have tested that this issue has not been fixed in the latest [(beta or stable) release](https://github.com/Devolutions/UniG...
Fix Bun manager detection, search, and global package listing (#4859)
Fixes three bugs in the Bun package manager that prevented it from being detected and used correctly. (#4859) ...
586edeabecf3f83a37c758f4f152987f32d73cb2
1bcec04902bb6950af4d7a8c4b4443119933cdb6
diff --git a/src/UniGetUI.PackageEngine.Managers.Bun/Bun.cs b/src/UniGetUI.PackageEngine.Managers.Bun/Bun.cs index 491372278c..24204326f6 100644 --- a/src/UniGetUI.PackageEngine.Managers.Bun/Bun.cs +++ b/src/UniGetUI.PackageEngine.Managers.Bun/Bun.cs @@ -54,32 +54,29 @@ public Bun() protected override IReadO...
[ "src/UniGetUI.PackageEngine.Managers.Bun/Bun.cs", "src/UniGetUI.PackageEngine.Tests/BunManagerTests.cs", "src/UniGetUI.PackageEngine.Tests/Fixtures/Bun/search-results.json" ]
[]
true
Devolutions/UniGetUI
4,878
issue_to_patch
Fix PowerShell updates failing (#4865)
This pull request introduces important improvements to the PowerShell package operation helper and the process operation logic, focusing on better compatibility and error handling. The most significant changes are summarized below (#4865): ### PowerShell Package Operation Improvements * Ensured the `-Scope` param...
586edeabecf3f83a37c758f4f152987f32d73cb2
85b43b6e3e39b5f1da0870c56bddedabcec4f101
diff --git a/src/UniGetUI.PackageEngine.Managers.PowerShell/Helpers/PowerShellPkgOperationHelper.cs b/src/UniGetUI.PackageEngine.Managers.PowerShell/Helpers/PowerShellPkgOperationHelper.cs index c6708b113a..62b0efb45a 100644 --- a/src/UniGetUI.PackageEngine.Managers.PowerShell/Helpers/PowerShellPkgOperationHelper.cs ++...
[ "src/UniGetUI.PackageEngine.Managers.PowerShell/Helpers/PowerShellPkgOperationHelper.cs", "src/UniGetUI.PackageEngine.Operations/AbstractProcessOperation.cs" ]
[]
true
Devolutions/UniGetUI
4,876
issue_to_patch
Fix WinUI splash screen icon not rendering
This pull request updates the splash image handling in the main window to improve theme support and fix rendering issues. The SVG splash image is replaced with a theme-aware PNG, and logic is added to select the appropriate image based on the current theme. ( #4874) **Splash image improvements:** * Changed the sp...
546dae71c014f17a467758f9f0ef8d659048bd44
ac02bb5274d8f66774cf816192f41ed9957f7719
diff --git a/src/UniGetUI/MainWindow.xaml b/src/UniGetUI/MainWindow.xaml index 7f7ceae9a..bd97af31d 100644 --- a/src/UniGetUI/MainWindow.xaml +++ b/src/UniGetUI/MainWindow.xaml @@ -113,9 +113,9 @@ Grid.ColumnSpan="3" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}" /> - ...
[ "src/UniGetUI/MainWindow.xaml", "src/UniGetUI/MainWindow.xaml.cs" ]
[]
true
Devolutions/UniGetUI
4,875
issue_to_patch
Broken icon/metadata mappings occurring for Python (PIP) packages ### Please confirm these before moving forward - [x] I have searched for my issue and have not found a work-in-progress/duplicate/resolved issue. - [x] I have tested that this issue has not been fixed in the latest [(beta or stable) release](https://gi...
Fix broken icon mappings for pip tenacity and starlette (#4845)
Fixes #4845 ### Problem Two Python (pip) packages had broken icon metadata that produced persistent NotFound errors in the operation log: Icon download attempt at https://i.postimg.cc/2y15VgpK/starlette.png failed with code NotFound Icon download attempt at https://codeberg.org/tenacityteam/tenacity/raw/branc...
546dae71c014f17a467758f9f0ef8d659048bd44
5794add44d074a57985a88f57570f1c281326585
diff --git a/WebBasedData/screenshot-database-v2.json b/WebBasedData/screenshot-database-v2.json index cca5a422d4..d33692e518 100644 --- a/WebBasedData/screenshot-database-v2.json +++ b/WebBasedData/screenshot-database-v2.json @@ -1,8 +1,8 @@ { "package_count": { - "total": 12409, - "done": 5930, - "packag...
[ "WebBasedData/screenshot-database-v2.json" ]
[]
true
Devolutions/UniGetUI
4,872
issue_to_patch
Allow custom PinGet executable paths
## Summary - Honor existing custom manager executable paths even when they are not part of the detected `PATH` candidates. - Add a **Browse...** action to both WinUI and Avalonia package-manager settings so users can select `pinget.exe` outside `PATH`. - Keep secure custom-path gating intact and preserve fallback beha...
acf111ddfe7849a45484b794ebb686cae6391d0d
534a764b964a704a0cd332f0829830e391203620
diff --git a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/PackageManagerPage.axaml.cs b/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/PackageManagerPage.axaml.cs index 1228cf75ff..5f0c54e948 100644 --- a/src/UniGetUI.Avalonia/Views/Pages/SettingsPages/PackageManagerPage.axaml.cs +++ b/src/UniGetUI.Avalonia/Views/P...
[ "src/UniGetUI.Avalonia/Views/Pages/SettingsPages/PackageManagerPage.axaml.cs", "src/UniGetUI.PackageEngine.PackageManagerClasses/Manager/PackageManager.cs", "src/UniGetUI.PackageEngine.Tests/PackageManagerTests.cs", "src/UniGetUI/Pages/SettingsPages/ManagersPages/PackageManager.xaml", "src/UniGetUI/Pages/Se...
[]
true