ac-file-extensions 2.0.11 → 2.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,14 +1,45 @@
1
1
 
2
- ## [2.0.11](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.10..v2.0.11) (2025-08-01 14:47:56)
2
+ ## [2.0.14](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.13..v2.0.14) (2025-10-17 07:07:24)
3
+
4
+
5
+ ### Bug Fix
6
+
7
+ * **App:** add step/dxf file extensions | VD | [a9dd73eb0fc08988e5be61b8c4c3aefd58b202a9](https://github.com/admiralcloud/ac-file-extensions/commit/a9dd73eb0fc08988e5be61b8c4c3aefd58b202a9)
8
+ add step/dxf file extensions
9
+ Related issues: [browse/master#master](https://admiralcloud.atlassian.net/browse/master)
10
+
11
+ ## [2.0.13](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.12..v2.0.13) (2025-09-19 05:12:00)
3
12
 
4
13
 
5
14
  ### Bug Fix
6
15
 
16
+ * **App:** Fix after merge conflict | MP | [c33b2925b0f0851f528439a80083761781cb9d21](https://github.com/admiralcloud/ac-file-extensions/commit/c33b2925b0f0851f528439a80083761781cb9d21)
17
+ Fix after merge conflict
18
+ Related issues: [browse/master#master](https://admiralcloud.atlassian.net/browse/master)
7
19
  * **App:** update mimetype of ai to Adobe recommended application/illustrator | VD | [f3896a0dfb237346961d27c5e6e4ad65c1eabd08](https://github.com/admiralcloud/ac-file-extensions/commit/f3896a0dfb237346961d27c5e6e4ad65c1eabd08)
8
20
  update mimetype of ai to Adobe recommended application/illustrator
9
21
  ### Chores
10
22
 
11
- * **release:** v2.0.10 [ci skip] | [b3956a8c48fb926fc4c4ef5e2d31dbdaa02bcf46](https://github.com/admiralcloud/ac-file-extensions/commit/b3956a8c48fb926fc4c4ef5e2d31dbdaa02bcf46)
23
+ * **release:** v2.0.11 [ci skip] | [ccc2f377d5136ae8ffe703bcc72037fbe1da18bb](https://github.com/admiralcloud/ac-file-extensions/commit/ccc2f377d5136ae8ffe703bcc72037fbe1da18bb)
24
+
25
+
26
+ ## [2.0.12](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.11..v2.0.12) (2025-09-19 05:06:32)
27
+
28
+
29
+ ### Bug Fix
30
+
31
+ * **App:** Package updates | MP | [6c8b2c0e94256e8df17b2b9160b6acbe146a8286](https://github.com/admiralcloud/ac-file-extensions/commit/6c8b2c0e94256e8df17b2b9160b6acbe146a8286)
32
+ Package updates
33
+ Related issues: [browse/master#master](https://admiralcloud.atlassian.net/browse/master)
34
+
35
+ ## [2.0.11](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.10..v2.0.11) (2025-08-01 14:47:56)
36
+
37
+
38
+ ### Bug Fix
39
+
40
+ * **App:** update mimetype of ai to Adobe recommended application/illustrator | VD | [f3896a0dfb237346961d27c5e6e4ad65c1eabd08](https://github.com/admiralcloud/ac-file-extensions/commit/f3896a0dfb237346961d27c5e6e4ad65c1eabd08)
41
+ update mimetype of ai to Adobe recommended application/illustrator
42
+
12
43
 
13
44
  <a name="2.0.10"></a>
14
45
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ac-file-extensions",
3
3
  "repository": "https://github.com/AdmiralCloud/ac-file-extensions",
4
- "version": "2.0.11",
4
+ "version": "2.0.14",
5
5
  "description": "Creates a list of file extensions and their \"real\" names",
6
6
  "main": "index.js",
7
7
  "scripts": {
@@ -14,10 +14,11 @@
14
14
  ],
15
15
  "license": "MIT",
16
16
  "dependencies": {
17
- "ac-semantic-release": "^0.4.6",
17
+ "ac-semantic-release": "^0.4.8",
18
18
  "lodash": "^4.17.21"
19
19
  },
20
20
  "devDependencies": {
21
- "eslint": "^9.32.0"
22
- }
21
+ "eslint": "^9.37.0"
22
+ },
23
+ "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
23
24
  }
package/sources/d.json CHANGED
@@ -68,5 +68,10 @@
68
68
  "ext": "dwg",
69
69
  "name": "Autodesk DWG Drawing",
70
70
  "mimetype": "image/vnd.dwg"
71
+ },
72
+ {
73
+ "ext": "dxf",
74
+ "name": "AutoCAD DXF file",
75
+ "mimetype": "application/dxf"
71
76
  }
72
77
  ]
package/sources/s.json CHANGED
@@ -143,5 +143,10 @@
143
143
  "ext": "srt",
144
144
  "name": "SubRipper Subtitle Information",
145
145
  "mimetype": "text/plain"
146
- }
146
+ },
147
+ {
148
+ "ext": "step",
149
+ "name": "3D model data",
150
+ "mimetype": "model/step"
151
+ }
147
152
  ]