From 842cfee0f3eacbef5fa5f0dbd392a500ebad93ae Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 28 Oct 2025 14:38:25 +0000 Subject: Change Odin's LICENSE to zlib from BSD 3-clause This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form. --- core/text/i18n/gettext.odin | 2 +- core/text/i18n/i18n.odin | 2 +- core/text/i18n/qt_linguist.odin | 2 +- core/text/regex/common/common.odin | 2 +- core/text/regex/common/debugging.odin | 2 +- core/text/regex/compiler/compiler.odin | 2 +- core/text/regex/compiler/debugging.odin | 2 +- core/text/regex/optimizer/optimizer.odin | 2 +- core/text/regex/parser/debugging.odin | 2 +- core/text/regex/parser/parser.odin | 2 +- core/text/regex/regex.odin | 2 +- core/text/regex/tokenizer/tokenizer.odin | 2 +- core/text/regex/virtual_machine/util.odin | 2 +- core/text/regex/virtual_machine/virtual_machine.odin | 2 +- core/text/table/table.odin | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) (limited to 'core/text') diff --git a/core/text/i18n/gettext.odin b/core/text/i18n/gettext.odin index 3ac9109ef..a29fdc003 100644 --- a/core/text/i18n/gettext.odin +++ b/core/text/i18n/gettext.odin @@ -3,7 +3,7 @@ package i18n A parser for GNU GetText .MO files. Copyright 2021-2022 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. A from-scratch implementation based after the specification found here: https://www.gnu.org/software/gettext/manual/html_node/MO-Files.html diff --git a/core/text/i18n/i18n.odin b/core/text/i18n/i18n.odin index 0190ef0f7..b978bffc4 100644 --- a/core/text/i18n/i18n.odin +++ b/core/text/i18n/i18n.odin @@ -3,7 +3,7 @@ package i18n Internationalization helpers. Copyright 2021-2022 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Jeroen van Rijn: Initial implementation. diff --git a/core/text/i18n/qt_linguist.odin b/core/text/i18n/qt_linguist.odin index bdd3f5fd7..2fc5efe7b 100644 --- a/core/text/i18n/qt_linguist.odin +++ b/core/text/i18n/qt_linguist.odin @@ -3,7 +3,7 @@ package i18n A parser for Qt Linguist TS files. Copyright 2022 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. A from-scratch implementation based after the specification found here: https://doc.qt.io/qt-5/linguist-ts-file-format.html diff --git a/core/text/regex/common/common.odin b/core/text/regex/common/common.odin index 0abd48e4b..24b44833f 100644 --- a/core/text/regex/common/common.odin +++ b/core/text/regex/common/common.odin @@ -3,7 +3,7 @@ package regex_common /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/common/debugging.odin b/core/text/regex/common/debugging.odin index 0e4161a92..1a241e136 100644 --- a/core/text/regex/common/debugging.odin +++ b/core/text/regex/common/debugging.odin @@ -2,7 +2,7 @@ package regex_common /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/compiler/compiler.odin b/core/text/regex/compiler/compiler.odin index 2f0f183e9..dbfe3fe1c 100644 --- a/core/text/regex/compiler/compiler.odin +++ b/core/text/regex/compiler/compiler.odin @@ -2,7 +2,7 @@ package regex_compiler /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/compiler/debugging.odin b/core/text/regex/compiler/debugging.odin index 142cb8839..864049451 100644 --- a/core/text/regex/compiler/debugging.odin +++ b/core/text/regex/compiler/debugging.odin @@ -2,7 +2,7 @@ package regex_compiler /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/optimizer/optimizer.odin b/core/text/regex/optimizer/optimizer.odin index e23cc1bc5..93d7e6eef 100644 --- a/core/text/regex/optimizer/optimizer.odin +++ b/core/text/regex/optimizer/optimizer.odin @@ -2,7 +2,7 @@ package regex_optimizer /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/parser/debugging.odin b/core/text/regex/parser/debugging.odin index e060f58c2..f910db796 100644 --- a/core/text/regex/parser/debugging.odin +++ b/core/text/regex/parser/debugging.odin @@ -2,7 +2,7 @@ package regex_parser /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/parser/parser.odin b/core/text/regex/parser/parser.odin index 038d4cb85..38561a077 100644 --- a/core/text/regex/parser/parser.odin +++ b/core/text/regex/parser/parser.odin @@ -2,7 +2,7 @@ package regex_parser /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/regex.odin b/core/text/regex/regex.odin index bff82c407..c22371f3f 100644 --- a/core/text/regex/regex.odin +++ b/core/text/regex/regex.odin @@ -2,7 +2,7 @@ package regex /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/tokenizer/tokenizer.odin b/core/text/regex/tokenizer/tokenizer.odin index 556423a07..6ce34324e 100644 --- a/core/text/regex/tokenizer/tokenizer.odin +++ b/core/text/regex/tokenizer/tokenizer.odin @@ -3,7 +3,7 @@ package regex_tokenizer /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/virtual_machine/util.odin b/core/text/regex/virtual_machine/util.odin index 79c781e4a..3809ca98a 100644 --- a/core/text/regex/virtual_machine/util.odin +++ b/core/text/regex/virtual_machine/util.odin @@ -2,7 +2,7 @@ package regex_vm /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/regex/virtual_machine/virtual_machine.odin b/core/text/regex/virtual_machine/virtual_machine.odin index c292b0e99..169d8132d 100644 --- a/core/text/regex/virtual_machine/virtual_machine.odin +++ b/core/text/regex/virtual_machine/virtual_machine.odin @@ -2,7 +2,7 @@ package regex_vm /* (c) Copyright 2024 Feoramund . - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: Feoramund: Initial implementation. diff --git a/core/text/table/table.odin b/core/text/table/table.odin index 66a7d442b..204263e54 100644 --- a/core/text/table/table.odin +++ b/core/text/table/table.odin @@ -1,6 +1,6 @@ /* Copyright 2023 oskarnp - Made available under Odin's BSD-3 license. + Made available under Odin's license. List of contributors: oskarnp: Initial implementation. -- cgit v1.2.3