1. 18 Kas, 2018 1 kayıt (commit)
  2. 14 Kas, 2018 2 kayıt (commit)
  3. 13 Kas, 2018 1 kayıt (commit)
  4. 12 Kas, 2018 3 kayıt (commit)
    • Colomban Wendling's avatar
    • Colomban Wendling's avatar
    • Colomban Wendling's avatar
      tm: Cleanup include lookup · fc6a9bb9
      Colomban Wendling yazdı
      Don't use the files inode as the hash.  Although it looks like a good
      idea for de-duplicating links as well, it has several issues, including
      non-uniqueness of inodes across file systems.
      The way it was done hashing the inode but comparing the file name
      string pointers also made the hash mostly irrelevant, as it just stored
      filenames sharing the same inode in the same hash bucket but without
      actually doing any de-duplication, making the whole thing a convoluted
      way of converting to a list.
      
      Instead, hash and compare the filenames themselves, which, even though
      it doesn't handle links de-duplication, is better than the
      non-functional previous code.
      
      Also, directly build the list and only use the hash table as a way for
      checking for duplicates, which is both faster and gives a stable
      output.
      fc6a9bb9
  5. 20 Eki, 2018 2 kayıt (commit)
  6. 03 Eki, 2018 1 kayıt (commit)
  7. 02 Eki, 2018 1 kayıt (commit)
  8. 30 Eyl, 2018 1 kayıt (commit)
  9. 29 Eyl, 2018 1 kayıt (commit)
  10. 24 Eyl, 2018 1 kayıt (commit)
  11. 21 Eyl, 2018 1 kayıt (commit)
  12. 19 Eyl, 2018 1 kayıt (commit)
  13. 26 Agu, 2018 1 kayıt (commit)
  14. 20 Agu, 2018 1 kayıt (commit)
  15. 19 Agu, 2018 2 kayıt (commit)
  16. 04 Agu, 2018 1 kayıt (commit)
  17. 01 Agu, 2018 3 kayıt (commit)
  18. 25 Tem, 2018 1 kayıt (commit)
  19. 15 Tem, 2018 1 kayıt (commit)
  20. 06 Tem, 2018 1 kayıt (commit)
  21. 18 Haz, 2018 1 kayıt (commit)
  22. 15 Haz, 2018 1 kayıt (commit)
  23. 02 Haz, 2018 1 kayıt (commit)
  24. 26 May, 2018 1 kayıt (commit)
  25. 21 May, 2018 1 kayıt (commit)
  26. 17 May, 2018 1 kayıt (commit)
  27. 05 May, 2018 1 kayıt (commit)
    • FMuro's avatar
      Fix boldface and italics (#1837) · af158988
      FMuro yazdı
      Before, **boldface** or *italics* (also _italics_) would not generally show as that, definitely not with the default color scheme. After this change, they appear with the same color as normal text but with that typography, in all color schemes.
      af158988
  28. 25 Nis, 2018 1 kayıt (commit)
  29. 24 Nis, 2018 1 kayıt (commit)
    • Colomban Wendling's avatar
      Fix horizontal and page scroll on GTK3 · 604eac9f
      Colomban Wendling yazdı
      Our custom scroll handler for horizontal (Shift+Scroll) and page
      (Alt+Scroll) scroll didn't properly check the scroll direction and
      assume that if it's not down it's up.  This was mostly not a problem
      because the other types only were left and right scroll events, which
      are a lot less common.
      
      However, it became a lot more problematic with GTK 3.4 that introduced
      "smooth scrolling", and thus a new scroll type that can happen for
      events in any direction.  We then would scroll up (as we assume "not
      down" is up) regardless of the actual direction of the event.
      
      It's still not clear why we'd get smooth scroll events on X11 as no
      code I can find asks for it and we generally don't get those, but
      sometimes a Scintilla widget starts receiving them, leading to the bug.
      On Wayland on the other hand, Scintilla asks for smooth scroll events,
      so we need to have a fix for it in any case.
      604eac9f
  30. 23 Nis, 2018 1 kayıt (commit)
  31. 05 Nis, 2018 3 kayıt (commit)