From: Tim Düsterhus Date: Wed, 2 Aug 2023 13:03:46 +0000 (+0200) Subject: Merge branch '5.5' X-Git-Tag: 6.0.0_Alpha_8~23 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=33c5573162b9d6a970a13c3f8833bd1584bc68c7;p=GitHub%2FWoltLab%2FWCF.git Merge branch '5.5' --- 33c5573162b9d6a970a13c3f8833bd1584bc68c7 diff --cc ts/WoltLabSuite/Core/Image/ExifUtil.ts index 2ef1761973,def032be9c..6d45a2ac19 --- a/ts/WoltLabSuite/Core/Image/ExifUtil.ts +++ b/ts/WoltLabSuite/Core/Image/ExifUtil.ts @@@ -4,29 -4,29 +4,28 @@@ * @author Tim Duesterhus, Maximilian Mader * @copyright 2001-2020 WoltLab GmbH * @license GNU Lesser General Public License - * @module WoltLabSuite/Core/Image/ExifUtil * @woltlabExcludeBundle tiny */ - /* eslint-disable @typescript-eslint/no-unsafe-enum-comparison */ - const enum Tag { - SOI = 0xd8, // Start of image - APP0 = 0xe0, // JFIF tag - APP1 = 0xe1, // EXIF / XMP - APP2 = 0xe2, // General purpose tag - APP3 = 0xe3, // General purpose tag - APP4 = 0xe4, // General purpose tag - APP5 = 0xe5, // General purpose tag - APP6 = 0xe6, // General purpose tag - APP7 = 0xe7, // General purpose tag - APP8 = 0xe8, // General purpose tag - APP9 = 0xe9, // General purpose tag - APP10 = 0xea, // General purpose tag - APP11 = 0xeb, // General purpose tag - APP12 = 0xec, // General purpose tag - APP13 = 0xed, // General purpose tag - APP14 = 0xee, // Often used to store copyright information - COM = 0xfe, // Comments - } + const Tag = { + SOI: 0xd8, // Start of image + APP0: 0xe0, // JFIF tag + APP1: 0xe1, // EXIF / XMP + APP2: 0xe2, // General purpose tag + APP3: 0xe3, // General purpose tag + APP4: 0xe4, // General purpose tag + APP5: 0xe5, // General purpose tag + APP6: 0xe6, // General purpose tag + APP7: 0xe7, // General purpose tag + APP8: 0xe8, // General purpose tag + APP9: 0xe9, // General purpose tag + APP10: 0xea, // General purpose tag + APP11: 0xeb, // General purpose tag + APP12: 0xec, // General purpose tag + APP13: 0xed, // General purpose tag + APP14: 0xee, // Often used to store copyright information + COM: 0xfe, // Comments + }; // Known sequence signatures const _signatureEXIF = "Exif"; diff --cc wcfsetup/install/files/js/WoltLabSuite/Core/Image/ExifUtil.js index f609fe55a5,dd4e3193d6..a0578a0771 --- a/wcfsetup/install/files/js/WoltLabSuite/Core/Image/ExifUtil.js +++ b/wcfsetup/install/files/js/WoltLabSuite/Core/Image/ExifUtil.js @@@ -4,9 -4,9 +4,8 @@@ * @author Tim Duesterhus, Maximilian Mader * @copyright 2001-2020 WoltLab GmbH * @license GNU Lesser General Public License - * @module WoltLabSuite/Core/Image/ExifUtil * @woltlabExcludeBundle tiny */ - /* eslint-disable @typescript-eslint/no-unsafe-enum-comparison */ define(["require", "exports"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true });