From bb1e229b3677424a7727c06b03554f0528a0f5dc Mon Sep 17 00:00:00 2001 From: Dominik Roth Date: Mon, 10 Aug 2026 21:42:20 +0200 Subject: [PATCH] Add MIT license, and say what it does not cover MIT for the code. Explicitly carved out: the icons in assets/icons/ and the screenshots in tests/fixtures/ are the game author's work with no redistribution permission granted, and Courier Prime is under the SIL Open Font License 1.1 (text in assets/fonts/OFL.txt, extracted verbatim from the font file's own name table rather than retyped). Co-Authored-By: Claude Opus 5 --- LICENSE | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..17c6021 --- /dev/null +++ b/LICENSE @@ -0,0 +1,46 @@ +MIT License + +Copyright (c) 2026 Dominik Roth + +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. + +--- + +THIRD-PARTY ASSETS + +The MIT license above covers the code in this repository. It does NOT cover +bundled assets owned by other rights holders, which are included under their +own terms (or, in one case, under none): + +* assets/fonts/CourierPrime-Regular.ttf + Courier Prime, Copyright (c) 2013 Quote-Unquote Apps, licensed under the SIL + Open Font License 1.1. Full license text in assets/fonts/OFL.txt. Used to + render the glyph templates the map-grid label reader matches against. + +* assets/icons/ + Extracted from IRON NEST: Heavy Turret Simulator and reused for the app's + own UI. These are the game author's work, not covered by the MIT license + above, and no permission to redistribute them has been granted. See + assets/icons/README.md. + +* tests/fixtures/ + Screenshots of the game, used as test data. Same situation as the icons. + +Removing or replacing any of the above does not affect the MIT license on the +code.