Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
6058343
Introduce `zipIn` functionality to zip files and folders in a new zip…
chaitanyawaikar Sep 29, 2024
4eb1c5f
Extend the `zipIn` functionality to append new files and folders to a…
chaitanyawaikar Sep 29, 2024
db8db8a
Implement the `unzip` functionality. This method would create a new d…
chaitanyawaikar Sep 29, 2024
997444a
Refactoring zip functionality.
chaitanyawaikar Sep 29, 2024
ec795f3
Introduce new options in zip functionality
chaitanyawaikar Sep 29, 2024
24d6ece
Fix delete option in zip files
chaitanyawaikar Sep 29, 2024
e76401a
Enhance unzip functionality with
chaitanyawaikar Sep 29, 2024
8f0cd99
Add documentation support for zip and unzip functionality.
chaitanyawaikar Sep 29, 2024
02ba84b
Fix scalafmt file changes
chaitanyawaikar Sep 30, 2024
9444261
Fix error caused in build step `./mill -i -k __.mimaReportBinaryIssues`
chaitanyawaikar Sep 30, 2024
6180cd8
Fix error caused in build step `./mill -i -k __.mimaReportBinaryIssues`
chaitanyawaikar Sep 30, 2024
f272471
Added scaladocs for the `zip` and `unzip` functionality
chaitanyawaikar Sep 30, 2024
ad952ec
Add `zip.stream` and `unzip.stream` functionality and their correspon…
chaitanyawaikar Oct 3, 2024
8dc2fdb
Add functionality `preserveMTimes` and `preservePermissions` during z…
chaitanyawaikar Oct 5, 2024
6fdac49
wip
lihaoyi Oct 6, 2024
9e8b6a6
wip
lihaoyi Oct 7, 2024
515c1d9
wip
lihaoyi Oct 7, 2024
86eae3d
wip
lihaoyi Oct 7, 2024
3a2a529
move to filesystem append
lihaoyi Oct 7, 2024
7bc41b8
wip
lihaoyi Oct 7, 2024
f006abe
wip
lihaoyi Oct 7, 2024
eaf15ad
update CI
lihaoyi Oct 7, 2024
5cf2705
versions
lihaoyi Oct 7, 2024
cdd7034
.
lihaoyi Oct 7, 2024
eba11f9
fmt
lihaoyi Oct 7, 2024
f140105
fmt
lihaoyi Oct 7, 2024
ea2a1e6
fmt
lihaoyi Oct 7, 2024
57a6144
fmt
lihaoyi Oct 7, 2024
0a223e2
.
lihaoyi Oct 7, 2024
9fc2526
.
lihaoyi Oct 7, 2024
8b89c46
.
lihaoyi Oct 7, 2024
32a4e45
.
lihaoyi Oct 7, 2024
b337b1f
.
lihaoyi Oct 7, 2024
182c390
.
lihaoyi Oct 7, 2024
dee6790
.
lihaoyi Oct 7, 2024
a2176d1
.
lihaoyi Oct 7, 2024
0e6a13e
.
lihaoyi Oct 7, 2024
cc51ba9
.
lihaoyi Oct 7, 2024
d8db7bb
.
lihaoyi Oct 7, 2024
abf6a92
.
lihaoyi Oct 7, 2024
da66cee
.
lihaoyi Oct 7, 2024
867ee9f
.
lihaoyi Oct 7, 2024
5c1bfee
.
lihaoyi Oct 7, 2024
ce621b7
.
lihaoyi Oct 7, 2024
113ed16
.
lihaoyi Oct 7, 2024
54dae26
.
lihaoyi Oct 7, 2024
c401529
.
lihaoyi Oct 7, 2024
cb43974
.
lihaoyi Oct 7, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
.
  • Loading branch information
lihaoyi committed Oct 7, 2024
commit 182c390ab66861097cf83d07a45d81b272eac791
3 changes: 2 additions & 1 deletion Readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,8 @@ def apply(dest: os.Path,
includePatterns: Seq[Regex] = List(),
preserveMtimes: Boolean = false,
preservePerms: Boolean = true,
deletePatterns: Seq[Regex] = List()): os.Path
deletePatterns: Seq[Regex] = List(),
compressionLevel: Int = -1 /* 0-9 */): os.Path
----

The zip object provides functionality to create or modify zip archives. It supports:
Expand Down