1. 09 Nis, 2019 1 kayıt (commit)
  2. 30 Mar, 2019 1 kayıt (commit)
  3. 27 Mar, 2019 1 kayıt (commit)
  4. 26 Mar, 2019 1 kayıt (commit)
  5. 23 Mar, 2019 1 kayıt (commit)
  6. 20 Mar, 2019 1 kayıt (commit)
    • Miklos Vajna's avatar
      sw: make ODT export of paragraph auto-styles deterministic · eb128a7d
      Miklos Vajna yazdı
      If a complex enough document is loaded into Writer and saved as ODT,
      then the content.xml's automatic paragraph styles (P<num>) are
      re-ordered on each save, which leads to unnecessary noise.
      
      The actual random order is created during import by the time we convert
      direct formatting (e.g. from HTML import) to autostyles, as
      StylePoolImpl::maRoot stores autostyles in a map that orders autostyle
      parents based on their pointer address.
      
      This has benefits like automatic ordering of item sets and fast
      comparison, so don't change that, but extend the svl API to also track
      the name of those parents.
      
      This way by the time StylePool::createIterator() would iterate over
      those autostyles, it can order the parents by their name, so two
      import->export runs will result in the same autostyle ordering.
      
      (This appears to be the only indeterminism in content.xml for a test
      HTML input, while meta.xml and settings.xml still changes all the time.)
      
      Change-Id: I1cfcae2c664a5c5c3dee48be733046979c1593ed
      Reviewed-on: https://gerrit.libreoffice.org/69469Reviewed-by: 's avatarMiklos Vajna <vmiklos@collabora.com>
      Tested-by: Jenkins
      eb128a7d
  7. 13 Mar, 2019 1 kayıt (commit)
  8. 28 Şub, 2019 1 kayıt (commit)
  9. 22 Şub, 2019 1 kayıt (commit)
  10. 12 Ock, 2019 1 kayıt (commit)
  11. 11 Ara, 2018 1 kayıt (commit)
  12. 07 Ara, 2018 1 kayıt (commit)
    • Stephan Bergmann's avatar
      HAVE_CXX14_CONSTEXPR is always true now · 7d928d8c
      Stephan Bergmann yazdı
      ...but for safety, leave the configure.ac check in for some longer.
      
      o3tl::array_view::max_size (include/o3tl/array_view.hxx) and
      o3tl::basic_string_view::max_size (include/o3tl/string_view.hxx) started to
      produce loplugin:staticmethods warnings, which I silenced by /not/ making the
      functions static.  Those classes are meant to be temporary drop-in replacements
      for standard classes (std::span slated for C++20, prev. std::array_view; and
      std::basic_string_view, resp.), so should have the same behavior as their
      standard counterparts (and making the functions static would likely cause
      loplugin:staticaccess warnings at call sites).
      
      Change-Id: If21674dbf02886f453ca447544e37b184df5a25e
      Reviewed-on: https://gerrit.libreoffice.org/64768
      Tested-by: Jenkins
      Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
      7d928d8c
  13. 05 Ara, 2018 1 kayıt (commit)
  14. 26 Kas, 2018 1 kayıt (commit)
  15. 17 Kas, 2018 1 kayıt (commit)
  16. 16 Kas, 2018 1 kayıt (commit)
  17. 14 Kas, 2018 1 kayıt (commit)
  18. 06 Kas, 2018 1 kayıt (commit)
  19. 01 Kas, 2018 2 kayıt (commit)
  20. 30 Eki, 2018 1 kayıt (commit)
  21. 26 Eki, 2018 1 kayıt (commit)
  22. 25 Eki, 2018 1 kayıt (commit)
  23. 24 Eki, 2018 1 kayıt (commit)
  24. 09 Eki, 2018 1 kayıt (commit)
  25. 06 Eki, 2018 1 kayıt (commit)
  26. 03 Eki, 2018 1 kayıt (commit)
  27. 02 Eki, 2018 1 kayıt (commit)
  28. 01 Eki, 2018 4 kayıt (commit)
  29. 27 Eyl, 2018 1 kayıt (commit)
  30. 19 Eyl, 2018 1 kayıt (commit)
  31. 18 Eyl, 2018 2 kayıt (commit)
  32. 12 Eyl, 2018 1 kayıt (commit)
  33. 11 Eyl, 2018 1 kayıt (commit)
  34. 04 Eyl, 2018 1 kayıt (commit)
    • Paul Trojahn's avatar
      tdf#118967 Batch all a11y notifications · 6b669c9d
      Paul Trojahn yazdı
      Currently all a11y notifications get send out immediately, which often
      ends up formatting the document before it is ready. With the current
      EnterBlockNotifications()/LeaveBlockNotifications() system it is difficult
      to find all places that need blocking and any change in the a11y code
      might require additional blocking in unpredictable places. By queueing
      all notifications by default and only sending them out when the document
      is ready, we can make sure that it can't be corrupted.
      
      Change-Id: I9599c7b57eb5b8f8f0575de57fcc8bab171f78ff
      Reviewed-on: https://gerrit.libreoffice.org/58703
      Tested-by: Jenkins
      Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
      6b669c9d
  35. 31 Agu, 2018 1 kayıt (commit)