Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update licenses, disclaimer on the about page #2309

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/UniGetUI.Core.Data/Licenses.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ public static class LicenseData
// Package managers and related
{"Winget", "MIT"},
{"Scoop", "MIT"},
{"Scoop Search", "MIT"},
{"scoop-search", "MIT"},
{"Chocolatey", "Apache v2"},
{"Npm", "Artistic License 2.0"},
{"Pip", "MIT"},
{"Parse Pip Search", "MIT"},
{"parse_pip_search", "MIT"},
{"PowerShell Gallery", "Unknown"},
{"Dotnet Tool", "Free (Proprietary license)"},
{".NET Sdk", "MIT"},
{"dotnet-tools-outdated", "MIT"},

// Other
Expand All @@ -46,12 +46,12 @@ public static class LicenseData
// Package managers and related
{"Winget", new Uri("https://github.com/microsoft/winget-cli/blob/master/LICENSE")},
{"Scoop", new Uri("https://github.com/ScoopInstaller/Scoop/blob/master/LICENSE")},
{"Scoop Search", new Uri("https://github.com/shilangyu/scoop-search/blob/master/LICENSE")},
{"scoop-search", new Uri("https://github.com/shilangyu/scoop-search/blob/master/LICENSE")},
{"Chocolatey", new Uri("https://github.com/chocolatey/choco/blob/develop/LICENSE")},
{"Npm", new Uri("https://github.com/npm/cli/blob/latest/LICENSE")},
{"Pip", new Uri("https://github.com/pypa/pip/blob/main/LICENSE.txt")},
{"Parse Pip Search", new Uri("https://github.com/marticliment/parseable_pip_search/blob/master/LICENSE.md")},
{"Dotnet Tool", new Uri("https://dotnet.microsoft.com/en-us/platform/free")},
{"parse_pip_search", new Uri("https://github.com/marticliment/parseable_pip_search/blob/master/LICENSE.md")},
{".NET Sdk", new Uri("https://github.com/dotnet/sdk/blob/main/LICENSE.TXT")},
{"dotnet-tools-outdated", new Uri("https://github.com/rychlym/dotnet-tools-outdated/blob/master/LICENSE")},
{"PowerShell Gallery", new Uri("https://www.powershellgallery.com/")},

Expand All @@ -75,12 +75,12 @@ public static class LicenseData
// Package managers and related
{"Winget", new Uri("https://github.com/microsoft/winget-cli/")},
{"Scoop", new Uri("https://github.com/ScoopInstaller/Scoop/")},
{"Scoop Search", new Uri("https://github.com/shilangyu/scoop-search/")},
{"scoop-search", new Uri("https://github.com/shilangyu/scoop-search/")},
{"Chocolatey", new Uri("https://github.com/chocolatey/choco/")},
{"Npm", new Uri("https://github.com/npm/cli/")},
{"Pip", new Uri("https://github.com/pypa/pip/")},
{"Parse Pip Search", new Uri("https://github.com/marticliment/parseable_pip_search/")},
{"Dotnet Tool", new Uri("https://github.com/dotnet/sdk/")},
{"parse_pip_search", new Uri("https://github.com/marticliment/parseable_pip_search/")},
{".NET Sdk", new Uri("https://dotnet.microsoft.com/")},
{"dotnet-tools-outdated", new Uri("https://github.com/rychlym/dotnet-tools-outdated/")},
{"PowerShell Gallery", new Uri("https://www.powershellgallery.com/")},

Expand Down
2 changes: 1 addition & 1 deletion src/UniGetUI/Interface/Pages/AboutPages/AboutUniGetUI.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<widgets:TranslatedTextBlock x:Name="AboutHeader" Text="About WingetUI" FontSize="24" FontFamily="Segoe UI Variable Display" FontWeight="Bold"/>
<widgets:TranslatedTextBlock Text="WingetUI is an application that makes managing your software easier, by providing an all-in-one graphical interface for your command-line package managers."/>
<TextBlock Margin="0,10,0,10" x:Name="VersionText" Text="" FontWeight="SemiBold" FontSize="15"/>
<InfoBar Margin="0,10,0,10" Severity="Warning" Name="DisclaimerBanner" IsOpen="True" IsClosable="False" Title="Disclaimer" Message="WingetUI is not affiliated or related with Winget, Microsoft, nor any other package manager."/>
<InfoBar Margin="0,10,0,10" Severity="Warning" Name="DisclaimerBanner" IsOpen="True" IsClosable="False"/>

<widgets:TranslatedTextBlock Text="Useful links" FontSize="24" FontFamily="Segoe UI Variable Display" FontWeight="Bold"/>
<HyperlinkButton NavigateUri="https://www.marticliment.com/unigetui" HorizontalAlignment="Stretch">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ public AboutUniGetUI()
{
InitializeComponent();
VersionText.Text = CoreTools.Translate("You have installed WingetUI Version {0}", CoreData.VersionName);

DisclaimerBanner.Title = CoreTools.Translate("Disclaimer");
DisclaimerBanner.Message = CoreTools.Translate("UniGetUI is not related to any of the compatible package managers. UniGetUI is an independent project.");
}
}
}
Loading