Add version 10.0.20 to bug report template#33060
Conversation
Added version 10.0.20 to the bug report template options.
|
🚀 Dogfood this PR with:
curl -fsSL https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.sh | bash -s -- 33060Or
iex "& { $(irm https://raw.githubusercontent.com/dotnet/maui/main/eng/scripts/get-maui-pr.ps1) } 33060" |
There was a problem hiding this comment.
Pull request overview
This PR updates the bug report template to include new .NET MAUI version numbers, adding version 10.0.20 and 10.0.1 to both version dropdown menus in the GitHub issue template.
Key Changes
- Added version 10.0.20 to both the "Version with bug" and "Last version that worked well" dropdowns
- Added version 10.0.1 to both dropdowns to fill the gap between 10.0.0 and 10.0.10
| - 10.0.1 | ||
| - 10.0.10 | ||
| - 10.0.11 | ||
| - 10.0.20 |
There was a problem hiding this comment.
The version ordering is inconsistent between the two dropdowns. In the first dropdown (lines 45-49), versions are in descending order: 10.0.20, 10.0.11, 10.0.10, 10.0.1, 10.0.0. However, in the second dropdown (lines 156-159), they are in ascending order: 10.0.1, 10.0.10, 10.0.11, 10.0.20. Both dropdowns should use the same ordering convention for consistency. The first dropdown appears to be correct (newest first), so the second dropdown should be reordered to match.
| - 10.0.1 | |
| - 10.0.10 | |
| - 10.0.11 | |
| - 10.0.20 | |
| - 10.0.20 | |
| - 10.0.11 | |
| - 10.0.10 | |
| - 10.0.1 |
No description provided.