[PR #211] [MERGED] esp32 compression support for buffer; previews support compressed buffers too #1566

Closed
opened 2026-03-20 19:09:06 +01:00 by sascha_hemi · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/OpenEPaperLink/OpenEPaperLink/pull/211
Author: @nlimper
Created: 1/28/2024
Status: Merged
Merged: 1/29/2024
Merged by: @nlimper

Base: masterHead: zlib


📝 Commits (8)

📊 Changes

24 files changed (+9783 additions, -158 deletions)

View changed files

📝 ESP32_AP-Flasher/data/tagtypes/05.json (+1 -0)
📝 ESP32_AP-Flasher/data/tagtypes/34.json (+1 -1)
📝 ESP32_AP-Flasher/data/tagtypes/35.json (+2 -0)
📝 ESP32_AP-Flasher/data/www/edit.html.gz (+0 -0)
📝 ESP32_AP-Flasher/data/www/index.html.gz (+0 -0)
📝 ESP32_AP-Flasher/data/www/main.js.gz (+0 -0)
📝 ESP32_AP-Flasher/include/makeimage.h (+2 -0)
📝 ESP32_AP-Flasher/include/tag_db.h (+1 -0)
ESP32_AP-Flasher/lib/miniz-oepl/ChangeLog.md (+239 -0)
ESP32_AP-Flasher/lib/miniz-oepl/LICENSE (+22 -0)
ESP32_AP-Flasher/lib/miniz-oepl/miniz-oepl.cpp (+7842 -0)
ESP32_AP-Flasher/lib/miniz-oepl/miniz-oepl.h (+1429 -0)
ESP32_AP-Flasher/lib/miniz-oepl/readme.md (+46 -0)
📝 ESP32_AP-Flasher/src/contentmanager.cpp (+66 -31)
📝 ESP32_AP-Flasher/src/flasher.cpp (+0 -36)
📝 ESP32_AP-Flasher/src/leds.cpp (+11 -30)
📝 ESP32_AP-Flasher/src/main.cpp (+0 -3)
📝 ESP32_AP-Flasher/src/makeimage.cpp (+85 -3)
📝 ESP32_AP-Flasher/src/newproto.cpp (+2 -2)
📝 ESP32_AP-Flasher/src/storage.cpp (+0 -46)

...and 4 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/OpenEPaperLink/OpenEPaperLink/pull/211 **Author:** [@nlimper](https://github.com/nlimper) **Created:** 1/28/2024 **Status:** ✅ Merged **Merged:** 1/29/2024 **Merged by:** [@nlimper](https://github.com/nlimper) **Base:** `master` ← **Head:** `zlib` --- ### 📝 Commits (8) - [`30eceaf`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/30eceaf13e88a48dac71380ab79c7165564db5e2) zlib support - [`d246a1e`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/d246a1ebc8b0c499586973c974f92524d3fd32c8) window size - [`0aa5fab`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/0aa5fabaaca732627333a93efbfea26d2858d8ce) zlib 4096 window size - [`e65cf23`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/e65cf23c3ee594b326e3a1f534e7953ebc51d1bd) fix - [`de3378a`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/de3378a2dcb38a199f6e7895f66eb29093d045af) Update contentmanager.cpp - [`ef6405f`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/ef6405ff02900b1897165c50bbe8f0b78c768a97) Merge remote-tracking branch 'upstream/master' into zlib - [`a374047`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/a374047f1419d367d85610b06d8b6fb1f57a0bf7) fixes and code cleaning - [`2aea9e5`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/2aea9e5fce22389f88bc04af476b3f3f4b1d7034) tagtype ### 📊 Changes **24 files changed** (+9783 additions, -158 deletions) <details> <summary>View changed files</summary> 📝 `ESP32_AP-Flasher/data/tagtypes/05.json` (+1 -0) 📝 `ESP32_AP-Flasher/data/tagtypes/34.json` (+1 -1) 📝 `ESP32_AP-Flasher/data/tagtypes/35.json` (+2 -0) 📝 `ESP32_AP-Flasher/data/www/edit.html.gz` (+0 -0) 📝 `ESP32_AP-Flasher/data/www/index.html.gz` (+0 -0) 📝 `ESP32_AP-Flasher/data/www/main.js.gz` (+0 -0) 📝 `ESP32_AP-Flasher/include/makeimage.h` (+2 -0) 📝 `ESP32_AP-Flasher/include/tag_db.h` (+1 -0) ➕ `ESP32_AP-Flasher/lib/miniz-oepl/ChangeLog.md` (+239 -0) ➕ `ESP32_AP-Flasher/lib/miniz-oepl/LICENSE` (+22 -0) ➕ `ESP32_AP-Flasher/lib/miniz-oepl/miniz-oepl.cpp` (+7842 -0) ➕ `ESP32_AP-Flasher/lib/miniz-oepl/miniz-oepl.h` (+1429 -0) ➕ `ESP32_AP-Flasher/lib/miniz-oepl/readme.md` (+46 -0) 📝 `ESP32_AP-Flasher/src/contentmanager.cpp` (+66 -31) 📝 `ESP32_AP-Flasher/src/flasher.cpp` (+0 -36) 📝 `ESP32_AP-Flasher/src/leds.cpp` (+11 -30) 📝 `ESP32_AP-Flasher/src/main.cpp` (+0 -3) 📝 `ESP32_AP-Flasher/src/makeimage.cpp` (+85 -3) 📝 `ESP32_AP-Flasher/src/newproto.cpp` (+2 -2) 📝 `ESP32_AP-Flasher/src/storage.cpp` (+0 -46) _...and 4 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
sascha_hemi added the pull-request label 2026-03-20 19:09:06 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/OpenEPaperLink#1566