[PR #1726] [CLOSED] Script #1183

Closed
opened 2026-02-28 00:06:41 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/SpacehuhnTech/esp8266_deauther/pull/1726
Author: @darthjee
Created: 8/14/2024
Status: Closed

Base: v2Head: script


📝 Commits (10+)

📊 Changes

44 files changed (+1660 additions, -1 deletions)

View changed files

📝 README.md (+4 -1)
utils/font_helper/.gitignore (+2 -0)
utils/font_helper/.rubocop.yml (+17 -0)
utils/font_helper/Dockerfile (+16 -0)
utils/font_helper/Gemfile (+35 -0)
utils/font_helper/Gemfile.lock (+171 -0)
utils/font_helper/docker-compose.yml (+24 -0)
utils/font_helper/font_helper.sh (+21 -0)
utils/font_helper/source/font_helper.rb (+22 -0)
utils/font_helper/source/font_helper/character.rb (+27 -0)
utils/font_helper/source/font_helper/character_binary_writter.rb (+39 -0)
utils/font_helper/source/font_helper/character_builder.rb (+34 -0)
utils/font_helper/source/font_helper/character_writter.rb (+54 -0)
utils/font_helper/source/font_helper/command.rb (+24 -0)
utils/font_helper/source/font_helper/command/open.rb (+20 -0)
utils/font_helper/source/font_helper/command/write.rb (+20 -0)
utils/font_helper/source/font_helper/file_loader.rb (+29 -0)
utils/font_helper/source/font_helper/font.rb (+66 -0)
utils/font_helper/source/font_helper/font_builder.rb (+49 -0)
utils/font_helper/source/font_helper/font_loader.rb (+25 -0)

...and 24 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/SpacehuhnTech/esp8266_deauther/pull/1726 **Author:** [@darthjee](https://github.com/darthjee) **Created:** 8/14/2024 **Status:** ❌ Closed **Base:** `v2` ← **Head:** `script` --- ### 📝 Commits (10+) - [`ab87f4c`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/ab87f4c6ad48e855da1e6a17d4f9d88ef2e1cc26) Update README.md - [`882a715`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/882a7159339032456de58b7c6d00210a31a0f583) Add font helper - [`829db9b`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/829db9b6bd4b9937114e81abb7338aa063e8b767) Rubocop fix - [`16913b1`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/16913b10700843fa985b95bc3eebace13f01cae5) Merge pull request #1 from darthjee/font_helper - [`541b785`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/541b7853c9b7815c02408290d3a05c041fa91fbd) Fix extra spec - [`26c8a20`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/26c8a20846e9d2cc3448a9be8dd82947ebe86394) Check characters size - [`e165807`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/e1658071f7237fdd75c46fca5c70624d0861e298) Add more attributes to character - [`1cb8d08`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/1cb8d08dc3eac8be40409671e883fda7c87dc1a2) Rubocop fix - [`c9623b8`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/c9623b81e3ddb2aa3d7a09dcaed15a7457c1c095) Add character builder - [`146191f`](https://github.com/SpacehuhnTech/esp8266_deauther/commit/146191f5d959a2a3127a3c48ed686fd1ab8ac267) Add spec over binary search ### 📊 Changes **44 files changed** (+1660 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+4 -1) ➕ `utils/font_helper/.gitignore` (+2 -0) ➕ `utils/font_helper/.rubocop.yml` (+17 -0) ➕ `utils/font_helper/Dockerfile` (+16 -0) ➕ `utils/font_helper/Gemfile` (+35 -0) ➕ `utils/font_helper/Gemfile.lock` (+171 -0) ➕ `utils/font_helper/docker-compose.yml` (+24 -0) ➕ `utils/font_helper/font_helper.sh` (+21 -0) ➕ `utils/font_helper/source/font_helper.rb` (+22 -0) ➕ `utils/font_helper/source/font_helper/character.rb` (+27 -0) ➕ `utils/font_helper/source/font_helper/character_binary_writter.rb` (+39 -0) ➕ `utils/font_helper/source/font_helper/character_builder.rb` (+34 -0) ➕ `utils/font_helper/source/font_helper/character_writter.rb` (+54 -0) ➕ `utils/font_helper/source/font_helper/command.rb` (+24 -0) ➕ `utils/font_helper/source/font_helper/command/open.rb` (+20 -0) ➕ `utils/font_helper/source/font_helper/command/write.rb` (+20 -0) ➕ `utils/font_helper/source/font_helper/file_loader.rb` (+29 -0) ➕ `utils/font_helper/source/font_helper/font.rb` (+66 -0) ➕ `utils/font_helper/source/font_helper/font_builder.rb` (+49 -0) ➕ `utils/font_helper/source/font_helper/font_loader.rb` (+25 -0) _...and 24 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>
kerem 2026-02-28 00:06:41 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/esp8266_deauther#1183
No description provided.