mime-types-data 3.2024.0806 → 3.2024.0820
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.
- checksums.yaml +4 -4
- data/Contributing.md +10 -7
- data/History.md +10 -2
- data/data/content_type_mime.db +1 -0
- data/data/ext_mime.db +1 -0
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +3 -1
- data/data/mime.docs.column +2 -0
- data/data/mime.encoding.column +2 -0
- data/data/mime.flags.column +2 -0
- data/data/mime.friendly.column +2 -0
- data/data/mime.pext.column +2 -0
- data/data/mime.use_instead.column +2 -0
- data/data/mime.xrefs.column +5 -3
- data/lib/mime/types/data.rb +1 -1
- data/types/application.yaml +25 -1
- data/types/image.yaml +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2ed9cd13978b5b288a280c31c31517f6412d49f6c30d42767d09d7e63ab12f9
|
|
4
|
+
data.tar.gz: 792d8ec7660fdd58a27ffba329fdeb8538dfedf0eef5e3dcf2c2e28ee040c28d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd16bc1aaec94b42d498ded768bb2e4274fa9e1701fbc82fc1f0f7466554395277d9f655f617cb64c2b9eacb2c2fb8897bae927f74e3f5815ed9eb334e0fa795
|
|
7
|
+
data.tar.gz: d1bebc6d35b7d00d5053e417c036f3bcbd1967eaf01818187773589559fa7623f5252e757aa45fddf93b4c18c6fe9a1612f010e1fff80f9e3d4b48c8b28c12e8
|
data/Contributing.md
CHANGED
|
@@ -10,8 +10,8 @@ acceptance of your code contributions:
|
|
|
10
10
|
- Use a thoughtfully-named topic branch that contains your change. Rebase your
|
|
11
11
|
commits into logical chunks as necessary.
|
|
12
12
|
- Use [quality commit messages][qcm].
|
|
13
|
-
- Do not change the version number; when your patch is accepted and a release
|
|
14
|
-
|
|
13
|
+
- Do not change the version number; when your patch is accepted and a release is
|
|
14
|
+
made, the version will be updated at that point.
|
|
15
15
|
- Submit a GitHub pull request with your changes.
|
|
16
16
|
- New or changed behaviours require new or updated documentation.
|
|
17
17
|
|
|
@@ -112,8 +112,8 @@ mime-types-data, I have provided the simplest possible Gemfile pointing to the
|
|
|
112
112
|
$ bundle install
|
|
113
113
|
```
|
|
114
114
|
|
|
115
|
-
to get the development dependencies. If you aleady have `hoe` installed, you
|
|
116
|
-
|
|
115
|
+
to get the development dependencies. If you aleady have `hoe` installed, you can
|
|
116
|
+
accomplish the same thing with:
|
|
117
117
|
|
|
118
118
|
```sh
|
|
119
119
|
$ rake newb
|
|
@@ -133,8 +133,10 @@ $ rake test:coverage
|
|
|
133
133
|
Here's the most direct way to get your work merged into the project:
|
|
134
134
|
|
|
135
135
|
- Fork the project.
|
|
136
|
-
- Clone down your fork
|
|
137
|
-
|
|
136
|
+
- Clone down your fork
|
|
137
|
+
(`git clone git://github.com/<username>/mime-types-data.git`).
|
|
138
|
+
- Create a topic branch to contain your change
|
|
139
|
+
(`git checkout -b my\_awesome\_feature`).
|
|
138
140
|
- Hack away, add tests. Not necessarily in that order.
|
|
139
141
|
- Make sure everything still passes by running `rake`.
|
|
140
142
|
- If necessary, rebase your commits into logical chunks, without errors.
|
|
@@ -185,7 +187,7 @@ process:
|
|
|
185
187
|
2. Once this PR is approved and merged, the next steps would be conversion,
|
|
186
188
|
version update, automatic update of History.md, and release (steps 6–10).
|
|
187
189
|
|
|
188
|
-
This is based on an issue [#18][].
|
|
190
|
+
This is based on an issue [#18][#18].
|
|
189
191
|
|
|
190
192
|
### Contributors
|
|
191
193
|
|
|
@@ -233,6 +235,7 @@ Thanks to everyone else who has contributed to mime-types:
|
|
|
233
235
|
- Robert Buchberger
|
|
234
236
|
- Samuel Williams
|
|
235
237
|
- Sergio Baptista
|
|
238
|
+
- Shane Eskritt
|
|
236
239
|
- Tao Guo
|
|
237
240
|
- Thomas Leese
|
|
238
241
|
- Tibor Szolár
|
data/History.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- automatic-release -->
|
|
4
4
|
|
|
5
|
+
## 3.2024.0820 / 2024-08-20
|
|
6
|
+
|
|
7
|
+
- Updated the Apache and IANA media registry entries as of release date.
|
|
8
|
+
|
|
9
|
+
- Added `.jxl` extension for `image/jxl`. Contributed by Shane Eskritt in
|
|
10
|
+
[#81][#81].
|
|
11
|
+
|
|
5
12
|
## 3.2024.0806 / 2024-08-06
|
|
6
13
|
|
|
7
14
|
- Updated the Apache and IANA media registry entries as of release date
|
|
@@ -14,8 +21,8 @@
|
|
|
14
21
|
|
|
15
22
|
- This update adds a new `haptics/` group with three media types defined.
|
|
16
23
|
|
|
17
|
-
- Moved extensions from `audio/x-aac` to `audio/aac` and mark
|
|
18
|
-
|
|
24
|
+
- Moved extensions from `audio/x-aac` to `audio/aac` and mark `audio/x-aac` as
|
|
25
|
+
obsolete. Based on [#77][#77] by Samuel Williams.
|
|
19
26
|
|
|
20
27
|
- Made the same changes for `audio/flac` and `audio/matroska`.
|
|
21
28
|
|
|
@@ -588,6 +595,7 @@
|
|
|
588
595
|
[#54]: https://github.com/mime-types/mime-types-data/issues/54
|
|
589
596
|
[#55]: https://github.com/mime-types/mime-types-data/issues/55
|
|
590
597
|
[#77]: https://github.com/mime-types/mime-types-data/pull/77
|
|
598
|
+
[#81]: https://github.com/mime-types/mime-types-data/pull/81
|
|
591
599
|
[rmt]: https://github.com/mime-types/ruby-mime-types
|
|
592
600
|
[code of conduct]: Code-of-Conduct.md
|
|
593
601
|
[mini_mime]: https://github.com/discourse/mini_mime/issues/41
|
data/data/content_type_mime.db
CHANGED
data/data/ext_mime.db
CHANGED
|
@@ -428,6 +428,7 @@ jpx image/jpx
|
|
|
428
428
|
js text/javascript quoted-printable
|
|
429
429
|
json application/json 8bit
|
|
430
430
|
jsonml application/jsonml+json base64
|
|
431
|
+
jxl image/jxl base64
|
|
431
432
|
k25 image/x-kodak-k25 base64
|
|
432
433
|
kar audio/midi base64
|
|
433
434
|
karbon application/vnd.kde.karbon base64
|