Qt WebEngine License
Qt WebEngine
Copyright (C) 2020 The Qt Company Ltd and other contributors.
This software is provided by the copyright holders and contributors "as is" and any express or implied warranties, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose are disclaimed. In no event shall the copyright owner or contributors be liable for any direct, indirect, incidental, special, exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, data, or profits; or business interruption) however caused and on any theory of liability, whether in contract, strict liability, or tort (including negligence or otherwise) arising in any way out of the use of this software, even if advised of the possibility of such damage.
This application uses Qt WebEngine under the LGPLv2.1 license. GNU Lesser General Public License v2.1 - GNU Project - Free Software Foundation
The Qt WebEngine used by this application is based on version 5.14.2 (qt/qtwebengine at v5.14.2), with the following patches applied on August 9, 2021:
Fix build with msvc2019 16.8.0 (I3554ceec) · Gerrit Code Review
mac: make find_sdk.py work when the sdk goes to 11
Patch content as follows
diff --git a/chromium/build/mac/find_sdk.py b/chromium/build/mac/find_sdk.py index 38c28832250..3045f81203b 100755 --- a/chromium/build/mac/find_sdk.py +++ b/chromium/build/mac/find_sdk.py @@ -88,9 +88,9 @@ def main(): raise SdkError('Install Xcode, launch it, accept the license ' + 'agreement, and run `sudo xcode-select -s /path/to/Xcode.app` ' + 'to continue.') - sdks = [re.findall('^MacOSX(10\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)] - sdks = [s[0] for s in sdks if s] # [['10.5'], ['10.6']] => ['10.5', '10.6'] - sdks = [s for s in sdks # ['10.5', '10.6'] => ['10.6'] + sdks = [re.findall('^MacOSX(11\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)] + sdks = [s[0] for s in sdks if s] # [['11.5'], ['11.6']] => ['11.5', '11.6'] + sdks = [s for s in sdks # ['11.5', '11.6'] => ['11.6'] if parse_version(s) >= parse_version(min_sdk_version)] if not sdks: raise Exception('No %s+ SDK found' % min_sdk_version)
