From 722557693fd7dec3e5cab953e796e4d15d2fa2af Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Thu, 23 May 2024 10:22:42 +0100 Subject: [PATCH] Add CHOC and QuickJS licensing information --- LICENSE.md | 1 + modules/juce_core/javascript/choc/LICENSE.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 modules/juce_core/javascript/choc/LICENSE.md diff --git a/LICENSE.md b/LICENSE.md index ba11d05969..a6426dc720 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -42,6 +42,7 @@ The JUCE modules contain the following dependencies: - [GLEW](modules/juce_opengl/opengl/juce_gl.h) ([BSD](modules/juce_opengl/opengl/juce_gl.h)), including [Mesa](modules/juce_opengl/opengl/juce_gl.h) ([MIT](modules/juce_opengl/opengl/juce_gl.h)) and [Khronos](modules/juce_opengl/opengl/juce_gl.h) ([MIT](modules/juce_opengl/opengl/juce_gl.h)) - [Ogg Vorbis](modules/juce_audio_formats/codecs/oggvorbis/) ([BSD](modules/juce_audio_formats/codecs/oggvorbis/Ogg%20Vorbis%20Licence.txt)) - [jpeglib](modules/juce_graphics/image_formats/jpglib/) ([Independent JPEG Group License](modules/juce_graphics/image_formats/jpglib/README)) +- [CHOC](modules/juce_core/javascript/choc/) ([ISC](modules/juce_core/javascript/choc/LICENSE.md)), including [QuickJS](modules/juce_core/javascript/choc/javascript/choc_javascript_QuickJS.h) ([MIT](modules/juce_core/javascript/choc/javascript/choc_javascript_QuickJS.h)) - [LV2](modules/juce_audio_processors/format_types/LV2_SDK/) ([ISC](modules/juce_audio_processors/format_types/LV2_SDK/lv2/COPYING)) - [pslextensions](modules/juce_audio_processors/format_types/pslextensions/ipslcontextinfo.h) ([Public domain](modules/juce_audio_processors/format_types/pslextensions/ipslcontextinfo.h)) - [AAX](modules/juce_audio_plugin_client/AAX/SDK/) ([Proprietary Avid AAX License/GPLv3](modules/juce_audio_plugin_client/AAX/SDK/LICENSE.txt)) diff --git a/modules/juce_core/javascript/choc/LICENSE.md b/modules/juce_core/javascript/choc/LICENSE.md new file mode 100644 index 0000000000..243935b134 --- /dev/null +++ b/modules/juce_core/javascript/choc/LICENSE.md @@ -0,0 +1,15 @@ +## CHOC: licensing + +I'd like anyone to feel able to use this library code without worrying about the legal implications, so it's released under the permissive ISC license: + +---- + +**Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.** + +**THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.** + +https://en.wikipedia.org/wiki/ISC_license + +---- + +Note that if you use the `choc::ui::WebView` class on Windows, it embeds some Microsoft redistributable code which has its own (permissive) license that you should be aware of. See inside the file `choc_WebView.h` for more details.