1. 17 Apr, 2016 1 commit
  2. 09 Apr, 2016 1 commit
  3. 05 Apr, 2016 2 commits
  4. 04 Apr, 2016 1 commit
  5. 19 Feb, 2016 1 commit
  6. 20 Jan, 2016 1 commit
  7. 12 Jan, 2016 1 commit
  8. 05 Jan, 2016 3 commits
  9. 02 Jan, 2016 1 commit
  10. 25 Dec, 2015 1 commit
  11. 18 Dec, 2015 1 commit
  12. 09 Dec, 2015 1 commit
  13. 08 Dec, 2015 1 commit
  14. 06 Dec, 2015 3 commits
  15. 03 Dec, 2015 1 commit
  16. 23 Nov, 2015 2 commits
    • Don Gagne's avatar
      Remove old reconnect on boot option · cac31024
      Don Gagne authored
      cac31024
    • Don Gagne's avatar
      Auto connect support · b9cb57ec
      Don Gagne authored
      - Pervasive change to automatically connect to known board types
      - Lots of additional changes along with this:
      - More exposure of objects/properties to Qml
      - Much restructuring in LinkManager and LinkManager clients
      b9cb57ec
  17. 19 Nov, 2015 3 commits
  18. 18 Nov, 2015 2 commits
    • Don Gagne's avatar
      Remove old reconnect on boot option · f099826e
      Don Gagne authored
      f099826e
    • Don Gagne's avatar
      Auto connect support · aaed8c2d
      Don Gagne authored
      - Pervasive change to automatically connect to known board types
      - Lots of additional changes along with this:
      - More exposure of objects/properties to Qml
      - Much restructuring in LinkManager and LinkManager clients
      aaed8c2d
  19. 12 Nov, 2015 2 commits
  20. 09 Nov, 2015 1 commit
  21. 07 Nov, 2015 2 commits
  22. 05 Nov, 2015 1 commit
  23. 30 Oct, 2015 2 commits
  24. 29 Oct, 2015 1 commit
  25. 27 Oct, 2015 4 commits
    • Tomaz Canabrava's avatar
      Remove removed Widget · a77773b6
      Tomaz Canabrava authored
      Signed-off-by: 's avatarTomaz Canabrava <tomaz.canabrava@intel.com>
      a77773b6
    • Tomaz Canabrava's avatar
      Fixed Style for switch · c051b59a
      Tomaz Canabrava authored
      Too used to Kernel Formatting Style.
      Signed-off-by: 's avatarTomaz Canabrava <tomaz.canabrava@intel.com>
      c051b59a
    • Tomaz Canabrava's avatar
      Fix opening DockWidget views · 0fcc718d
      Tomaz Canabrava authored
      The dock widget opening system had several issues,
      1 - it didn't deal with translations
      2 - it didn't deal with accelerator keys
      3 - it crashed if passed a invalid string (like when using KDE, happened
      for all options)
      
      This new way of using the views are slightly different:
      1 - no more string comparissons, use integer comparissons (much faster)
      2 - do not use a convoluted if/else - switch simplify.
      3 - do not create two different static variable strings for the same stuff
      4 - create an enum / an vector of strings (the enums bein an index of it)
      to acess the correct view.
      
      The overall code is clear than the old one, and faster.
      the only point where the code isn't as clear is on the call to
      showDockWidgetAction, since we passed a string that had the
      name of the Widget, but now the action only holds the index
      for the name in the string vector, I first need to get the
      correct string and send it.
      
      Tested here closing and reopening the app and verifying that
      the dock widgets that where left open are still open when
      reopening the application.
      Signed-off-by: 's avatarTomaz Canabrava <tomaz.canabrava@intel.com>
      0fcc718d
    • Tomaz Canabrava's avatar
      Do not use the text() of the Action to show a DockWidget · d02ad5d6
      Tomaz Canabrava authored
      The text can be translated, the text can have accelerator-special
      key, so the text is unrealiable. the only thing reliable is the data,
      wich stores a pointer to a fixed , unmutable, string.
      Signed-off-by: 's avatarTomaz Canabrava <tomaz.canabrava@intel.com>
      d02ad5d6