-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4549eb
commit aee6925
Showing
7 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#Build Number for ANT. Do not edit! | ||
#Mon Mar 23 18:32:53 CET 2020 | ||
build.number=4 | ||
#Tue Jul 13 11:30:45 CEST 2021 | ||
build.number=5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Manifest-Version: 1.0 | ||
Export-Package: org.lucee.extension.zip.tag | ||
Bundle-ManifestVersion: 2 | ||
Require-Bundle: org.lucee.zip4j;bundle-version=2.1.3.0 | ||
Require-Bundle: net.lingala.zip4j;bundle-version=2.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
source/java/src/org/lucee/extension/zip/util/CompressUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.lucee.extension.zip.util; | ||
|
||
import net.lingala.zip4j.util.Zip4jUtil; | ||
|
||
public class CompressUtil { | ||
|
||
public static long dosToJavaTme(long dosTime) { | ||
return Zip4jUtil.dosToExtendedEpochTme(dosTime); | ||
} | ||
} |