[PR #404] [MERGED] Added G5 encoding #3833

Closed
opened 2026-03-20 23:08:30 +01:00 by sascha_hemi · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/OpenEPaperLink/OpenEPaperLink/pull/404
Author: @jjwbruijn
Created: 12/1/2024
Status: Merged
Merged: 12/8/2024
Merged by: @jjwbruijn

Base: masterHead: G5-compress


📝 Commits (10+)

  • 78e0977 Added G5 encoding
  • 573ba8c Added fallback, updated types
  • 691b64d fixed the lut argument for g5-compressed images
  • 9d4e31b Added G5 to M2 (zbs243) tag types
  • d84a5f6 Added G5 for Opticon
  • ae87ac1 added javascript g5 decoder for previews
  • a485111 added header to g5 compressed buffer
  • 2e38e9f added g5 preview to file editor
  • 1de47b1 bump tagtype version numbers
  • 8857ecb DATATYPE_IMG_G5

📊 Changes

27 files changed (+1427 additions, -57 deletions)

View changed files

📝 ESP32_AP-Flasher/include/makeimage.h (+1 -0)
📝 ESP32_AP-Flasher/include/tag_db.h (+1 -0)
📝 ESP32_AP-Flasher/src/contentmanager.cpp (+33 -18)
ESP32_AP-Flasher/src/g5/Group5.h (+203 -0)
ESP32_AP-Flasher/src/g5/g5dec.inl (+338 -0)
ESP32_AP-Flasher/src/g5/g5enc.inl (+305 -0)
📝 ESP32_AP-Flasher/src/makeimage.cpp (+107 -18)
📝 ESP32_AP-Flasher/src/newproto.cpp (+3 -2)
📝 ESP32_AP-Flasher/src/tag_db.cpp (+8 -2)
📝 ESP32_AP-Flasher/wwwroot/edit.html (+11 -1)
ESP32_AP-Flasher/wwwroot/g5decoder.js (+377 -0)
📝 ESP32_AP-Flasher/wwwroot/index.html (+1 -0)
📝 ESP32_AP-Flasher/wwwroot/main.js (+12 -1)
📝 oepl-definitions.h (+1 -2)
📝 resources/tagtypes/00.json (+2 -1)
📝 resources/tagtypes/01.json (+2 -1)
📝 resources/tagtypes/02.json (+2 -1)
📝 resources/tagtypes/03.json (+2 -1)
📝 resources/tagtypes/04.json (+2 -1)
📝 resources/tagtypes/06.json (+2 -1)

...and 7 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/404 **Author:** [@jjwbruijn](https://github.com/jjwbruijn) **Created:** 12/1/2024 **Status:** ✅ Merged **Merged:** 12/8/2024 **Merged by:** [@jjwbruijn](https://github.com/jjwbruijn) **Base:** `master` ← **Head:** `G5-compress` --- ### 📝 Commits (10+) - [`78e0977`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/78e097738a86561b5d5607990720615d8c5f9b7e) Added G5 encoding - [`573ba8c`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/573ba8c4241ac461cec4e922ed13bf2b54f19143) Added fallback, updated types - [`691b64d`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/691b64d192ec0daf0e5cec9ed487a0dd842f16d7) fixed the lut argument for g5-compressed images - [`9d4e31b`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/9d4e31b01beeb809d78cc19b34d8108ead9895d0) Added G5 to M2 (zbs243) tag types - [`d84a5f6`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/d84a5f6e751ee7f221af7304b1e83efb016ca548) Added G5 for Opticon - [`ae87ac1`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/ae87ac19605a1180bfa15fa0d79a05f07719fe1c) added javascript g5 decoder for previews - [`a485111`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/a48511145cdcd2f9e98447d08c68093f293db7b2) added header to g5 compressed buffer - [`2e38e9f`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/2e38e9f218f5949f5a2b9ff31e2e7fd323e694f6) added g5 preview to file editor - [`1de47b1`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/1de47b11338c8850982b218abf023bf05eaa4a92) bump tagtype version numbers - [`8857ecb`](https://github.com/OpenEPaperLink/OpenEPaperLink/commit/8857ecb66900f7e8dbb5383ae1061c26751b6228) DATATYPE_IMG_G5 ### 📊 Changes **27 files changed** (+1427 additions, -57 deletions) <details> <summary>View changed files</summary> 📝 `ESP32_AP-Flasher/include/makeimage.h` (+1 -0) 📝 `ESP32_AP-Flasher/include/tag_db.h` (+1 -0) 📝 `ESP32_AP-Flasher/src/contentmanager.cpp` (+33 -18) ➕ `ESP32_AP-Flasher/src/g5/Group5.h` (+203 -0) ➕ `ESP32_AP-Flasher/src/g5/g5dec.inl` (+338 -0) ➕ `ESP32_AP-Flasher/src/g5/g5enc.inl` (+305 -0) 📝 `ESP32_AP-Flasher/src/makeimage.cpp` (+107 -18) 📝 `ESP32_AP-Flasher/src/newproto.cpp` (+3 -2) 📝 `ESP32_AP-Flasher/src/tag_db.cpp` (+8 -2) 📝 `ESP32_AP-Flasher/wwwroot/edit.html` (+11 -1) ➕ `ESP32_AP-Flasher/wwwroot/g5decoder.js` (+377 -0) 📝 `ESP32_AP-Flasher/wwwroot/index.html` (+1 -0) 📝 `ESP32_AP-Flasher/wwwroot/main.js` (+12 -1) 📝 `oepl-definitions.h` (+1 -2) 📝 `resources/tagtypes/00.json` (+2 -1) 📝 `resources/tagtypes/01.json` (+2 -1) 📝 `resources/tagtypes/02.json` (+2 -1) 📝 `resources/tagtypes/03.json` (+2 -1) 📝 `resources/tagtypes/04.json` (+2 -1) 📝 `resources/tagtypes/06.json` (+2 -1) _...and 7 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 23:08:30 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/OpenEPaperLink#3833