1. 14 Mar, 2018 1 commit
  2. 19 Feb, 2018 2 commits
  3. 23 Jan, 2018 1 commit
  4. 20 Dec, 2017 1 commit
  5. 20 Nov, 2017 1 commit
  6. 13 Nov, 2017 1 commit
  7. 03 Nov, 2017 2 commits
  8. 02 Nov, 2017 1 commit
  9. 12 Oct, 2017 4 commits
  10. 10 Oct, 2017 2 commits
  11. 26 Sep, 2017 1 commit
  12. 25 Sep, 2017 1 commit
  13. 24 Sep, 2017 1 commit
  14. 22 May, 2017 1 commit
    • Craig Watson's avatar
      Allow cut-and-pasting items between pages · 457aef5b
      Craig Watson authored
      Previously, items such as audio, video, and widget items could not be
      cut and pasted because when the page was saved, any item that had been
      deleted was permanently removed (including its source file, in the case
      of these mulitmedia items).
      
      This commit prevents the deletion any item in the undoStack
      (i.e, items that have been deleted) when the document is persisted,
      meaning the source file is still available when pasting the item on
      another page (or document).
      
      Note that this can lead to cases where the source file is kept in the
      document even when no item is present. This should be a relatively rare
      occurence, however.
      457aef5b
  15. 23 Apr, 2017 1 commit
    • Craig Watson's avatar
      Fix for copy/paste issues · fc81e27b
      Craig Watson authored
      This fixes two related issues:
      1) When taking a partial screenshot of the desktop, then copying it
      (Ctrl-C) and pasting it in a new document, it was not saved
      2) When a page of one document was copied into another (in document
      mode, by dragging the page onto another document), media files
      disappeared from the new page.
      fc81e27b
  16. 11 Mar, 2017 1 commit
  17. 06 Nov, 2016 1 commit
  18. 09 Oct, 2016 1 commit
  19. 06 Sep, 2016 1 commit
  20. 03 Sep, 2016 1 commit
  21. 02 Sep, 2016 1 commit
    • Craig Watson's avatar
      User-resizable background grid: · 081dbee1
      Craig Watson authored
      - The background selection palette now includes a slider to change the
      size of the background grid. Default min/max values are 16 and 64px,
      defined in UBSettings. Grid resizes dynamically as the slider is moved.
      - Measuring tools' (ruler, triangle) markers follow grid size: 1 square
      of the background grid corresponds to 1cm
      - Grid size can be different for each page of a document
      - Grid size is saved in the .svg
      - Documents with a background grid but no specified grid size follow the
      default size defined in UBSettings.
      
      Previously, grid size was calculated based on DPI, which can vary from
      one OS, computer or display to the next. This new setting allows
      documents to be migrated from one machine to another with no unexpected
      changes in grid size happening. It also makes it easy to correct any
      problems importing old documents (whose grid size might be smaller or
      larger than expected when imported on a new version of OpenBoard).
      081dbee1
  22. 13 May, 2016 1 commit
  23. 06 May, 2016 1 commit
  24. 26 Apr, 2016 1 commit
  25. 20 Apr, 2016 1 commit
  26. 04 Apr, 2016 2 commits
  27. 11 Mar, 2016 1 commit
  28. 07 Mar, 2016 1 commit
  29. 02 Mar, 2016 1 commit
    • Craig Watson's avatar
      New settings queue for UBSettings · 599f925d
      Craig Watson authored
      This should cut down on disk access. Instead of loading and saving
      settings directly through QSettings instances (which occasionally
      read and write to their associated file; but there is no way to control
      how often this happens), they are now added to a QHash for in-app
      access.
      
      Save() and load() functions were also added to enable manually saving
      the settings, and loading all settings from file, respectively.
      599f925d
  30. 01 Mar, 2016 1 commit
  31. 21 Jan, 2016 1 commit
  32. 14 Jan, 2016 2 commits
    • Craig Watson's avatar
      Code clean-up · da5378a6
      Craig Watson authored
      Mostly, removal of old code that had been commented out instead of
      removed
      da5378a6
    • Craig Watson's avatar
      Clean-up of on-screen keyboard code · 5b7cf175
      Craig Watson authored
      - Moved all platform-specific code to UBPlatformUtils
      - For now, removed support (on Linux) for checking whether onboard is 
      running when OpenBoard is started (it wasn't working anyway, but it needs a
      cleaner solution for all 3 platforms)
      5b7cf175