From b86ed8a9c7c0093b5b64245ff4a2de6e9d41606f Mon Sep 17 00:00:00 2001 From: brianheineman Date: Thu, 9 Jan 2025 10:22:56 -0700 Subject: [PATCH] feat: update linguist definitions --- FILETYPES.md | 3 ++- file_type/data/linguist/linguist-689079655.xml | 16 ++++++++++++++++ file_type/src/file_types.rs | 4 ++-- 3 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 file_type/data/linguist/linguist-689079655.xml diff --git a/FILETYPES.md b/FILETYPES.md index 11ff4ecd1..a441ebcee 100644 --- a/FILETYPES.md +++ b/FILETYPES.md @@ -1,4 +1,4 @@ -# File Types (3851) +# File Types (3852) | Id | Name | Extensions | Media Types | | ---- | ---- | ----------- | ---------- | @@ -2564,6 +2564,7 @@ | [apache-httpd/4956746657128679058](https://github.com/theseus-rs/file-type/blob/main/file_type/data/apache-httpd/apache-httpd-4956746657128679058.xml) | osgi subsystem | esa | application/vnd.osgi.subsystem | | [fmt/839](https://github.com/theseus-rs/file-type/blob/main/file_type/data/pronom/fmt-839.xml) | Outlook Express Folder Database | dbx | | | [fmt/838](https://github.com/theseus-rs/file-type/blob/main/file_type/data/pronom/fmt-838.xml) | Outlook Express Message Database | dbx | | +| [linguist/689079655](https://github.com/theseus-rs/file-type/blob/main/file_type/data/linguist/linguist-689079655.xml) | OverpassQL | .overpassql | | | [linguist/269](https://github.com/theseus-rs/file-type/blob/main/file_type/data/linguist/linguist-269.xml) | Oxygene | .oxygene | | | [linguist/268](https://github.com/theseus-rs/file-type/blob/main/file_type/data/linguist/linguist-268.xml) | Ox | .ox, .oxh, .oxo | | | [linguist/270](https://github.com/theseus-rs/file-type/blob/main/file_type/data/linguist/linguist-270.xml) | Oz | .oz | text/x-oz | diff --git a/file_type/data/linguist/linguist-689079655.xml b/file_type/data/linguist/linguist-689079655.xml new file mode 100644 index 000000000..2c6bdf1b7 --- /dev/null +++ b/file_type/data/linguist/linguist-689079655.xml @@ -0,0 +1,16 @@ + + 689079655 + OverpassQL + 0 + 09 Jan 2025 + 09 Jan 2025 + + linguist/689079655 + PUID + + + 0 + .overpassql + File extension + + \ No newline at end of file diff --git a/file_type/src/file_types.rs b/file_type/src/file_types.rs index 80ed6a7db..13352cc1c 100644 --- a/file_type/src/file_types.rs +++ b/file_type/src/file_types.rs @@ -362,13 +362,13 @@ mod tests { #[test] fn test_file_formats() { let file_types = &*FILE_TYPES; - assert_eq!(3851, file_types.len()); + assert_eq!(3852, file_types.len()); } #[test] fn test_extensions() { let extensions = &*EXTENSION_MAP; - assert_eq!(3613, extensions.len()); + assert_eq!(3614, extensions.len()); } #[test]