Gaël Écorchard

Results 131 comments of Gaël Écorchard

My changes were compatible with https://github.com/BehaviorTree/BehaviorTree.CPP/commit/b3171a5e11c4b15b40411cc863919b92f592f30d but not with the latest master of BehaviorTree.CPP. I'll try to figure out again what is wrong.

I wrote a fix that allows to compile again but Groot segfaults after click on "START" on the welcome dialog...

I just realized that the fix actually reverts the fist commit I wrote. I must have used an outdated version of BehaviorTree.CPP.

My changes were compatible with https://github.com/BehaviorTree/BehaviorTree.CPP/commit/b3171a5e11c4b15b40411cc863919b92f592f30d but not with the latest master of BehaviorTree.CPP. I'll try to figure out again what is wrong.

Thanks for the quick reaction! For sure I could have a look at it but I'd like to have a hint where I should start to render things quicker.

I just have a small patch for now: ```diff diff --git a/dmenu_extended/main.py b/dmenu_extended/main.py index 4fc41e5..10f564e 100755 --- a/dmenu_extended/main.py +++ b/dmenu_extended/main.py @@ -863,9 +863,18 @@ class dmenu(object): terminal = None for...

I have another more elegant version with `shlex.split`: ```diff diff --git a/dmenu_extended/main.py b/dmenu_extended/main.py index 4fc41e5..a4ff874 100755 --- a/dmenu_extended/main.py +++ b/dmenu_extended/main.py @@ -10,6 +10,7 @@ import codecs import locale import operator...

I wrote the [code](https://github.com/MarkHedleyJones/dmenu-extended/issues/108#issuecomment-638668478) that handles the double-quotes in the `.desktop` file but I don't know how to handle spaces in the `command` variable in the code of `dmenu-extended`. I'll...

By "handling spaces in the `command` variable" I mean "do the spaces have to be escaped and if yes how?"