Zip Editor Changelog
2026_0705
adds popover 'save as...' menu with options
adds feature options to 'save zip'
  if(saving items from a zip into a new zip){
    A) preserve compression
    B) follow general compression choice
  }
  offers compression choice for items in the zip
    No compression
    Compress each file (via deflate)
  Adds Gzip options
    gzip chosen text files, and save the gzipped version instead
    unarchive chosen gzipped files, and save the raw file instead
  shows a text representation of what will save, per settings
  offers to change the name of the zip file in the save as popup
  offers to group chosen items in an folder or to keep them loose
improves regex search
renames, reduces, and moves ui elements and text.
improves messages from tool
  adds a popover with a textarea to collect and show all messages
  timestamps each message
improves listing of zips loaded in in file tree
  if given `name.zip` and it contains only `name/` list `name/`
  (don't list `name/name/contents`)
improves (slightly) 'about' text in info popover
improves wording explaining `auto-read when activated setting`
splits tool into script per 'area'
looks into brotli (not cross-browser ready yet)
writes initial change log
links to change log

2026_0704 Basic tool
adds all basic features
  offers user to give access to zips by file picker or drag-drop
  lists contents of each zip file given as foldable nested tree
  adds 'item inspector'
    shows info about active folder or file in a zip
    shows item count of folders: items/folders/files + recursive
    offers rename, delete, move active folder or fle
    for text, image and video files, can load file content inline
    allows downloading individual items as files or zipped
    (reads only the part of the zip containing the chosen files)
    adds ability to edit content of text files in zips loaded
    adds next back nav to item inspector
  adds search to file results
  sorts file results by local compare a-z [1,2,10]
    adds regex to search
  allows selecting items in file tree
  adds actions for selected items: batch delete or move
  allows saving any folder in a zip on its own
  allows merging zips: save a zip with folder of content per zip
  allows dropping in unzipped files to add them to a zip
  adds ability to make a new folder
  allows moving folders and files across zips (as well as within)
  
----
Supersedes a separate tool zip-look which allowed:
  listing one zip's content
  reading, uncompressing and downloading select files from a zip
    (without reading or uncompressing the whole zip)