Dima Krasner
Dima Krasner
build.yml only builds, it doesn't create a tag on success.
I bet the problem is missing or broken bison or flex and/or a gcc/glibc mismatch (let me guess: mix of Ubuntu and Debian packages). The build passes in a clean...
https://github.com/puppylinux-woof-CE/gtkdialog/blob/6e46ac6c9857d952c0ee9f1cbe3f5ac1fc9ffe89/src/signals.c#L1258 ``` #if HAVE_SYS_INOTIFY_H && GTK_CHECK_VERSION(3,0,0) return FALSE; #else return; #endif ```
Depends on `HAVE_SYS_INOTIFY_H && GTK_CHECK_VERSION(3,0,0)` - if true, it should return a boolean, otherwise there's no return value https://github.com/puppylinux-woof-CE/gtkdialog/blob/6e46ac6c9857d952c0ee9f1cbe3f5ac1fc9ffe89/src/signals.c#L1139-L1148
Just change it from int to size_t, the types are incorrect ``` - int tmp, result; + size_t tmp; + ssize_t result; ``` ``` from gtkdialog.c:32: /usr/include/bits/stdio.h:118:36: note: expected 'size_t...
> Next problems are different These functions return `bool` but only in some build configurations - just make them `return;` instead of `return TRUE;` when they're `void` instead of `bool`....
@edumerco I think this can be done by adding a fourth kind of posts: public posts that simply don't federate no matter what (never sent to other servers - even...
I started working on a new 'communities' feature (in https://github.com/dimkr/tootik/tree/hub), it allows the server admin to define special 'community' users that share posts (and replies) by following users with other...
> Seems great! It is not as a new publication level, but it could work for the same purpose. Exactly! > Do they work as regular users/accounts? For example, if...
I'm not sure if it's a good idea. Mentions use the punicode domain, right? If a@b looks at the profile of c@d and wants to mention c@d in a post,...