ac-file-extensions 2.0.8 → 2.0.9

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,3 +1,13 @@
1
+ <a name="2.0.9"></a>
2
+
3
+ ## [2.0.9](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.8..v2.0.9) (2024-06-03 15:29:36)
4
+
5
+
6
+ ### Bug Fix
7
+
8
+ * **App:** Add DWG file extension | VD | [38aac39cd5ea0653bc49f5c3079e5b118032de69](https://github.com/admiralcloud/ac-file-extensions/commit/38aac39cd5ea0653bc49f5c3079e5b118032de69)
9
+ Add DWG file extension
10
+ Related issues: [browse/AC-2653#AC-2653](https://admiralcloud.atlassian.net/browse/AC-2653)
1
11
  <a name="2.0.8"></a>
2
12
 
3
13
  ## [2.0.8](https://github.com/admiralcloud/ac-file-extensions/compare/v2.0.7..v2.0.8) (2023-12-20 12:51:03)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ac-file-extensions",
3
3
  "repository": "admiralcloud/ac-file-extensions",
4
- "version": "2.0.8",
4
+ "version": "2.0.9",
5
5
  "description": "Creates a list of file extensions and their \"real\" names",
6
6
  "main": "index.js",
7
7
  "scripts": {
package/sources/d.json CHANGED
@@ -63,5 +63,10 @@
63
63
  "ext": "dtd",
64
64
  "name": "Document Type Definition",
65
65
  "mimetype": "application/xml-dtd"
66
- }
66
+ },
67
+ {
68
+ "ext": "dwg",
69
+ "name": "Autodesk DWG Drawing",
70
+ "mimetype": "image/vnd.dwg"
71
+ }
67
72
  ]