Updated the README file.
This commit is contained in:
parent
1c175c651b
commit
9a5a81e031
53
README.html
53
README.html
@ -4,28 +4,47 @@
|
||||
<title>MUtilites</title>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body { font-family: "Times New Roman", Times, serif; color: #000000; background-color: #FFFFFF; }
|
||||
tt, pre, code { font-family: Courier New, Courier, mono; background-color: #EDF3F7; padding: 1px; }
|
||||
a { color: #0000BB; text-decoration: none; }
|
||||
a:visited { color: #0000BB; text-decoration: none; }
|
||||
a:active { color: #0000FF; text-decoration: none; }
|
||||
a:hover { color: #0000FF; text-decoration: underline; }
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>MUtilities – MuldeR's Utilities for Qt</h1>
|
||||
<h2>Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de></h2>
|
||||
<p><b>Please visit <a href="http://muldersoft.com/">http://muldersoft.com/</a> or <a href="https://github.com/lordmulder?tab=repositories">https://github.com/lordmulder</a> for more information!</b></p>
|
||||
<hr>
|
||||
<p style="font-family:monospace">
|
||||
This library is free software; you can redistribute it and/or<br>
|
||||
modify it under the terms of the GNU Lesser General Public<br>
|
||||
License as published by the Free Software Foundation; either<br>
|
||||
version 2.1 of the License, or (at your option) any later version.<br>
|
||||
<br>
|
||||
This library is distributed in the hope that it will be useful,<br>
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of<br>
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU<br>
|
||||
Lesser General Public License for more details.<br>
|
||||
<br>
|
||||
You should have received a copy of the GNU Lesser General Public<br>
|
||||
License along with this library; if not, write to the Free Software<br>
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
</p>
|
||||
<p><a href="https://www.gnu.org/licenses/lgpl-2.1.html">https://www.gnu.org/licenses/lgpl-2.1.html</a></p>
|
||||
<h2>About this Library</h2>
|
||||
<p>This library is a collection of routines and classes to extend the <a href="http://qt-project.org/">Qt cross-platform framework</a>. It contains various convenience and utility functions as well as wrappers for OS-specific functionalities. The library was originally created as a "side product" of the <a href="http://lamexp.sourceforge.net/">LameXP</a> application: Over the years, a lot of code, <i>not</i> really specific to LameXP, had accumulated in the LameXP code base. Some of that code even had been used in other projects too, in a "copy & paste" fashion – which had lead to redundancy and much complicated maintenance. In order to clean-up the LameXP code base, to eliminate the ugly redundancy and to simplify maintenance, the code in question has finally been refactored into the <i>MUtilities</i> (aka "MuldeR's Utilities for Qt") library. This library now forms the foundation of LameXP and various other OpenSource projects.
|
||||
<hr>
|
||||
<h2>License Information</h2>
|
||||
<p>This library is free software. It is released under the terms of the <a href="https://www.gnu.org/licenses/lgpl-2.1.html">GNU Lesser General Public License (LGPL), Version 2.1</a>.</p>
|
||||
<p><pre><code>MUtilities – MuldeR's Utilities for Qt<br>Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved.<br><br>This library is free software; you can redistribute it and/or<br>modify it under the terms of the GNU Lesser General Public<br>License as published by the Free Software Foundation; either<br>version 2.1 of the License, or (at your option) any later version.<br><br>This library is distributed in the hope that it will be useful,<br>but WITHOUT ANY WARRANTY; without even the implied warranty of<br>MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU<br>Lesser General Public License for more details.<br><br>You should have received a copy of the GNU Lesser General Public<br>License along with this library; if not, write to the Free Software<br>Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.</code></pre>
|
||||
<hr>
|
||||
<h2>Acknowledgement</h2>
|
||||
<p>The following <u>third-party</u> code is used in the <i>MUtilities</i> library:
|
||||
<ul>
|
||||
<li>
|
||||
<b>Keccak/SHA-3 Reference Implementation</b><br>
|
||||
Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni, Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer<br>
|
||||
No Copyright / Dedicated to the Public Domain<br><br>
|
||||
</li>
|
||||
<li>
|
||||
<b>Natural Order String Comparison</b><br>
|
||||
Copyright (C) 2000, 2004 by Martin Pool <a href="mailto:mbp@sourcefrog.net"><mbp@sourcefrog.net></a><br>
|
||||
Released under the zlib License<br><br>
|
||||
</li>
|
||||
<li>
|
||||
<b>Adler-32 Checksum Algorithm (from zlib)</b><br>
|
||||
Copyright (C) 1995-2013 Jean-loup Gailly and Mark Adler<br>
|
||||
Released under the zlib License<br><br>
|
||||
</li>
|
||||
</ul>
|
||||
<hr>
|
||||
<p>e.o.f.</p>
|
||||
</body>
|
||||
|
36
src/3rd_party/keccak/LICENSE.txt
vendored
36
src/3rd_party/keccak/LICENSE.txt
vendored
@ -1,27 +1,15 @@
|
||||
/*
|
||||
---------------------------------------------------------------------------
|
||||
Copyright (c) 1998-2008, Brian Gladman, Worcester, UK. All rights reserved.
|
||||
Keccak hash algorithm as provided by the inventors, and submitted to the
|
||||
third round of the NIST SHA-3 competition.
|
||||
|
||||
LICENSE TERMS
|
||||
Implementation by the Keccak, Keyak and Ketje Teams, namely, Guido Bertoni,
|
||||
Joan Daemen, Michaël Peeters, Gilles Van Assche and Ronny Van Keer, hereby
|
||||
denoted as "the implementer".
|
||||
|
||||
The redistribution and use of this software (with or without changes)
|
||||
is allowed without the payment of fees or royalties provided that:
|
||||
For more information, feedback or questions, please refer to our websites:
|
||||
http://keccak.noekeon.org/
|
||||
http://keyak.noekeon.org/
|
||||
http://ketje.noekeon.org/
|
||||
|
||||
1. source code distributions include the above copyright notice, this
|
||||
list of conditions and the following disclaimer;
|
||||
|
||||
2. binary distributions include the above copyright notice, this list
|
||||
of conditions and the following disclaimer in their documentation;
|
||||
|
||||
3. the name of the copyright holder is not used to endorse products
|
||||
built using this software without specific written permission.
|
||||
|
||||
DISCLAIMER
|
||||
|
||||
This software is provided 'as is' with no explicit or implied warranties
|
||||
in respect of its properties, including, but not limited to, correctness
|
||||
and/or fitness for purpose.
|
||||
---------------------------------------------------------------------------
|
||||
Issue Date: 20/12/2007
|
||||
Changes for ARM 9/9/2010
|
||||
*/
|
||||
To the extent possible under law, the implementer has waived all copyright
|
||||
and related or neighboring rights to the source code in this file.
|
||||
http://creativecommons.org/publicdomain/zero/1.0/
|
||||
|
Loading…
Reference in New Issue
Block a user