From c51399f7de427e23f4c50fda37883f8c0ed2204f Mon Sep 17 00:00:00 2001 From: Ryan Oldenburg Date: Fri, 30 Dec 2022 15:03:12 -0600 Subject: [PATCH] add note --- src/zippy/ziparchives_v1.nim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/zippy/ziparchives_v1.nim b/src/zippy/ziparchives_v1.nim index bec7437..071bb02 100644 --- a/src/zippy/ziparchives_v1.nim +++ b/src/zippy/ziparchives_v1.nim @@ -3,6 +3,11 @@ import common, crc, internal, std/os, std/streams, std/strutils, std/tables, export common +## NOTE: This file exists for backward compatibility. I already reworked how +## reading zip archives works, but have not reworked writing them. Keeping this +## original version around ensures people's code doesn't break and atleast there +## exists an option, even if I no longer like how this approach worked out. + type EntryKind* = enum ekFile, ekDirectory