feat: release notes for 0.1.9; NetSurf license notices; bump version to 0.2.0
Cut two 0.1.9 x86_64 images: montauk-0.1.9-x86_64.iso (29 MB) and montauk-0.1.9-sdk-x86_64.iso (194 MB). Both include the NetSurf port and exclude the WIP git port; only the SDK image carries 0:/sdk. GNUmakefile: add RELEASE_WITHOUT_SDK=1 to the release target, mirroring RELEASE_WITH_PORTS. Needed because devkit is .PHONY and repopulates programs/bin/sdk on every build, so the SDK cannot be held out by hand. sdk/tcc and sdk/lua stay (installed by their own targets), as does 0:/tmp, which the libc uses for tmpnam() and not just compiler intermediates. Also strip .release-tmp/boot/kernel. The ramdisk carries its own copy of the kernel -- the image the Installer lays down on the target disk -- and it is not named *.elf, so the existing find missed it. It was shipping unstripped at 6.2 MB against 0.7 MB. Licensing: NetSurf (GPLv2, MIT artwork), the ten NetSurf project libraries (MIT), utf8proc (MIT) and zlib now ship in both images and had no attribution anywhere. Add notices for each, and broaden the stb_image section to cover stb_truetype, which the GUI apps have always linked. The component lists in license.txt and license.html were stale to match; license.txt is the source for 0:/os/licenses/LICENSE.txt, so it ships. downloads.html: 0.1.9 card with separate download links for the plain and SDK images; 0.1.8 moves to the archive. Co-Authored-By: Claude Opus 5 <[email protected]>
This commit is contained in:
@@ -82,13 +82,17 @@ License: MIT License
|
||||
|
||||
|
||||
================================================================================
|
||||
3. stb_image (JPEG image decoding)
|
||||
3. stb_image and stb_truetype (image decoding and font rasterisation)
|
||||
================================================================================
|
||||
Used as the single-header image decoder behind MontaukOS image/JPEG support
|
||||
(programs/include/gui/stb_image.h). This is the "libjpeg" component referenced in
|
||||
the build; it is in fact stb_image by Sean Barrett.
|
||||
|
||||
stb_image is dual-licensed (MIT OR public domain). MontaukOS relies on the MIT
|
||||
stb_truetype, by the same author, is the TrueType rasteriser linked into the
|
||||
graphical applications and into the NetSurf browser port, where it renders the
|
||||
system fonts.
|
||||
|
||||
Both are dual-licensed (MIT OR public domain). MontaukOS relies on the MIT
|
||||
option, reproduced here:
|
||||
|
||||
License: MIT License
|
||||
@@ -498,6 +502,159 @@ notices and license terms; those notices remain applicable.
|
||||
including MontaukOS's GCC and Binutils port patches, is available in the
|
||||
MontaukOS source tree.
|
||||
|
||||
|
||||
================================================================================
|
||||
19. NetSurf (web browser)
|
||||
================================================================================
|
||||
Shipped as the bundled "netsurf" application (0:/apps/netsurf/netsurf.elf), built
|
||||
from NetSurf 3.11 (git 39da3c3a4). The MontaukOS build reuses NetSurf's monkey
|
||||
frontend glue with a native MontaukOS window frontend, replaces the libcurl and
|
||||
OpenSSL fetchers with a BearSSL-backed one, and builds without JavaScript. The
|
||||
port's patches, compatibility shims, and frontend sources are in the mtkports
|
||||
tree under www-client/netsurf/.
|
||||
|
||||
The resource tree installed at 0:/apps/netsurf/res/ (Messages, default.css,
|
||||
quirks.css, and the bundled artwork) is part of NetSurf and is covered by this
|
||||
notice.
|
||||
|
||||
Copyright (C) the NetSurf Browser Project and its respective contributors.
|
||||
Upstream: https://www.netsurf-browser.org/
|
||||
https://github.com/netsurf-browser/netsurf
|
||||
|
||||
License: GNU General Public License, version 2 (GPLv2), for the source code,
|
||||
documentation, translatable message files, and UI definitions; MIT License for
|
||||
the visual artwork.
|
||||
|
||||
NetSurf is free software; you can redistribute it and/or modify it under the
|
||||
terms of the GNU General Public License as published by the Free Software
|
||||
Foundation; version 2 of the License.
|
||||
|
||||
This program 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 General Public License for more details.
|
||||
|
||||
Upstream NetSurf grants a special exception permitting the code to be linked
|
||||
against the OpenSSL project's "OpenSSL" library. The MontaukOS port does not
|
||||
link OpenSSL -- HTTPS is provided by BearSSL (section 2) -- so that exception
|
||||
is not relied upon here.
|
||||
|
||||
IMPORTANT: The NetSurf application (netsurf.elf) is licensed under GPLv2,
|
||||
separately from MontaukOS itself. The MontaukOS Software License does NOT apply
|
||||
to netsurf.elf or to the NetSurf source. The full GPLv2 license text is
|
||||
included on the MontaukOS ISO at 0:/os/licenses/GPL-2.0.txt.
|
||||
|
||||
WRITTEN OFFER FOR SOURCE: The complete corresponding source code for the
|
||||
NetSurf application, including the MontaukOS port's patches and frontend
|
||||
sources, under the terms of GPLv2, is available on request and is provided
|
||||
alongside MontaukOS distributions. Contact: [email protected].
|
||||
|
||||
|
||||
================================================================================
|
||||
20. NetSurf project libraries
|
||||
================================================================================
|
||||
Linked into the NetSurf application: libcss (CSS parsing and selection), libdom
|
||||
(DOM), libhubbub (HTML5 parsing), libparserutils (parser building blocks),
|
||||
libwapcaplet (interned strings), libnsutils (time and base64 helpers), libnslog
|
||||
(filtered logging), libnspsl (public suffix list), libnsgif (GIF decoding), and
|
||||
libnsbmp (BMP/ICO decoding).
|
||||
|
||||
Copyright (C) 2007-2008 J-M Bell (libparserutils, libhubbub, libcss, libdom)
|
||||
Copyright (C) 2009 The NetSurf Browser Project (libwapcaplet)
|
||||
Copyright (C) 2014, 2016 Vincent Sanders (libnsutils, libnslog, libnspsl)
|
||||
Copyright (C) 2004, 2006 Richard Wilson (libnsgif, libnsbmp)
|
||||
Copyright (C) 2008 Sean Fox (libnsgif, libnsbmp)
|
||||
Copyright (C) 2013-2021 Michael Drake (libnsgif)
|
||||
Copyright (C) the respective NetSurf Browser Project contributors.
|
||||
Upstream: https://www.netsurf-browser.org/projects/
|
||||
|
||||
License: MIT License
|
||||
|
||||
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.
|
||||
|
||||
|
||||
================================================================================
|
||||
21. utf8proc
|
||||
================================================================================
|
||||
Linked into the NetSurf application for Unicode normalisation and case folding,
|
||||
via the NetSurf project's libutf8proc fork.
|
||||
|
||||
Copyright (C) 2014-2019 Steven G. Johnson, Jiahao Chen, Tony Kelman, Jonas
|
||||
Fonseca, and other contributors listed in the git history.
|
||||
Copyright (C) 2006-2013 Jan Behrens and the Public Software Group e. V.,
|
||||
Berlin, Germany (original utf8proc).
|
||||
Upstream: https://juliastrings.github.io/utf8proc/
|
||||
|
||||
License: MIT License
|
||||
|
||||
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.
|
||||
|
||||
This library also incorporates Unicode Character Database data, which is
|
||||
distributed under the Unicode, Inc. license agreement for data files and
|
||||
software; that notice is reproduced in the upstream LICENSE.md.
|
||||
|
||||
|
||||
================================================================================
|
||||
22. zlib (compression)
|
||||
================================================================================
|
||||
Linked into the NetSurf application for HTTP content decoding and PNG/gzip
|
||||
stream decompression.
|
||||
|
||||
Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
|
||||
Upstream: https://zlib.net/
|
||||
|
||||
License: zlib License
|
||||
|
||||
This software is provided 'as-is', without any express or implied warranty.
|
||||
In no event will the authors be held liable for any damages arising from the
|
||||
use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software
|
||||
in a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
2. Altered source versions must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
|
||||
Jean-loup Gailly Mark Adler
|
||||
[email protected] [email protected]
|
||||
|
||||
================================================================================
|
||||
For licensing inquiries regarding MontaukOS itself, contact: [email protected]
|
||||
================================================================================
|
||||
|
||||
Reference in New Issue
Block a user