From 86e3ebfe33871b047d668f8a747fc3db4ebe95da Mon Sep 17 00:00:00 2001 From: Daniel Hammer Date: Thu, 13 Aug 2026 10:52:09 +0200 Subject: [PATCH] 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 --- GNUmakefile | 14 +++ archives/releasenotes.txt | 67 +++++++++++ kernel/src/Api/Info.hpp | 2 +- montaukos.org/THIRD-PARTY-NOTICES.txt | 161 +++++++++++++++++++++++++- montaukos.org/downloads.html | 85 +++++++++++++- montaukos.org/license.html | 17 ++- montaukos.org/license.txt | 17 ++- 7 files changed, 349 insertions(+), 14 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 9a1df3e..185e9e5 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -270,8 +270,22 @@ ifneq ($(RELEASE_WITH_PORTS),1) done else @echo "release: RELEASE_WITH_PORTS=1 - including out-of-tree port bundles" +endif +# The Montauk SDK (native GCC + binutils and their target sysroot under +# 0:/sdk) dominates the image size. Pass RELEASE_WITHOUT_SDK=1 to cut a slim +# ISO without it. Only the devkit-owned subtrees go: sdk/tcc and sdk/lua are +# installed by their own targets and stay, as does 0:/tmp, which the libc +# uses for tmpnam() and not just for compiler intermediates. +ifeq ($(RELEASE_WITHOUT_SDK),1) + @echo "release: RELEASE_WITHOUT_SDK=1 - excluding the Montauk SDK (0:/sdk dev tools)" + rm -rf .release-tmp/sdk/bin .release-tmp/sdk/lib .release-tmp/sdk/include \ + .release-tmp/sdk/libexec .release-tmp/sdk/x86_64-montauk endif find .release-tmp -name '*.elf' -exec strip {} + +# The ramdisk carries its own copy of the kernel at 0:/boot/kernel -- that is +# the image the Installer lays down on the target disk -- and it is not named +# *.elf, so the find above misses it. Unstripped it is ~6 MB against ~0.7 MB. + strip .release-tmp/boot/kernel ./scripts/mkramdisk.sh .release-tmp iso_root/boot/ramdisk.tar rm -rf .release-tmp mkdir -p iso_root/boot/limine diff --git a/archives/releasenotes.txt b/archives/releasenotes.txt index 9856ed2..ae92cc3 100644 --- a/archives/releasenotes.txt +++ b/archives/releasenotes.txt @@ -1,3 +1,70 @@ +MontaukOS 0.1.9 (August 13, 2026) + (a28b8ad0b2932203b812e967f35f029f060fd6b5) + +New +==== + * Intel Wi-Fi (AX210/AX211) support + * Wi-Fi support in the desktop panel and the Network settings app + * wifi command-line tool + * NetSurf web browser ported as a native MontaukOS app + * SSH server (sshd) with an SSH Server app for managing it + * NTP client (configured via 0:/config/ntp.toml and Time applet) + * init now discovers services from 0:/config/init.toml rather than a hardcoded sequence + * New Display app for managing monitors, modes, and layout + * Expanded Intel GPU display management in the kernel + * Audio stack now mixes concurrent streams and switches output devices live + * New audio device switching UI in Audio app and the desktop panel + * Filesystems can be mounted and unmounted at runtime + * File metadata across all filesystems, exposed through a new stat syscall + * ext2 now saves timestamps and supports utime + * New mkdir, rmdir, and memtest commands + * Expanded support in the PDF Viewer app + * Files shows modified dates in the Properties dialog + * Desktop UI consistency improvements + * Crash reports now capture a stack snapshot + * Userspace heap and virtual memory overhauled + * pread, pwrite, strndup, scandir, alphasort, usleep, ftruncate, M_PI, and a non-blocking stdin readiness probe added to libc + * DOOM moved out of the OS tree into the mtkports project + +Fixed +===== + * Numerous kernel concurrency, interrupt-context, and user virtual-address fixes + * Hardened the TCP/IP stack and unified the HTTP clients; fixed several networking bugs and regressions + * Improved Bluetooth reliability + * Corrected Intel GGTT setup and DP AUX EDID reads + * IPC handle slots are no longer reused while an object is still being torn down + * The ramdisk no longer packs symlinks as zero-byte files + * Fixed a ramdisk readdir inconsistency + * Processes now inherit their parent's environment + * getcwd reports a truncated buffer as ERANGE instead of silently truncating + * Improved stdio and argument handling + * Clarified Intel iwlwifi firmware licensing + +Included in ISO +================ + + Two x86_64 images are published for this release. + montauk-0.1.9-sdk-x86_64.iso additionally carries the + Montauk SDK (gcc, binutils, etc.) + + * MontaukOS SMP kernel + * Userspace bootstrap (0:/os/init.elf) and other essential system utilities + * MontaukOS desktop environment and graphical apps + * NetSurf web browser (0:/apps/netsurf) + * Manual pages (0:/man), readable via man command + * Service and system configuration (0:/config: init.toml, ssh.toml, ntp.toml, timezonedata.toml) + * System CA certificates (0:/os/certs/ca-certificates.crt) + * Intel Bluetooth controller and Wi-Fi (iwlwifi) firmware (0:/os/firmware/intel) + * Third-party license texts and notices (0:/os/licenses) + * Tiny C Compiler (tcc) with MontaukOS headers and libraries (0:/sdk/tcc) + * Lua 5.4 interpreter (lua) with headers and static library (0:/sdk/lua) + * Montauk SDK - native GCC/G++ and binutils (0:/sdk) - SDK image only + * Flat Remix icon pack + * JetBrains Mono, Noto Serif, Roboto, and C059 Roman (open Century Schoolbook) TrueType fonts + * DOOM engine with SDL_mixer audio support (game data not included) + * Experimental HTTP server (httpd) and default page (0:/www/index.html) + * Default wallpaper - blossoms by Nikhil Kumar, Unsplash (0:/os/wallpapers) + MontaukOS 0.1.8 (July 18, 2026) (71c66f803516558012be13ee38cb02a9a0ba476a) diff --git a/kernel/src/Api/Info.hpp b/kernel/src/Api/Info.hpp index d4463fc..30c8302 100644 --- a/kernel/src/Api/Info.hpp +++ b/kernel/src/Api/Info.hpp @@ -17,7 +17,7 @@ namespace montauk::abi { // Copy strings into fixed-size arrays (user-accessible) const char* name = "MontaukOS"; - const char* ver = "0.1.9"; + const char* ver = "0.2.0"; for (int i = 0; name[i]; i++) outInfo->osName[i] = name[i]; outInfo->osName[9] = '\0'; for (int i = 0; ver[i]; i++) outInfo->osVersion[i] = ver[i]; diff --git a/montaukos.org/THIRD-PARTY-NOTICES.txt b/montaukos.org/THIRD-PARTY-NOTICES.txt index b43300b..85354b2 100644 --- a/montaukos.org/THIRD-PARTY-NOTICES.txt +++ b/montaukos.org/THIRD-PARTY-NOTICES.txt @@ -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: licensing@montaukos.org. + + +================================================================================ +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 + jloup@gzip.org madler@alumni.caltech.edu + ================================================================================ For licensing inquiries regarding MontaukOS itself, contact: licensing@montaukos.org ================================================================================ diff --git a/montaukos.org/downloads.html b/montaukos.org/downloads.html index fc22f8c..5be1c80 100644 --- a/montaukos.org/downloads.html +++ b/montaukos.org/downloads.html @@ -119,6 +119,7 @@
-

Release Archive

MontaukOS 0.1.7

July 9, 2026

diff --git a/montaukos.org/license.html b/montaukos.org/license.html index afe1bf7..ebddd42 100644 --- a/montaukos.org/license.html +++ b/montaukos.org/license.html @@ -155,14 +155,21 @@ termination.

The Software incorporates or is distributed alongside third-party components that remain the property of their respective owners and are licensed under -their own terms, including the Limine bootloader, BearSSL, stb_image, the DOOM -engine (via doomgeneric), the Tiny C Compiler, Lua, the GNU Compiler Collection -(GCC), GNU Binutils, the Flat Remix icon theme, the bundled fonts, the Mozilla -CA certificate bundle, and Intel Bluetooth firmware. GCC and GNU Binutils are +their own terms, including the Limine bootloader, Flanterm, BearSSL, stb_image +and stb_truetype, the DOOM engine (via doomgeneric), the NetSurf web browser and +the NetSurf project libraries (libcss, libdom, libhubbub, libparserutils, +libwapcaplet, libnsutils, libnslog, libnspsl, libnsgif, libnsbmp), utf8proc, +zlib, the Tiny C Compiler, Lua, the GNU Compiler Collection (GCC), GNU Binutils, +the Flat Remix icon theme, the bundled fonts, the Mozilla CA certificate bundle, +Intel Bluetooth and Wi-Fi (iwlwifi) firmware, and the default wallpaper +photograph. GCC and GNU Binutils are included as the native MontaukOS SDK toolchain (GCC 14.2.0 and Binutils 2.43.1) under the GNU GPLv3, with the GCC Runtime Library Exception where applicable. Copyright (C) 1987-2024 Free Software Foundation, Inc.; additional copyrights -belong to the respective GCC, GNU Binutils, and other contributors. +belong to the respective GCC, GNU Binutils, and other contributors. The NetSurf +application is included under the GNU GPLv2; its visual artwork is under the MIT +License. Copyright (C) the NetSurf Browser Project and its respective +contributors. Nothing in this license modifies, supersedes, or limits the license terms applicable to those components; to the extent of any conflict, the third-party license controls for that component. The applicable copyright notices and diff --git a/montaukos.org/license.txt b/montaukos.org/license.txt index 70a2dbf..0ffcbbc 100644 --- a/montaukos.org/license.txt +++ b/montaukos.org/license.txt @@ -71,14 +71,21 @@ obtained by others are unaffected. Sections 3, 5, 6, and 7 survive termination. ------------------------- The Software incorporates or is distributed alongside third-party components that remain the property of their respective owners and are licensed under -their own terms, including the Limine bootloader, BearSSL, stb_image, the DOOM -engine (via doomgeneric), the Tiny C Compiler, Lua, the GNU Compiler Collection -(GCC), GNU Binutils, the Flat Remix icon theme, the bundled fonts, the Mozilla -CA certificate bundle, and Intel Bluetooth firmware. GCC and GNU Binutils are +their own terms, including the Limine bootloader, Flanterm, BearSSL, stb_image +and stb_truetype, the DOOM engine (via doomgeneric), the NetSurf web browser and +the NetSurf project libraries (libcss, libdom, libhubbub, libparserutils, +libwapcaplet, libnsutils, libnslog, libnspsl, libnsgif, libnsbmp), utf8proc, +zlib, the Tiny C Compiler, Lua, the GNU Compiler Collection (GCC), GNU Binutils, +the Flat Remix icon theme, the bundled fonts, the Mozilla CA certificate bundle, +Intel Bluetooth and Wi-Fi (iwlwifi) firmware, and the default wallpaper +photograph. GCC and GNU Binutils are included as the native MontaukOS SDK toolchain (GCC 14.2.0 and Binutils 2.43.1) under the GNU GPLv3, with the GCC Runtime Library Exception where applicable. Copyright (C) 1987-2024 Free Software Foundation, Inc.; additional copyrights -belong to the respective GCC, GNU Binutils, and other contributors. +belong to the respective GCC, GNU Binutils, and other contributors. The NetSurf +application is included under the GNU GPLv2; its visual artwork is under the MIT +License. Copyright (C) the NetSurf Browser Project and its respective +contributors. Nothing in this license modifies, supersedes, or limits the license terms applicable to those components; to the extent of any conflict, the third-party license controls for that component. The applicable copyright notices and