summaryrefslogtreecommitdiff
path: root/zip
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2008-10-05 11:04:26 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2008-10-05 11:04:26 +0200
commitd0caac91ac0a03e021d50d1de978733e11ba2ccd (patch)
treeb763e376e8f289baaccf332398d9354663115792 /zip
parentc41d3e7d896492dd70cd1d548ef4fd5b3cbe4954 (diff)
downloadtuxcmd-modules-d0caac91ac0a03e021d50d1de978733e11ba2ccd.tar.xz
VFS API break: Introduce FDisplayName propertyv0.6.52
Diffstat (limited to 'zip')
-rw-r--r--zip/zip.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/zip/zip.cpp b/zip/zip.cpp
index 76e2513..dc52c05 100644
--- a/zip/zip.cpp
+++ b/zip/zip.cpp
@@ -1,5 +1,5 @@
/* ZIP plugin for Tux Commander
- * version 0.4.5, designed for ZipArchive v3.2.0
+ * version 0.5.0, designed for ZipArchive v3.2.0
* Copyright (C) 2008 Tomas Bzatek <tbzatek@users.sourceforge.net>
* Check for updates on tuxcmd.sourceforge.net
*
@@ -47,8 +47,8 @@
-#define VERSION "0.4.5"
-#define BUILD_DATE "2008-02-09"
+#define VERSION "0.5.0"
+#define BUILD_DATE "2008-10-05"
#define DEFAULT_BLOCK_SIZE 65536
@@ -251,7 +251,7 @@ void VFSDestroy(struct TVFSGlobs *globs)
int VFSVersion()
{
- return 3;
+ return cVFSVersion;
}
TVFSInfo VFSGetInfo()
@@ -969,6 +969,8 @@ TVFSResult VFSCopyIn(struct TVFSGlobs *globs, const char *sSrcName, const char *
/***
* Todo:
*
+* - UTF-8, FName/FDisplayName and absolute/relative paths revision needed!
+* (check http://www.artpol-software.com/ZipArchive/KB/0610051525.aspx )
* - implement an "opened" flag - is it really needed? + add tests to all functions
* - readonly checking IsReadOnly() + add tests to all functions modifying the archive
* - after VFS API update implement archive testing, compression level setting, retrieving compression info for each file and archive, readonly flags, begin-action, end-action (no refresh, faster operations) ...