update licenses and readme

This commit is contained in:
Jakob 2023-08-29 15:40:10 +02:00
parent 6233a5d88e
commit 0599e715b6
7 changed files with 34 additions and 86 deletions

View file

@ -60,6 +60,19 @@ namespace EnvyUpdate.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to GNU LGPL information
/// --------------------
///This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
///
///This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public [rest of string was truncated]&quot;;.
/// </summary>
internal static string _7zip {
get {
return ResourceManager.GetString("7zip", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The MIT License
///
@ -120,21 +133,6 @@ namespace EnvyUpdate.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to MIT License
///
///Copyright (c) 2017 Alexander Selishchev
///
///Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
///
///The above copyrigh [rest of string was truncated]&quot;;.
/// </summary>
internal static string SevenZipExtractor {
get {
return ResourceManager.GetString("SevenZipExtractor", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to # Windows Community Toolkit
///

View file

@ -117,6 +117,15 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="7zip" xml:space="preserve">
<value>GNU LGPL information
--------------------
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You can receive a copy of the GNU Lesser General Public License from http://www.gnu.org/</value>
</data>
<data name="CosturaFody" xml:space="preserve">
<value>The MIT License
@ -159,17 +168,6 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</value>
</data>
<data name="SevenZipExtractor" xml:space="preserve">
<value>MIT License
Copyright (c) 2017 Alexander Selishchev
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</value>
</data>
<data name="WindowsCommunityToolkit" xml:space="preserve">

View file

@ -49,15 +49,15 @@
<Expander Margin="0,4,0,0" Header="ResourceEmbedder">
<TextBox x:Name="textBoxLicResourceembedder" IsReadOnly="True" TextWrapping="Wrap"/>
</Expander>
<Expander Margin="0,4,0,0" Header="SevenZipExtractor">
<TextBox x:Name="textBoxLic7z" IsReadOnly="True" TextWrapping="Wrap"/>
</Expander>
<Expander Margin="0,4,0,0" Header="Windows Community Toolkit">
<TextBox x:Name="textBoxLicWindowscommunitytoolkit" IsReadOnly="True" TextWrapping="Wrap"/>
</Expander>
<Expander Margin="0,4,0,0" Header="WPF-UI">
<TextBox x:Name="textBoxLicWpfui" IsReadOnly="True" TextWrapping="Wrap"/>
</Expander>
<Expander Margin="0,4,0,0" Header="WPF-UI">
<TextBox x:Name="textBoxLic7zip" IsReadOnly="True" TextWrapping="Wrap"/>
</Expander>
</StackPanel>
</ScrollViewer>
</Grid>

View file

@ -28,9 +28,9 @@ namespace EnvyUpdate
textBoxLicFody.Text = Properties.Licenses.Fody;
textBoxLicCostura.Text = Properties.Licenses.CosturaFody;
textBoxLicResourceembedder.Text = Properties.Licenses.ResourceEmbedder;
textBoxLic7z.Text = Properties.Licenses.SevenZipExtractor;
textBoxLicWindowscommunitytoolkit.Text = Properties.Licenses.WindowsCommunityToolkit;
textBoxLicWpfui.Text = Properties.Licenses.wpfui;
textBoxLic7zip.Text = Properties.Licenses._7zip;
}
private void CardWeb_Click(object sender, RoutedEventArgs e)