Skip to content
Snippets Groups Projects
  1. Nov 16, 2018
  2. Nov 14, 2018
  3. Nov 13, 2018
  4. Nov 12, 2018
  5. Nov 08, 2018
  6. Nov 07, 2018
  7. Nov 06, 2018
  8. Oct 31, 2018
    • Lioncash's avatar
      configure_system: Contrain profile usernames to 32 characters · a6830e61
      Lioncash authored
      Previously, we would let a user enter an unbounded name and then
      silently truncate away characters that went over the 32-character limit.
      This is kind of bad from the UX point of view, because we're essentially
      not doing what the user intended in certain scenarios.
      
      Instead, we clamp it to 32 characters and make that visually apparent in
      the dialog box to provide a name for a user.
      a6830e61
  9. Oct 30, 2018
  10. Oct 29, 2018
  11. Oct 28, 2018
  12. Oct 27, 2018
  13. Oct 25, 2018
  14. Oct 24, 2018
  15. Oct 23, 2018
  16. Oct 16, 2018
  17. Oct 07, 2018
  18. Oct 06, 2018
  19. Oct 04, 2018
    • Lioncash's avatar
      ui_settings: Place definition of the theme array within the cpp file · 30dfd891
      Lioncash authored
      Placing the array wholesale into the header places a copy of the whole
      array into every translation unit that uses the data, which is wasteful.
      Particularly given that this array is referenced from three different
      translation units.
      
      This also changes the array to contain pairs of const char*, rather than
      QString instances. This way, the string data is able to be fixed into
      the read-only segment of the program, as well as eliminate static
      constructors/heap allocation immediately on program start.
      30dfd891
  20. Oct 03, 2018
Loading