This project was sleeping for too long. Too many parts are not clean at all. So, here some cleanup: - add more test unit - clean msdos date/time format for zip - add crc32 - add version support - rewrite notes - rewrite the whole interface from scratch. - update github actions - update license (MIT) - create dotzip application - update notes regarding data-structure used - fix date and time ms-dos format (issue with endianess) - fix local file header encoding - update documentation - update with new extra fields and third party support - add extended timestamp third party support - add unix info new third party support
16 lines
261 B
Elixir
16 lines
261 B
Elixir
defmodule Dotzip.Extensions do
|
|
|
|
@moduledoc """
|
|
|
|
List of supported ZIP extension. This module is used to do a
|
|
quickcheck on filenames.
|
|
|
|
"""
|
|
|
|
def supported do
|
|
["zip", "zipx", "jar", "war", "docx", "xlxs", "pptx", "odt",
|
|
"ods", "odp"]
|
|
end
|
|
|
|
end
|