1. 17 Tem, 2017 1 kayıt (commit)
  2. 16 Tem, 2017 2 kayıt (commit)
  3. 15 Tem, 2017 2 kayıt (commit)
  4. 11 Tem, 2017 2 kayıt (commit)
  5. 08 Tem, 2017 1 kayıt (commit)
  6. 02 Tem, 2017 2 kayıt (commit)
  7. 27 Haz, 2017 1 kayıt (commit)
  8. 25 Haz, 2017 1 kayıt (commit)
  9. 23 Haz, 2017 1 kayıt (commit)
  10. 25 May, 2017 1 kayıt (commit)
  11. 02 May, 2017 1 kayıt (commit)
  12. 01 May, 2017 1 kayıt (commit)
  13. 29 Nis, 2017 1 kayıt (commit)
  14. 25 Nis, 2017 1 kayıt (commit)
    • Vasiliy Faronov's avatar
      Update HACKING (#1479) · dbcf4560
      Vasiliy Faronov yazdı
      * Update obsolete references to GLib 2.27/28 in HACKING
      
      Fixes #1476.
      
      * Replace obsolete gcc -W option with -Wextra in HACKING
      
      According to gcc --help=warnings, -W is a deprecated option
      and -Wextra should be used instead.
      dbcf4560
  15. 23 Nis, 2017 1 kayıt (commit)
  16. 20 Nis, 2017 1 kayıt (commit)
    • Colomban Wendling's avatar
      C: Fix line continuation handling (#1370) · 6f692112
      Colomban Wendling yazdı
      Escaped newlines were properly handled inside preprocessor directives,
      but not otherwise.
      
      Seeing `continue` here suggests the code used to work a long time ago
      but some loop refactoring broke it, as now it would not stay in the
      loop unless in a preprocessor directive.  Or maybe it only ever worked
      for preprocessor directives, and the `continue` was superfluous?
      
      Fixes #1370.
      6f692112
  17. 15 Nis, 2017 1 kayıt (commit)
    • Jiří Techet's avatar
      Fix crash when plugin_set_key_group() is called several times by plugins (#1426) · 27070062
      Jiří Techet yazdı
      When plugin calls plugin_set_key_group() several times for the same
      group (when creating keybindings dynamically and needs to reset them),
      it crashes with the current code the second time it gets called.
      
      The reason is that group->plugin_keys is an array into which entries of
      group->key_items point and when calling
      
      g_ptr_array_set_size(group->key_items, 0);
      
      it calls free_key_binding() for every item - when these items are
      deallocated by g_free(group->plugin_keys) previously, calls of
      free_key_binding() reference an invalid memory.
      
      Just first resizing group->key_items (and calling free_key_binding() for
      its items) and freeing group->plugin_keys afterwards fixes the problem.
      27070062
  18. 12 Nis, 2017 1 kayıt (commit)
  19. 27 Mar, 2017 1 kayıt (commit)
  20. 22 Mar, 2017 2 kayıt (commit)
  21. 19 Mar, 2017 5 kayıt (commit)
  22. 18 Mar, 2017 7 kayıt (commit)
  23. 17 Mar, 2017 3 kayıt (commit)