it blinks in the dock for a very long time (suggesting to start), then the light is permanently on (meaning: program is running), but it doesn't react and I never see a GUI.
It starts properly within seconds but with broken icons when I manually start `/Applications/Geany.app/Contents/MacOS/geany-bin`
Installed using the .dmg file from the official homepage.
Here is (I suppose) relevant log output:
```
> tail /var/log/system.log
Jul 25 13:39:51 wilde com.apple.xpc.launchd[1] (com.apple.quicklook[1633]): Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/1555
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.
Fixes #1555
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/1625
-- Commit Summary --
* Use non-symlinked VTE libraries on macOS
-- File Changes --
M src/vte.c (6)
-- Patch Links --
https://github.com/geany/geany/pull/1625.patchhttps://github.com/geany/geany/pull/1625.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/1625
Hi,
I'm want android plugin develop for android
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/615
@LarsGit223 the Workbench has the same bug as fixed for ProjectOrganizer in #605 (it looks like some of the ProjectOrganizer code was copied).
Interestingly, the change in 99dcc2344ebf23d40d5426035d0ae950b197cf14 is already in the Workbench plugin but the main change needs to be done here as well.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/607
Writing my first Hello World code which runs perfectly on Terminal, however, on geany upon pressing the execute button a terminal screen pops up with the title geany_run_script_XXXXXX.sh (XXXXXX is a variation of numbers and letters, each time different. Currently T7NX7Y) and remains blank with no code running.
My Build Commands are set to:
Compile -----> /usr/bin/python3 -m py_compile "%f"
Execute -----> /usr/bin/python3 "%f"
What is preventing geany from running my code? It works just fine when ran from Terminal.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/1624