Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-29 | Support icons in InfoFields | Leandro Pereira | |
2019-06-29 | Allow more dynamic InfoGroup creation | Leandro Pereira | |
2018-05-18 | Fix compiler warnings generated with GCC 8 | Leandro Pereira | |
2017-08-21 | Remove duplicate group headers in computer summary | Burt P | |
Signed-off-by: Burt P <pburt0@gmail.com> | |||
2017-08-15 | Add info_field_printf() to reduce some sturct Info field boilerplate | Leandro Pereira | |
2017-08-14 | Use GString to flatten struct Info | Leandro Pereira | |
While info_flatten() is just a scaffold, use GString to reduce the amount of temporary heap memory allocations. | |||
2017-08-14 | Begin getting rid of callbacks returning strings | Leandro Pereira | |
Strings were never a good choice to begin with. However, with the efforts to improve translatability, they became even worse. This is an attempt to clean up the current mess and provide a more structured way for modules to commmunicate with the shell. The Computer module has been partially converted and changes will be provided next. It's partially converted since some of its information is still stored as strings. The Shell still only understands strings; that's why the structured data is converted to a string the way it is. Once all modules are converted, the Shell can be modified to handle struct Info directly without having to parse the .ini-like strings. |