added doc link to settings menu (#4156)

This commit is contained in:
Sean (ANGRYxScotsman)
2026-03-06 14:29:20 +00:00
committed by GitHub
parent 5e78391518
commit a30664002b
4 changed files with 9 additions and 3 deletions

View File

@@ -45,4 +45,4 @@ body:
id: error_output
attributes:
label: ❌ Paste the full error output (if available) or Screenshot.
placeholder: "Include any relevant logs or error messages."
placeholder: "Include any relevant logs or error messages."

View File

@@ -19,4 +19,4 @@ body:
label: 💡 Describe the solution you'd like
placeholder: "Provide a clear and concise description."
validations:
required: true
required: true

View File

@@ -487,7 +487,7 @@ $sync["AboutMenuItem"].Add_Click({
Invoke-WPFPopup -Action "Hide" -Popups @("Settings")
$authorInfo = @"
Author : <a href="https://github.com/ChrisTitusTech">@christitustech</a>
Author : <a href="https://github.com/ChrisTitusTech">@ChrisTitusTech</a>
UI : <a href="https://github.com/MyDrift-user">@MyDrift-user</a>, <a href="https://github.com/Marterich">@Marterich</a>
Runspace : <a href="https://github.com/DeveloperDurp">@DeveloperDurp</a>, <a href="https://github.com/Marterich">@Marterich</a>
GitHub : <a href="https://github.com/ChrisTitusTech/winutil">ChrisTitusTech/winutil</a>
@@ -495,6 +495,11 @@ Version : <a href="https://github.com/ChrisTitusTech/winutil/releases/tag/$($sy
"@
Show-CustomDialog -Title "About" -Message $authorInfo
})
$sync["DocumentationMenuItem"].Add_Click({
Write-Debug "Documentation clicked"
Invoke-WPFPopup -Action "Hide" -Popups @("Settings")
Start-Process "https://winutil.christitus.com/"
})
$sync["SponsorMenuItem"].Add_Click({
Write-Debug "Sponsors clicked"
Invoke-WPFPopup -Action "Hide" -Popups @("Settings")

View File

@@ -1180,6 +1180,7 @@
</MenuItem>
<Separator/>
<MenuItem FontSize="{DynamicResource ButtonFontSize}" Header="About" Name="AboutMenuItem" Foreground="{DynamicResource MainForegroundColor}"/>
<MenuItem FontSize="{DynamicResource ButtonFontSize}" Header="Documentation" Name="DocumentationMenuItem" Foreground="{DynamicResource MainForegroundColor}"/>
<MenuItem FontSize="{DynamicResource ButtonFontSize}" Header="Sponsors" Name="SponsorMenuItem" Foreground="{DynamicResource MainForegroundColor}"/>
</StackPanel>
</Border>