-
Notifications
You must be signed in to change notification settings - Fork 808
Expand file tree
/
Copy pathLicenses.cs
More file actions
108 lines (96 loc) · 6.79 KB
/
Licenses.cs
File metadata and controls
108 lines (96 loc) · 6.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
namespace UniGetUI.Core.Data
{
public static class LicenseData
{
public static Dictionary<string, string> LicenseNames = new() {
{"UniGetUI", "MIT" },
// C# Libraries
{"Pickers", "MIT"},
{"Community Toolkit", "MIT"},
{"H.NotifyIcon", "MIT"},
{"Windows App Sdk", "MIT"},
{"PhotoSauce.MagicScaler", "MIT"},
{"YamlDotNet", "MIT"},
{"WinUIEx", "MIT"},
{"InnoDependencyInstaller", "CPOL 1.02" },
// Package managers and related
{"WinGet", "MIT"},
{"Scoop", "MIT"},
{"scoop-search", "MIT"},
{"Chocolatey", "Apache v2"},
{"npm", "Artistic License 2.0"},
{"Pip", "MIT"},
{"parse_pip_search", "MIT"},
{"PowerShell Gallery", "Unknown"},
{".NET SDK", "MIT"},
{"Cargo", "MIT"},
{"cargo-binstall", "GPL-3.0-only"},
{"cargo-update", "MIT"},
{"vcpkg", "MIT"},
// Other
{"GSudo", "MIT"},
{"UniGetUI Elevator", "MIT"},
{"Icons", "By Icons8"},
};
public static Dictionary<string, Uri> LicenseURLs = new(){
{"UniGetUI", new Uri("https://github.com/marticliment/WingetUI/blob/main/LICENSE")},
// C# Libraries
{"Pickers", new Uri("https://github.com/PavlikBender/Pickers/blob/master/LICENSE")},
{"Community Toolkit", new Uri("https://github.com/CommunityToolkit/Windows/blob/main/License.md")},
{"H.NotifyIcon", new Uri("https://github.com/HavenDV/H.NotifyIcon/blob/master/LICENSE.md")},
{"Windows App Sdk", new Uri("https://github.com/microsoft/WindowsAppSDK/blob/main/LICENSE")},
{"PhotoSauce.MagicScaler", new Uri("https://github.com/saucecontrol/PhotoSauce/blob/master/license")},
{"YamlDotNet", new Uri("https://github.com/aaubry/YamlDotNet/blob/master/LICENSE.txt") },
{"WinUIEx", new Uri("https://github.com/dotMorten/WinUIEx/blob/main/LICENSE") },
{"InnoDependencyInstaller", new Uri("https://github.com/DomGries/InnoDependencyInstaller/blob/master/LICENSE.md") },
// 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")},
{"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")},
{".NET SDK", new Uri("https://github.com/dotnet/sdk/blob/main/LICENSE.TXT")},
{"PowerShell Gallery", new Uri("https://www.powershellgallery.com/")},
{"Cargo", new Uri("https://github.com/rust-lang/cargo/blob/master/LICENSE-MIT")},
{"cargo-binstall", new Uri("https://spdx.org/licenses/GPL-3.0-only.html")},
{"cargo-update", new Uri("https://github.com/nabijaczleweli/cargo-update/blob/master/LICENSE")},
{"vcpkg", new Uri("https://github.com/microsoft/vcpkg/blob/master/LICENSE.txt")},
// Other
{"GSudo", new Uri("https://github.com/gerardog/gsudo/blob/master/LICENSE.txt")},
{"UniGetUI Elevator", new Uri("https://github.com/marticliment/GSudo-for-UniGetUI/blob/main/LICENSE.txt")},
{"Icons", new Uri("https://icons8.com/license")},
};
public static Dictionary<string, Uri> HomepageUrls = new(){
{"UniGetUI", new Uri("https://marticliment.com/unigetui")},
// C# Libraries
{"Pickers", new Uri("https://github.com/PavlikBender/Pickers/")},
{"Community Toolkit", new Uri("https://github.com/CommunityToolkit/Windows/")},
{"H.NotifyIcon", new Uri("https://github.com/HavenDV/H.NotifyIcon/")},
{"Windows App Sdk", new Uri("https://github.com/microsoft/WindowsAppSDK/")},
{"PhotoSauce.MagicScaler", new Uri("https://github.com/saucecontrol/PhotoSauce/")},
{"YamlDotNet", new Uri("https://github.com/aaubry/YamlDotNet/") },
{"WinUIEx", new Uri("https://github.com/dotMorten/WinUIEx/") },
{"InnoDependencyInstaller", new Uri("https://github.com/DomGries/InnoDependencyInstaller")},
// 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/")},
{"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/")},
{".NET SDK", new Uri("https://dotnet.microsoft.com/")},
{"PowerShell Gallery", new Uri("https://www.powershellgallery.com/")},
{"Cargo", new Uri("https://github.com/rust-lang/cargo")},
{"cargo-binstall", new Uri("https://github.com/cargo-bins/cargo-binstall")},
{"cargo-update", new Uri("https://github.com/nabijaczleweli/cargo-update/")},
{"vcpkg", new Uri("https://github.com/microsoft/vcpkg")},
// Other
{"GSudo", new Uri("https://github.com/gerardog/gsudo/")},
{"UniGetUI Elevator", new Uri("https://github.com/marticliment/GSudo-for-UniGetUI/")},
{"Icons", new Uri("https://icons8.com")},
};
}
}