Merge branch '5.5'
authorTim Düsterhus <duesterhus@woltlab.com>
Wed, 2 Aug 2023 13:03:46 +0000 (15:03 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Wed, 2 Aug 2023 13:03:46 +0000 (15:03 +0200)
1  2 
ts/WoltLabSuite/Core/Image/ExifUtil.ts
wcfsetup/install/files/js/WoltLabSuite/Core/Image/ExifUtil.js

index 2ef176197368f0e1bcf27729079b477f9836282d,def032be9c2c2a8f49ac22e1b895cf15f110b32e..6d45a2ac19a6034db12cd3f7427c354f6d3267e1
@@@ -4,29 -4,29 +4,28 @@@
   * @author    Tim Duesterhus, Maximilian Mader
   * @copyright 2001-2020 WoltLab GmbH
   * @license   GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
 - * @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";
index f609fe55a59179468c5c767db4e6eb951f9513bc,dd4e3193d6ebfbe58ea9eecb82af1b7032c34795..a0578a077192e9947a3dfc82d1700a70e633c110
@@@ -4,9 -4,9 +4,8 @@@
   * @author    Tim Duesterhus, Maximilian Mader
   * @copyright 2001-2020 WoltLab GmbH
   * @license   GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
 - * @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 });