mime-types-data 3.2016.0521 → 3.2022.0105
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Code-of-Conduct.md +22 -22
- data/Contributing.md +156 -72
- data/History.md +461 -310
- data/Licence.md +9 -10
- data/Manifest.txt +16 -0
- data/README.md +38 -26
- data/Rakefile +114 -39
- data/data/content_type_mime.db +878 -0
- data/data/ext_mime.db +1198 -0
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +432 -13
- data/data/mime.docs.column +419 -0
- data/data/mime.encoding.column +419 -0
- data/data/mime.flags.column +2383 -1964
- data/data/mime.friendly.column +419 -0
- data/data/mime.pext.column +419 -0
- data/data/mime.use_instead.column +420 -1
- data/data/mime.xrefs.column +567 -148
- data/lib/mime/types/data.rb +2 -2
- data/lib/mime-types-data.rb +1 -1
- data/types/application.yaml +17299 -0
- data/types/audio.yaml +1716 -0
- data/types/chemical.yaml +71 -0
- data/types/conference.yaml +9 -0
- data/types/drawing.yaml +15 -0
- data/types/font.yaml +65 -0
- data/types/image.yaml +1252 -0
- data/types/message.yaml +205 -0
- data/types/model.yaml +390 -0
- data/types/multipart.yaml +179 -0
- data/types/provisional-standard-types.yaml +145 -0
- data/types/text.yaml +1166 -0
- data/types/video.yaml +1121 -0
- data/types/world.yaml +8 -0
- metadata +86 -25
data/History.md
CHANGED
@@ -1,351 +1,502 @@
|
|
1
1
|
# MIME Types Changes by Version
|
2
2
|
|
3
|
+
<!-- automatic-release -->
|
4
|
+
|
5
|
+
## 3.2022.0105 / 2022-01-05
|
6
|
+
|
7
|
+
- Updated the Apache and IANA media registry entries as of release date.
|
8
|
+
|
9
|
+
- Fixed an incorrect definition of `image/bmp`, which had been marked obsolete
|
10
|
+
and later registered. Fixed [#48], found by William T. Nelson.
|
11
|
+
|
12
|
+
## 3.2021.1115 / 2021-11-15
|
13
|
+
|
14
|
+
- Updated the Apache and IANA media registry entries as of release date.
|
15
|
+
|
16
|
+
- Added conversion utilities that support the `mini_mime` data format. These
|
17
|
+
have been ported from the [mini_mime] repository. [#47]
|
18
|
+
|
19
|
+
- Added IANA provisional media registries. Added some notes to Contributing.md
|
20
|
+
about the transient nature of the provisional registration data. This was
|
21
|
+
triggered in part by a pull request by Jon Sneyers. Thanks! [#45], [#43]
|
22
|
+
|
23
|
+
## 3.2021.0901 / 2021-09-01
|
24
|
+
|
25
|
+
- Updated the Apache and IANA media registry entries as of release date.
|
26
|
+
|
27
|
+
- Added file extension for WebVTT text format. [#46]
|
28
|
+
|
29
|
+
## 3.2021.0704 / 2021-07-04
|
30
|
+
|
31
|
+
- Updated the Apache and IANA media registry entries as of release date.
|
32
|
+
|
33
|
+
## 3.2021.0225 / 2021-02-25
|
34
|
+
|
35
|
+
- Updated the Apache and IANA media registry entries as of release date.
|
36
|
+
|
37
|
+
- Added file extension for AVIF video format. [#40]
|
38
|
+
|
39
|
+
## 3.2021.0212 / 2021-02-12
|
40
|
+
|
41
|
+
- Updated the IANA media registry entries as of release date.
|
42
|
+
|
43
|
+
- Added a new rake task (`release:automatic`) that downloads and converts the
|
44
|
+
data from Apache and IANA; if there are changes detected, it updates the
|
45
|
+
release version, changelog, manifest, and gemspec and commits the changes
|
46
|
+
to git.
|
47
|
+
|
48
|
+
## 3.2020.1104 / 2020-11-04
|
49
|
+
|
50
|
+
- Updated the IANA media registry entries as of release date.
|
51
|
+
|
52
|
+
- Added `application/x-zip-compressed`. [#36]
|
53
|
+
|
54
|
+
- Updated the contributing guide to include information about the release
|
55
|
+
process as described in [#18]
|
56
|
+
|
57
|
+
- Corrected a misspelling of Yoran Brondsema’s name. Sorry, Yoran. [#35]
|
58
|
+
|
59
|
+
## 3.2020.0512 / 2020-05-12
|
60
|
+
|
61
|
+
- Updated the IANA media registry entries as of release date.
|
62
|
+
|
63
|
+
- Added file extensions for HEIC image types. [#34]
|
64
|
+
|
65
|
+
## 3.2020.0425 / 2020-04-25
|
66
|
+
|
67
|
+
- Updated the IANA media registry entries as of release date.
|
68
|
+
|
69
|
+
- Added several RAW image types based on data from GNOME RAW Thumbnailer.
|
70
|
+
[#33] fixing [#32]
|
71
|
+
|
72
|
+
- Added `audio/wav`. [#31]
|
73
|
+
|
74
|
+
- Added a type for Smarttech notebook files. [#30]
|
75
|
+
|
76
|
+
- Added an alias for audio/m4a files. [#29]
|
77
|
+
|
78
|
+
- Added application/x-ms-dos-executable. [#28]
|
79
|
+
|
80
|
+
## 3.2019.1009 / 2019-10-09
|
81
|
+
|
82
|
+
- Updated the IANA media registry entries as of release date.
|
83
|
+
|
84
|
+
- Reordered the `.ai` extension so that it is not the preferred extension for
|
85
|
+
`application/pdf` [#24]
|
86
|
+
|
87
|
+
## 3.2019.0904 / 2019-09-04
|
88
|
+
|
89
|
+
- Updated the IANA media registry entries as of release date.
|
90
|
+
|
91
|
+
- Moved the `.ai` extension from `application/postscript` to `application/pdf`.
|
92
|
+
[#23] fixing [#22]
|
93
|
+
|
94
|
+
## 3.2019.0331 / 2019-03-31
|
95
|
+
|
96
|
+
- Updated the IANA media registry entries as of release date.
|
97
|
+
|
98
|
+
- Added support for `application/wasm` with extension `.wasm`. [#21]
|
99
|
+
|
100
|
+
- Fixed `application/ecmascript` extensions. [#20]
|
101
|
+
|
102
|
+
## 3.2018.0812 / 2018-08-12
|
103
|
+
|
104
|
+
- Added `.xsd` extension to `text/xml`. [#10]
|
105
|
+
|
106
|
+
- Added `.js` and `.mjs` extensions to `text/ecmascript` and
|
107
|
+
`text/javascript`. [#11]
|
108
|
+
|
109
|
+
- Added `.ipa` extension to `application/octet-stream`. [#12]
|
110
|
+
|
111
|
+
- Moved extensions `.markdown` and `.md` and added `.mkd` extension to
|
112
|
+
`text/markdown`. [#13]
|
113
|
+
|
114
|
+
- Because of a bug found with mime-types 3 before 3.2.1, this version
|
115
|
+
requires mime-types 3.1 or later to manage data.
|
116
|
+
|
117
|
+
- Updated the IANA media registry entries as of release date. The biggest
|
118
|
+
major change here is the addition of the `font/` top-level media type.
|
119
|
+
|
120
|
+
- MIME type changes not introduced by pull requests will no longer be
|
121
|
+
individually tracked.
|
122
|
+
|
123
|
+
- Clarified that the YAML editable format is not shipped with the Ruby gem
|
124
|
+
for size considerations.
|
125
|
+
|
3
126
|
## 3.2016.0521 / 2016-05-21
|
4
127
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
128
|
+
- Updated the known extension list for application/octet-stream and
|
129
|
+
application/pgp-encrypted to include gpg as an extension. Fixes
|
130
|
+
[#3](https://github.com/mime-types/mime-types-data/pull/3) by Tao Guo
|
131
|
+
(@taoza).
|
132
|
+
- Updated the IANA media registry entries as of release date:
|
133
|
+
|
134
|
+
- Updated metadata for application/EmergencyCallData.Comment+xml,
|
135
|
+
application/EmergencyCallData.DeviceInfo+xml,
|
136
|
+
application/EmergencyCallData.ProviderInfo+xml,
|
137
|
+
application/EmergencyCallData.ServiceInfo+xml,
|
138
|
+
application/EmergencyCallData.SubscriberInfo+xml,
|
139
|
+
application/ogg, application/problem+json, application/problem+xml,
|
140
|
+
audio/ogg, text/markdown, video/H265, video/ogg.
|
141
|
+
- Added application/efi, application/vnd.3gpp.sms+xml,
|
142
|
+
application/vnd.3lightssoftware.imagescal,
|
143
|
+
application/vnd.coreos.ignition+json, application/vnd.oma.lwm2m+json,
|
144
|
+
application/vnd.onepager, application/vnd.quarantainenet,
|
145
|
+
application/vnd.vel+json, image/emf, image/wmf, text/prs.prop.logic.
|
146
|
+
- image/bmp has a draft RFC which would make it official; it has been
|
147
|
+
finally been registered. As such, this version _reverses_ the
|
148
|
+
use-instead relationship of image/bmp and image/x-bmp.
|
149
|
+
|
150
|
+
- This version requires mime-types 3.1 or later to manage data because of an
|
151
|
+
issue with JSON data encoding for the `xrefs` field.
|
29
152
|
|
30
153
|
## 3.2016.0221 / 2016-02-21
|
31
154
|
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
155
|
+
- Updated the known extensions list for audio/mp4.
|
156
|
+
- Updated the IANA media registry entries as of release date:
|
157
|
+
|
158
|
+
- Updated metadata for 3GPP-defined types (there are many),
|
159
|
+
application/cdni, and application/rfc+xml.
|
160
|
+
- Added application/EmergencyCallData.Comment+xml,
|
161
|
+
application/EmergencyCallData.DeviceInfo+xml,
|
162
|
+
application/EmergencyCallData.ProviderInfo+xml,
|
163
|
+
application/EmergencyCallData.ServiceInfo+xml,
|
164
|
+
application/ppsp-tracker+json, application/problem+json,
|
165
|
+
application/problem+xml, application/vnd.filmit.zfc,
|
166
|
+
application/vnd.hdt, application/vnd.mapbox-vector-tile,
|
167
|
+
application/vnd.ms-PrintDeviceCapabilities+xml,
|
168
|
+
application/vnd.ms-PrintSchemaTicket+xml,
|
169
|
+
application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
|
170
|
+
model/vnd.rosette.annotated-data-model, and video/H265.
|
171
|
+
|
172
|
+
- Updated to [Contributor Covenant 1.4][code of conduct].
|
173
|
+
- Shift the support code in this repository to be developed with Ruby 2.3.
|
174
|
+
This involves:
|
175
|
+
|
176
|
+
- Adding `frozen_string_literal: true` to all Ruby files.
|
177
|
+
- Applied some recommended readability and performance suggestions from
|
178
|
+
Rubocop. Ignored some style recommendations, too.
|
179
|
+
- Replaced some cases of `foo.bar rescue nil` with `foo&.bar`.
|
57
180
|
|
58
181
|
## 3.2015.1120 / 2015-11-20
|
59
182
|
|
60
|
-
|
61
|
-
|
62
|
-
|
183
|
+
- Extracted from [ruby-mime-types][rmt].
|
184
|
+
- Added a [Code of Conduct].
|
185
|
+
- The versioning has changed to be semantic on format plus date in two parts.
|
63
186
|
|
64
|
-
|
65
|
-
|
66
|
-
|
187
|
+
- All registry formats have been updated to remove deprecated data.
|
188
|
+
- The columnar format has been updated to store three boolean flags in a
|
189
|
+
single flags file.
|
67
190
|
|
68
|
-
|
69
|
-
|
191
|
+
- Updated the conversion and management utilities to work with
|
192
|
+
ruby-mime-types 3.x.
|
70
193
|
|
71
|
-
|
194
|
+
- Updated the IANA media registry entries as of release date:
|
72
195
|
|
73
|
-
|
196
|
+
- Updated metadata for application/scim+json, audio/G711-0, text/markdown.
|
74
197
|
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
198
|
+
- Added application/cdni, application/csvm+json, application/rfc+xml,
|
199
|
+
application/vnd.3gpp.access-transfer-events+xml,
|
200
|
+
application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
|
201
|
+
application/vnd.ms-windows.devicepairing,
|
202
|
+
application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
|
203
|
+
application/vnd.pagerduty+json, video/VP8.
|
81
204
|
|
82
205
|
## 2.6.2 / 2015-09-13
|
83
206
|
|
84
|
-
|
207
|
+
- Updated the IANA media registry entries as of release date:
|
85
208
|
|
86
|
-
|
87
|
-
|
88
|
-
|
209
|
+
- Updated metadata for application/cals-1840, application/index.obj,
|
210
|
+
application/ocsp-response, application/vnd.dtg.local.html,
|
211
|
+
application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
|
89
212
|
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
213
|
+
- Added application/pkcs12, application/scim+json, multipart/form-data.
|
214
|
+
application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
|
215
|
+
application/vnd.3gpp.mid-call+xml,
|
216
|
+
application/vnd.3gpp-state-and-event-info+xml,
|
217
|
+
application.3gpp.ussd+xml, application/vnd.anki,
|
218
|
+
application/vnd.biopax.rdf+xml, application/vnd.drive+json,
|
219
|
+
application/vnd.firemonkeys.cloudcell,
|
220
|
+
application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
|
221
|
+
application/vnd.openblox.game-binary, application/vnd.uri-map,
|
222
|
+
audio/G711-0, image/vnd.mozilla.apng.
|
100
223
|
|
101
224
|
## 2.6 / 2015-05-25
|
102
225
|
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
226
|
+
- Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
|
227
|
+
to application/font-woff,
|
228
|
+
[ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
|
229
|
+
- Updated the IANA media registry entries as of release date:
|
230
|
+
- Updated metadata for application/jose, application/jose+json,
|
231
|
+
application/jwk+json, application/jwk-set+json, application/jwt to
|
232
|
+
reflect the adoption of RFC7519.
|
233
|
+
- Added application/vnd.balsamiq.bmpr.
|
111
234
|
|
112
235
|
## 2.5 / 2015-04-25
|
113
236
|
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
237
|
+
- Updated the IANA media registry entries as of release date:
|
238
|
+
- Added MIME types: application/A2L, application/AML, application/ATFX,
|
239
|
+
application/ATXML, application/CDFX+XML, application/CEA,
|
240
|
+
application/DII, application/DIT, application/jose,
|
241
|
+
application/jose+json, application/json-seq, application/jwk+json,
|
242
|
+
application/jwk-set+json, application/jwt, application/LXF,
|
243
|
+
application/MF4, application/rdap+json,
|
244
|
+
application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
|
245
|
+
application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
|
246
|
+
application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
|
247
|
+
application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
|
248
|
+
application/vnd.gov.sk.e-form+zip,
|
249
|
+
application/vnd.gov.sk.xmldatacontainer+xml,
|
250
|
+
application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
|
251
|
+
application/vnd.ims.imsccv1p3, application/vnd.micro+json,
|
252
|
+
application/vnd.microsoft.portable-executable,
|
253
|
+
application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
|
254
|
+
application/vnd.tmd.mediaflex.api+xml, audio/opus,
|
255
|
+
image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as
|
256
|
+
TEMPORARY).
|
257
|
+
- Updated metadata for application/coap-group+json (RFC7390),
|
258
|
+
application/epub+zip (now registered), application/merge-patch+json
|
259
|
+
(RFC7396), application/smil, application/vnd.arastra.swi,
|
260
|
+
application/vnd.geocube+xml, application/vnd.gmx,
|
261
|
+
application/xhtml+xml, text/directory.
|
262
|
+
- Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
|
263
|
+
text/tab-separated-values,
|
264
|
+
[ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
|
265
|
+
- Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
|
266
|
+
image/x-ms-bmp with the extension `bmp`,
|
267
|
+
[ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
|
145
268
|
|
146
269
|
## 2.4.2 / 2014-10-15
|
147
270
|
|
148
|
-
|
149
|
-
|
150
|
-
|
271
|
+
- Added application/vnd.ms-outlook as an unregistered MIME type with the
|
272
|
+
extension `msg`. Provided by @keerthisiv in
|
273
|
+
[ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
|
151
274
|
|
152
275
|
## 2.4.1 / 2014-10-07
|
153
276
|
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
277
|
+
- Changed the sort order of many of the extensions to restore behaviour from
|
278
|
+
mime-types 1.25.1.
|
279
|
+
- Added `friendly` MIME::Type descriptions where known.
|
280
|
+
- Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
|
281
|
+
application/x-msdownload.
|
282
|
+
- Updated the IANA media registry entries as of release date.
|
283
|
+
- Several MIME types had updated metadata (application/alto-\*, RFC7285;
|
284
|
+
application/calendar+json, RFC7265; application/http, RFC7230;
|
285
|
+
application/xml, RFC7303; application/xml-dtd, RFC7303;
|
286
|
+
application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
|
287
|
+
audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
|
288
|
+
RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
|
289
|
+
- MIME::Type application/EDI-Consent was renamed to
|
290
|
+
application/EDI-consent.
|
291
|
+
- Obsoleted application/vnd.informix-visionary in favour of
|
292
|
+
application/vnd.visionary. Obsoleted
|
293
|
+
application/vnd.nokia.n-gage.symbian.install with no replacement.
|
294
|
+
- Added MIME types: application/ATF, application/coap-group+json,
|
295
|
+
application/DCD, application/merge-patch+json, application/scaip+xml,
|
296
|
+
application/vnd.apache.thrift.binary, application/vnd.artsquare,
|
297
|
+
application/vnd.doremir.scorecloud-binary-document,
|
298
|
+
application/vnd.dzr, application/vnd.maxmind.maxmind-db,
|
299
|
+
application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
|
300
|
+
image/vnd.tencent.tap.
|
178
301
|
|
179
302
|
## 2.3 / 2014-05-23
|
180
303
|
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
304
|
+
- Updated the IANA media registry entries as of release date.
|
305
|
+
- Several MIME types had additional metadata added on the most recent
|
306
|
+
import.
|
307
|
+
- MIME::Type application/pidfxml was renamed to application/pidf+xml.
|
308
|
+
- Added MIME types: application/3gpdash-qoe-report+xml,
|
309
|
+
application/alto-costmap+json, application/alto-costmapfilter+json,
|
310
|
+
application/alto-directory+json, application/alto-endpointcost+json,
|
311
|
+
application/alto-endpointcostparams+json,
|
312
|
+
application/alto-endpointprop+json,
|
313
|
+
application/alto-endpointpropparams+json, application/alto-error+json,
|
314
|
+
application/alto-networkmap+json,
|
315
|
+
application/alto-networkmapfilter+json, application/calendar+json,
|
316
|
+
application/vnd.debian.binary-package, application/vnd.geo+json,
|
317
|
+
application/vnd.ims.lis.v2.result+json,
|
318
|
+
application/vnd.ims.lti.v2.toolconsumerprofile+json,
|
319
|
+
application/vnd.ims.lti.v2.toolproxy+json,
|
320
|
+
application/vnd.ims.lti.v2.toolproxy.id+json,
|
321
|
+
application/vnd.ims.lti.v2.toolsettings+json,
|
322
|
+
application/vnd.ims.lti.v2.toolsettings.simple+json,
|
323
|
+
application/vnd.mason+json, application/vnd.miele+json,
|
324
|
+
application/vnd.ms-3mfdocument, application/vnd.panoply,
|
325
|
+
application/vnd.valve.source.material, application/vnd.yaoweme,
|
326
|
+
audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex,
|
327
|
+
model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
|
328
|
+
text/cache-manifest
|
206
329
|
|
207
330
|
## 2.2 / 2014-03-14
|
208
|
-
* Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
|
209
|
-
Galbraith (@brandongalbraith) in
|
210
|
-
[ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
|
211
|
-
* Marked application/excel and application/x-excel as obsolete in favour of
|
212
|
-
application/vnd.ms-excel per
|
213
|
-
[ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
|
214
|
-
* Merged duplicate MIME types into the registered MIME type. The only
|
215
|
-
difference between the MIME types was capitalization; the MIME type
|
216
|
-
registry is case-preserving.
|
217
|
-
* Affected MIME types: application/vnd.3M.Post-it-Notes,
|
218
|
-
application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
|
219
|
-
application/vnd.hp-HPGL, application/vnd.hp-PCL,
|
220
|
-
application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
|
221
|
-
application/vnd.Kinar, application/vnd.MFER,
|
222
|
-
application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
|
223
|
-
application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
|
224
|
-
application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
|
225
|
-
application/vnd.Mobius.TXF,
|
226
|
-
application/vnd.ms-excel.addin.macroEnabled.12,
|
227
|
-
application/vnd.ms-excel.sheet.binary.macroEnabled.12,
|
228
|
-
application/vnd.ms-excel.sheet.macroEnabled.12,
|
229
|
-
application/vnd.ms-excel.template.macroEnabled.12,
|
230
|
-
application/vnd.ms-powerpoint.addin.macroEnabled.12,
|
231
|
-
application/vnd.ms-powerpoint.presentation.macroEnabled.12,
|
232
|
-
application/vnd.ms-powerpoint.slide.macroEnabled.12,
|
233
|
-
application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
|
234
|
-
application/vnd.ms-powerpoint.template.macroEnabled.12,
|
235
|
-
application/vnd.ms-word.document.macroEnabled.12,
|
236
|
-
application/vnd.ms-word.template.macroEnabled.12,
|
237
|
-
application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
|
238
|
-
application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
|
239
|
-
application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
|
240
|
-
video/H263, video/H264, video/JPEG, video/MJ2.
|
241
|
-
|
242
|
-
* Updated the IANA media registry entries as of release date.
|
243
|
-
* Registered type person names have been updated from surname only to
|
244
|
-
full name.
|
245
|
-
* Several types had updated RFC or draft RFC references.
|
246
|
-
* Added application/bacnet-xdd+zip, application/cms,
|
247
|
-
application/load-control+xml, application/PDX, application/ttml+xml,
|
248
|
-
application/vnd.collection.doc+json,
|
249
|
-
application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
|
250
|
-
text/parameters, text/vnd.a, video/iso.segment
|
251
331
|
|
252
|
-
|
332
|
+
- Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
|
333
|
+
Galbraith (@brandongalbraith) in
|
334
|
+
[ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
|
335
|
+
- Marked application/excel and application/x-excel as obsolete in favour of
|
336
|
+
application/vnd.ms-excel per
|
337
|
+
[ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
|
338
|
+
- Merged duplicate MIME types into the registered MIME type. The only
|
339
|
+
difference between the MIME types was capitalization; the MIME type
|
340
|
+
registry is case-preserving.
|
341
|
+
|
342
|
+
- Affected MIME types: application/vnd.3M.Post-it-Notes,
|
343
|
+
application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
|
344
|
+
application/vnd.hp-HPGL, application/vnd.hp-PCL,
|
345
|
+
application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
|
346
|
+
application/vnd.Kinar, application/vnd.MFER,
|
347
|
+
application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
|
348
|
+
application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
|
349
|
+
application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
|
350
|
+
application/vnd.Mobius.TXF,
|
351
|
+
application/vnd.ms-excel.addin.macroEnabled.12,
|
352
|
+
application/vnd.ms-excel.sheet.binary.macroEnabled.12,
|
353
|
+
application/vnd.ms-excel.sheet.macroEnabled.12,
|
354
|
+
application/vnd.ms-excel.template.macroEnabled.12,
|
355
|
+
application/vnd.ms-powerpoint.addin.macroEnabled.12,
|
356
|
+
application/vnd.ms-powerpoint.presentation.macroEnabled.12,
|
357
|
+
application/vnd.ms-powerpoint.slide.macroEnabled.12,
|
358
|
+
application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
|
359
|
+
application/vnd.ms-powerpoint.template.macroEnabled.12,
|
360
|
+
application/vnd.ms-word.document.macroEnabled.12,
|
361
|
+
application/vnd.ms-word.template.macroEnabled.12,
|
362
|
+
application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
|
363
|
+
application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
|
364
|
+
application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
|
365
|
+
video/H263, video/H264, video/JPEG, video/MJ2.
|
366
|
+
|
367
|
+
- Updated the IANA media registry entries as of release date.
|
368
|
+
- Registered type person names have been updated from surname only to
|
369
|
+
full name.
|
370
|
+
- Several types had updated RFC or draft RFC references.
|
371
|
+
- Added application/bacnet-xdd+zip, application/cms,
|
372
|
+
application/load-control+xml, application/PDX, application/ttml+xml,
|
373
|
+
application/vnd.collection.doc+json,
|
374
|
+
application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
|
375
|
+
text/parameters, text/vnd.a, video/iso.segment
|
253
376
|
|
254
|
-
|
255
|
-
of the 1,427 registered MIME types.
|
256
|
-
* Many registered MIME types have had some metadata updates due to the
|
257
|
-
change in the IANA registry format.
|
258
|
-
* MIME types having a publicly available registry application now
|
259
|
-
include a link to that file in references.
|
260
|
-
* Added `xrefs` data as discovered (see the API changes noted above).
|
261
|
-
* The Apache mime types configuration has been added to track additional
|
262
|
-
common but unregistered MIME types and known extensions for those MIME
|
263
|
-
types. This has affected many of the available MIME types.
|
264
|
-
* Added newly registered MIME types:
|
265
|
-
* application/emotionml+xml, application/ODX, application/prs.hpub+zip,
|
266
|
-
application/vcard+json, application/vnd.bekitzur-stech+json,
|
267
|
-
application/vnd.etsi.timestamp-token,
|
268
|
-
application/vnd.oma.cab-feature-handler+xml,
|
269
|
-
application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
|
270
|
-
audio/amr-wb, model/x3d+xml, model/x3d-vrml
|
271
|
-
* Added 180 unregistered MIME types from the Apache list:
|
272
|
-
* application/applixware, application/cu-seeme, application/docbook+xml,
|
273
|
-
application/gml+xml, application/gpx+xml, application/gxf,
|
274
|
-
application/java-archive, application/java-serialized-object,
|
275
|
-
application/java-vm, application/jsonml+json, application/metalink+xml,
|
276
|
-
application/omdoc+xml, application/onenote, application/pics-rules,
|
277
|
-
application/rsd+xml, application/ssdl+xml,
|
278
|
-
application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
|
279
|
-
application/vnd.anser-web-funds-transfer-initiation,
|
280
|
-
application/vnd.curl.car, application/vnd.curl.pcurl,
|
281
|
-
application/vnd.dolby.mlp, application/vnd.ds-keypoint,
|
282
|
-
application/vnd.flographit, application/vnd.handheld-entertainment+xml,
|
283
|
-
application/vnd.hp-hpgl, application/vnd.hp-pcl,
|
284
|
-
application/vnd.hp-pclxl, application/vnd.ibm.minipay,
|
285
|
-
application/vnd.kinar, application/vnd.mfer,
|
286
|
-
application/vnd.mobius.daf, application/vnd.mobius.dis,
|
287
|
-
application/vnd.mobius.mbk, application/vnd.mobius.mqy,
|
288
|
-
application/vnd.mobius.msl, application/vnd.mobius.plc,
|
289
|
-
application/vnd.mobius.txf,
|
290
|
-
application/vnd.ms-excel.addin.macroenabled.12,
|
291
|
-
application/vnd.ms-excel.sheet.binary.macroenabled.12,
|
292
|
-
application/vnd.ms-excel.sheet.macroenabled.12,
|
293
|
-
application/vnd.ms-excel.template.macroenabled.12,
|
294
|
-
application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
|
295
|
-
application/vnd.ms-powerpoint.addin.macroenabled.12,
|
296
|
-
application/vnd.ms-powerpoint.presentation.macroenabled.12,
|
297
|
-
application/vnd.ms-powerpoint.slide.macroenabled.12,
|
298
|
-
application/vnd.ms-powerpoint.slideshow.macroenabled.12,
|
299
|
-
application/vnd.ms-powerpoint.template.macroenabled.12,
|
300
|
-
application/vnd.ms-word.document.macroenabled.12,
|
301
|
-
application/vnd.ms-word.template.macroenabled.12,
|
302
|
-
application/vnd.novadigm.edm, application/vnd.novadigm.edx,
|
303
|
-
application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
|
304
|
-
application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
|
305
|
-
application/vnd.simtech-mindmapper, application/vnd.symbian.install,
|
306
|
-
application/winhlp, application/x-abiword,
|
307
|
-
application/x-ace-compressed, application/x-authorware-bin,
|
308
|
-
application/x-authorware-map, application/x-authorware-seg,
|
309
|
-
application/x-bittorrent, application/x-blorb, application/x-bzip,
|
310
|
-
application/x-cbr, application/x-cfs-compressed, application/x-chat,
|
311
|
-
application/x-conference, application/x-dgc-compressed,
|
312
|
-
application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
|
313
|
-
application/x-dtbresource+xml, application/x-envoy, application/x-eva,
|
314
|
-
application/x-font-bdf, application/x-font-ghostscript,
|
315
|
-
application/x-font-linux-psf, application/x-font-otf,
|
316
|
-
application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
|
317
|
-
application/x-font-type1, application/x-freearc,
|
318
|
-
application/x-gca-compressed, application/x-glulx,
|
319
|
-
application/x-gnumeric, application/x-gramps-xml,
|
320
|
-
application/x-install-instructions, application/x-iso9660-image,
|
321
|
-
application/x-lzh-compressed, application/x-mie,
|
322
|
-
application/x-ms-application, application/x-ms-shortcut,
|
323
|
-
application/x-ms-xbap, application/x-msbinder,
|
324
|
-
application/x-mscardfile, application/x-msclip,
|
325
|
-
application/x-msmediaview, application/x-msmetafile,
|
326
|
-
application/x-msmoney, application/x-mspublisher,
|
327
|
-
application/x-msschedule, application/x-msterminal,
|
328
|
-
application/x-mswrite, application/x-nzb, application/x-pkcs12,
|
329
|
-
application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
|
330
|
-
application/x-research-info-systems, application/x-silverlight-app,
|
331
|
-
application/x-sql, application/x-stuffitx, application/x-subrip,
|
332
|
-
application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
|
333
|
-
application/x-tgif, application/x-xfig, application/x-xliff+xml,
|
334
|
-
application/x-xz, application/x-zmachine, application/xaml+xml,
|
335
|
-
application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
|
336
|
-
audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
|
337
|
-
audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
|
338
|
-
chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
|
339
|
-
chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
|
340
|
-
image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
|
341
|
-
image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
|
342
|
-
text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
|
343
|
-
text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
|
344
|
-
text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
|
345
|
-
video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
|
346
|
-
video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
|
347
|
-
* Merged the non-standard VMS platform text/plain with the standard
|
348
|
-
text/plain.
|
377
|
+
## 2.1 / 2014-01-25
|
349
378
|
|
379
|
+
- The IANA media type registry format changed, resulting in updates to most
|
380
|
+
of the 1,427 registered MIME types.
|
381
|
+
- Many registered MIME types have had some metadata updates due to the
|
382
|
+
change in the IANA registry format.
|
383
|
+
- MIME types having a publicly available registry application now
|
384
|
+
include a link to that file in references.
|
385
|
+
- Added `xrefs` data as discovered (see the API changes noted above).
|
386
|
+
- The Apache mime types configuration has been added to track additional
|
387
|
+
common but unregistered MIME types and known extensions for those MIME
|
388
|
+
types. This has affected many of the available MIME types.
|
389
|
+
- Added newly registered MIME types:
|
390
|
+
- application/emotionml+xml, application/ODX, application/prs.hpub+zip,
|
391
|
+
application/vcard+json, application/vnd.bekitzur-stech+json,
|
392
|
+
application/vnd.etsi.timestamp-token,
|
393
|
+
application/vnd.oma.cab-feature-handler+xml,
|
394
|
+
application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
|
395
|
+
audio/amr-wb, model/x3d+xml, model/x3d-vrml
|
396
|
+
- Added 180 unregistered MIME types from the Apache list:
|
397
|
+
- application/applixware, application/cu-seeme, application/docbook+xml,
|
398
|
+
application/gml+xml, application/gpx+xml, application/gxf,
|
399
|
+
application/java-archive, application/java-serialized-object,
|
400
|
+
application/java-vm, application/jsonml+json, application/metalink+xml,
|
401
|
+
application/omdoc+xml, application/onenote, application/pics-rules,
|
402
|
+
application/rsd+xml, application/ssdl+xml,
|
403
|
+
application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
|
404
|
+
application/vnd.anser-web-funds-transfer-initiation,
|
405
|
+
application/vnd.curl.car, application/vnd.curl.pcurl,
|
406
|
+
application/vnd.dolby.mlp, application/vnd.ds-keypoint,
|
407
|
+
application/vnd.flographit, application/vnd.handheld-entertainment+xml,
|
408
|
+
application/vnd.hp-hpgl, application/vnd.hp-pcl,
|
409
|
+
application/vnd.hp-pclxl, application/vnd.ibm.minipay,
|
410
|
+
application/vnd.kinar, application/vnd.mfer,
|
411
|
+
application/vnd.mobius.daf, application/vnd.mobius.dis,
|
412
|
+
application/vnd.mobius.mbk, application/vnd.mobius.mqy,
|
413
|
+
application/vnd.mobius.msl, application/vnd.mobius.plc,
|
414
|
+
application/vnd.mobius.txf,
|
415
|
+
application/vnd.ms-excel.addin.macroenabled.12,
|
416
|
+
application/vnd.ms-excel.sheet.binary.macroenabled.12,
|
417
|
+
application/vnd.ms-excel.sheet.macroenabled.12,
|
418
|
+
application/vnd.ms-excel.template.macroenabled.12,
|
419
|
+
application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
|
420
|
+
application/vnd.ms-powerpoint.addin.macroenabled.12,
|
421
|
+
application/vnd.ms-powerpoint.presentation.macroenabled.12,
|
422
|
+
application/vnd.ms-powerpoint.slide.macroenabled.12,
|
423
|
+
application/vnd.ms-powerpoint.slideshow.macroenabled.12,
|
424
|
+
application/vnd.ms-powerpoint.template.macroenabled.12,
|
425
|
+
application/vnd.ms-word.document.macroenabled.12,
|
426
|
+
application/vnd.ms-word.template.macroenabled.12,
|
427
|
+
application/vnd.novadigm.edm, application/vnd.novadigm.edx,
|
428
|
+
application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
|
429
|
+
application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
|
430
|
+
application/vnd.simtech-mindmapper, application/vnd.symbian.install,
|
431
|
+
application/winhlp, application/x-abiword,
|
432
|
+
application/x-ace-compressed, application/x-authorware-bin,
|
433
|
+
application/x-authorware-map, application/x-authorware-seg,
|
434
|
+
application/x-bittorrent, application/x-blorb, application/x-bzip,
|
435
|
+
application/x-cbr, application/x-cfs-compressed, application/x-chat,
|
436
|
+
application/x-conference, application/x-dgc-compressed,
|
437
|
+
application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
|
438
|
+
application/x-dtbresource+xml, application/x-envoy, application/x-eva,
|
439
|
+
application/x-font-bdf, application/x-font-ghostscript,
|
440
|
+
application/x-font-linux-psf, application/x-font-otf,
|
441
|
+
application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
|
442
|
+
application/x-font-type1, application/x-freearc,
|
443
|
+
application/x-gca-compressed, application/x-glulx,
|
444
|
+
application/x-gnumeric, application/x-gramps-xml,
|
445
|
+
application/x-install-instructions, application/x-iso9660-image,
|
446
|
+
application/x-lzh-compressed, application/x-mie,
|
447
|
+
application/x-ms-application, application/x-ms-shortcut,
|
448
|
+
application/x-ms-xbap, application/x-msbinder,
|
449
|
+
application/x-mscardfile, application/x-msclip,
|
450
|
+
application/x-msmediaview, application/x-msmetafile,
|
451
|
+
application/x-msmoney, application/x-mspublisher,
|
452
|
+
application/x-msschedule, application/x-msterminal,
|
453
|
+
application/x-mswrite, application/x-nzb, application/x-pkcs12,
|
454
|
+
application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
|
455
|
+
application/x-research-info-systems, application/x-silverlight-app,
|
456
|
+
application/x-sql, application/x-stuffitx, application/x-subrip,
|
457
|
+
application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
|
458
|
+
application/x-tgif, application/x-xfig, application/x-xliff+xml,
|
459
|
+
application/x-xz, application/x-zmachine, application/xaml+xml,
|
460
|
+
application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
|
461
|
+
audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
|
462
|
+
audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
|
463
|
+
chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
|
464
|
+
chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
|
465
|
+
image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
|
466
|
+
image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
|
467
|
+
text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
|
468
|
+
text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
|
469
|
+
text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
|
470
|
+
video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
|
471
|
+
video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
|
472
|
+
- Merged the non-standard VMS platform text/plain with the standard
|
473
|
+
text/plain.
|
474
|
+
|
475
|
+
[#10]: https://github.com/mime-types/mime-types-data/pull/10
|
476
|
+
[#11]: https://github.com/mime-types/mime-types-data/pull/11
|
477
|
+
[#12]: https://github.com/mime-types/mime-types-data/pull/12
|
478
|
+
[#13]: https://github.com/mime-types/mime-types-data/pull/13
|
479
|
+
[#18]: https://github.com/mime-types/mime-types-data/issues/18
|
480
|
+
[#20]: https://github.com/mime-types/mime-types-data/pull/20
|
481
|
+
[#21]: https://github.com/mime-types/mime-types-data/pull/21
|
482
|
+
[#22]: https://github.com/mime-types/mime-types-data/issues/22
|
483
|
+
[#23]: https://github.com/mime-types/mime-types-data/pull/23
|
484
|
+
[#24]: https://github.com/mime-types/mime-types-data/pull/24
|
485
|
+
[#28]: https://github.com/mime-types/mime-types-data/pull/28
|
486
|
+
[#29]: https://github.com/mime-types/mime-types-data/pull/29
|
487
|
+
[#30]: https://github.com/mime-types/mime-types-data/pull/30
|
488
|
+
[#31]: https://github.com/mime-types/mime-types-data/pull/31
|
489
|
+
[#32]: https://github.com/mime-types/mime-types-data/issues/32
|
490
|
+
[#33]: https://github.com/mime-types/mime-types-data/pull/33
|
491
|
+
[#34]: https://github.com/mime-types/mime-types-data/pull/34
|
492
|
+
[#35]: https://github.com/mime-types/mime-types-data/pull/35
|
493
|
+
[#36]: https://github.com/mime-types/mime-types-data/pull/36
|
494
|
+
[#40]: https://github.com/mime-types/mime-types-data/pull/40
|
495
|
+
[#43]: https://github.com/mime-types/mime-types-data/pull/43
|
496
|
+
[#45]: https://github.com/mime-types/mime-types-data/pull/45
|
497
|
+
[#46]: https://github.com/mime-types/mime-types-data/pull/46
|
498
|
+
[#47]: https://github.com/mime-types/mime-types-data/pull/47
|
499
|
+
[#48]: https://github.com/mime-types/mime-types-data/issues/48
|
350
500
|
[rmt]: https://github.com/mime-types/ruby-mime-types
|
351
|
-
[
|
501
|
+
[code of conduct]: Code-of-Conduct.md
|
502
|
+
[mini_mime]: https://github.com/discourse/mini_mime/issues/41
|