[PR #189] [MERGED] [apps/graph] Added a color menu in graph and list #305

Closed
opened 2026-05-06 13:16:43 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/UpsilonNumworks/Upsilon/pull/189
Author: @Yaya-Cout
Created: 3/22/2022
Status: Merged
Merged: 3/23/2022
Merged by: @Yaya-Cout

Base: upsilon-devHead: upsilon-dev-functions-colors


📝 Commits (10+)

  • e9b35ef Revert "[github/workflows] Update Metrics to remove NumWorksBot"
  • f7210e5 Added a color menu in graph and list
  • a264d34 Fixed color select display issue and build issue
  • 28dddb4 Changed color_cell to a circle
  • 620f7a6 Revert "Changed color_cell to a circle"
  • b0b1d33 Color_cell with mask
  • 8cc489e Fixed build issue
  • 5dcaa42 Color selection : Added right handle and color name display in menu
  • e4967ff Fixed constexpr static colorMask
  • 5cab7a0 Changed font in color_parameter_controller

📊 Changes

20 files changed (+312 additions, -52 deletions)

View changed files

📝 apps/graph/list/list_parameter_controller.cpp (+1 -1)
📝 apps/sequence/list/list_parameter_controller.cpp (+1 -21)
📝 apps/sequence/list/list_parameter_controller.h (+0 -4)
📝 apps/shared.de.i18n (+7 -0)
📝 apps/shared.en.i18n (+7 -0)
📝 apps/shared.es.i18n (+7 -0)
📝 apps/shared.fr.i18n (+7 -0)
📝 apps/shared.hu.i18n (+7 -0)
📝 apps/shared.it.i18n (+7 -0)
📝 apps/shared.nl.i18n (+7 -0)
📝 apps/shared.pt.i18n (+7 -0)
📝 apps/shared/Makefile (+2 -0)
apps/shared/color_cell.cpp (+51 -0)
apps/shared/color_cell.h (+42 -0)
apps/shared/color_parameter_controller.cpp (+86 -0)
apps/shared/color_parameter_controller.h (+44 -0)
📝 apps/shared/function.cpp (+4 -0)
📝 apps/shared/function.h (+2 -0)
📝 apps/shared/list_parameter_controller.cpp (+20 -19)
📝 apps/shared/list_parameter_controller.h (+3 -7)

📄 Description

This pull request is a reopen of Numworks#1741 with bug fixes : The colours translations are now independent of the Python app and the colour cell's cursor is now restored. This does think that have been said in #153. It also closes #151.


🔄 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/UpsilonNumworks/Upsilon/pull/189 **Author:** [@Yaya-Cout](https://github.com/Yaya-Cout) **Created:** 3/22/2022 **Status:** ✅ Merged **Merged:** 3/23/2022 **Merged by:** [@Yaya-Cout](https://github.com/Yaya-Cout) **Base:** `upsilon-dev` ← **Head:** `upsilon-dev-functions-colors` --- ### 📝 Commits (10+) - [`e9b35ef`](https://github.com/UpsilonNumworks/Upsilon/commit/e9b35efe1641314a0f02840e79f18b19e9183bc2) Revert "[github/workflows] Update Metrics to remove NumWorksBot" - [`f7210e5`](https://github.com/UpsilonNumworks/Upsilon/commit/f7210e5a209214e3dd64361407b15ce9871dbbc2) Added a color menu in graph and list - [`a264d34`](https://github.com/UpsilonNumworks/Upsilon/commit/a264d34e786a1e6e9420264d67a8a587b1ce6410) Fixed color select display issue and build issue - [`28dddb4`](https://github.com/UpsilonNumworks/Upsilon/commit/28dddb42af18ace8599615b33e14b5dd23bdeff2) Changed color_cell to a circle - [`620f7a6`](https://github.com/UpsilonNumworks/Upsilon/commit/620f7a6c7cc98c47ca6371dd357ec95518d5298d) Revert "Changed color_cell to a circle" - [`b0b1d33`](https://github.com/UpsilonNumworks/Upsilon/commit/b0b1d337e689b4385e306f6e9edad48d0222507c) Color_cell with mask - [`8cc489e`](https://github.com/UpsilonNumworks/Upsilon/commit/8cc489e826f74815bcfaf80287e827ebe1e65d05) Fixed build issue - [`5dcaa42`](https://github.com/UpsilonNumworks/Upsilon/commit/5dcaa42cd6b50b82d057b331bfbfcc20a7e6464c) Color selection : Added right handle and color name display in menu - [`e4967ff`](https://github.com/UpsilonNumworks/Upsilon/commit/e4967ff46c8c0d41018b4fbb4c8636b7e3966912) Fixed constexpr static colorMask - [`5cab7a0`](https://github.com/UpsilonNumworks/Upsilon/commit/5cab7a0fdd3e50a737752a1f07d1862e95356b5b) Changed font in color_parameter_controller ### 📊 Changes **20 files changed** (+312 additions, -52 deletions) <details> <summary>View changed files</summary> 📝 `apps/graph/list/list_parameter_controller.cpp` (+1 -1) 📝 `apps/sequence/list/list_parameter_controller.cpp` (+1 -21) 📝 `apps/sequence/list/list_parameter_controller.h` (+0 -4) 📝 `apps/shared.de.i18n` (+7 -0) 📝 `apps/shared.en.i18n` (+7 -0) 📝 `apps/shared.es.i18n` (+7 -0) 📝 `apps/shared.fr.i18n` (+7 -0) 📝 `apps/shared.hu.i18n` (+7 -0) 📝 `apps/shared.it.i18n` (+7 -0) 📝 `apps/shared.nl.i18n` (+7 -0) 📝 `apps/shared.pt.i18n` (+7 -0) 📝 `apps/shared/Makefile` (+2 -0) ➕ `apps/shared/color_cell.cpp` (+51 -0) ➕ `apps/shared/color_cell.h` (+42 -0) ➕ `apps/shared/color_parameter_controller.cpp` (+86 -0) ➕ `apps/shared/color_parameter_controller.h` (+44 -0) 📝 `apps/shared/function.cpp` (+4 -0) 📝 `apps/shared/function.h` (+2 -0) 📝 `apps/shared/list_parameter_controller.cpp` (+20 -19) 📝 `apps/shared/list_parameter_controller.h` (+3 -7) </details> ### 📄 Description This pull request is a reopen of Numworks#1741 with bug fixes : The colours translations are now independent of the Python app and the colour cell's cursor is now restored. This does think that have been said in #153. It also closes #151. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 13:16:43 +02: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/Upsilon#305
No description provided.