1. 15 Eki, 2017 1 kayıt (commit)
  2. 12 Eki, 2017 3 kayıt (commit)
  3. 07 Eki, 2017 1 kayıt (commit)
    • Jiří Techet's avatar
      Use non-symlinked VTE libraries on macOS (#1625) · 3fb94c23
      Jiří Techet yazdı
      * Try non-symlinked VTE libraries on macOS before the symlinked ones
      
      Plugins using VTE such as multiterm or debugger are linked against the
      non-symlinked version of the library like libvte.9.dylib and not
      libvte.dylib. When a bundle is created, all symlinks are replaced by
      a copy of the symlinked file. This means there are both libvte.dylib
      and libvte.9.dylib in the bundle both containing the same code. When
      Geany loads libvte.dylib and plugins load libvte.9.dylib the same code
      gets loaded twice and when the same type gets registered by GTK, it fails
      and the whole application freezes.
      
      This problem doesn't exist on linux or when running from the command line
      on macOS because the operating system detects it's the same library
      because of the symlink and it's loaded only once.
      
      Loading the same library as the one used by plugins fixes the issue with
      macOS bundle. The original symlinked name is still used as a fallback.
      
      The patch also adds #ifdef __APPLE__ around the Apple-specific library
      names which also prevents unnecessary retries on other platforms. Loading
      *.so libraries is still kept as a fallback on Apple as these are legal too
      and could in theory be used on OS X as well.
      
      * Try loading newer VTE versions before older ones on GTK 2
      3fb94c23
  4. 06 Eki, 2017 1 kayıt (commit)
  5. 03 Eki, 2017 1 kayıt (commit)
  6. 18 Eyl, 2017 1 kayıt (commit)
  7. 12 Eyl, 2017 1 kayıt (commit)
  8. 02 Eyl, 2017 1 kayıt (commit)
  9. 01 Eyl, 2017 1 kayıt (commit)
  10. 28 Agu, 2017 1 kayıt (commit)
  11. 21 Agu, 2017 1 kayıt (commit)
  12. 20 Agu, 2017 1 kayıt (commit)
  13. 08 Agu, 2017 1 kayıt (commit)
  14. 04 Agu, 2017 22 kayıt (commit)
  15. 29 Tem, 2017 1 kayıt (commit)
  16. 28 Tem, 2017 1 kayıt (commit)
  17. 26 Tem, 2017 1 kayıt (commit)
    • Thomas Martitz's avatar
      editor: fix incorrect variable reference · 18d52452
      Thomas Martitz yazdı
      The variable used for setting the cursor isn't used anymore and
      was used uninitialized. It's simply deleted now and the correct var is used.
      
      This was only a problem if editor_insert_text_block() was used directly,
      the snippet code path doesn't reach to it.
      18d52452