Pelotas, Brasil
Latino americano e escrevo código para pagar as contas
From Pedro Lucas Porcellis to ~sircmpwn/public-inbox
--- It would be nice if you could release a new version containing these fixes, so I could package downstream. main.ha | 10 +++++----- sysfs.ha | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/main.ha b/main.ha index 9e80e9a..0a59752 100644 --- a/main.ha +++ b/main.ha @@ -44,7 +44,7 @@ export fn main() void = { [message trimmed]
From Pedro Lucas Porcellis to ~bl4ckb0ne/kaiju-dev
--- This is, as discussed on IRC, a single patch upgrading to wlroots 0.16.1, will send a scene upgrade later on. meson.build | 2 +- seat.c | 22 ++++++++++++---------- server.c | 6 +++--- view.c | 28 +++++++++++++++------------- 4 files changed, 31 insertions(+), 27 deletions(-) diff --git a/meson.build b/meson.build index 8858520..c7a48f8 100644 --- a/meson.build [message trimmed]
From Pedro Lucas Porcellis to ~bl4ckb0ne/kaiju-dev
--- server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server.c b/server.c index 5d976f9..bcdaa51 100644 --- a/server.c +++ b/server.c @@ -18,7 +18,7 @@ struct kaiju_view *kaiju_server_view_at(struct kaiju_server *server, double lx, struct wlr_scene_node *node = wlr_scene_node_at(&server->scene->tree.node, lx, ly, sx, sy); if (node == NULL || node->type != WLR_SCENE_NODE_SURFACE) { if (node == NULL || node->type != WLR_SCENE_NODE_BUFFER) {[message trimmed]
From Pedro Lucas Porcellis to ~bl4ckb0ne/kaiju-dev
--- seat.c | 23 +++++++++++++---------- server.c | 4 ++-- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/seat.c b/seat.c index 369ea44..890ec3e 100644 --- a/seat.c +++ b/seat.c @@ -55,11 +55,14 @@ new_pointer(struct kaiju_seat *seat, struct kaiju_input_device *device) static void new_keyboard(struct kaiju_seat *seat, struct kaiju_input_device *device) { struct wlr_keyboard *keyboard = device->wlr_input_device->keyboard;[message trimmed]
From Pedro Lucas Porcellis to ~bl4ckb0ne/kaiju-dev
This patch replaces the custom renderer logic with wlroot's wlr_scene API --- render.c | 130 +++---------------------------------------------------- server.c | 55 +++++++++++++++-------- server.h | 2 + view.c | 35 +++++++++------ view.h | 1 + 5 files changed, 68 insertions(+), 155 deletions(-) diff --git a/render.c b/render.c index f868ca1..c6eaca7 100644 --- a/render.c +++ b/render.c [message trimmed]
From Pedro Lucas Porcellis to ~bl4ckb0ne/kaiju-dev
--- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 8858520..c7a48f8 100644 --- a/meson.build +++ b/meson.build @@ -45,7 +45,7 @@ add_project_arguments(cc.get_supported_arguments([ '-Wno-unused-parameter', ]), language: 'c') wlroots_version = ['>=0.15.0', '<0.16.0'] wlroots_version = ['>=0.16.1', '<0.17.0'][message trimmed]
From Pedro Lucas Porcellis to ~edwardloveall/scribe
--- Before: https://canto.eletrotupi.com/NZ7CV.png After: https://canto.eletrotupi.com/cDOsq.png src/css/app.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/css/app.css b/src/css/app.css index 3799385..06f3611 100644 --- a/src/css/app.css +++ b/src/css/app.css @@ -11,6 +11,10 @@ p.meta { width: 55%; } [message trimmed]
From Pedro Lucas Porcellis to ~sircmpwn/sr.ht-discuss
Hey Topy! On Thu Sep 8, 2022 at 4:55 PM -03, E-Topy wrote: > I was wondering if it could be possible to specify a 404 page, and add > it to the documentation if it exists. Yes you can, I think you should use the GraphQL API to do that, as you can see on the Site Entity: > "A published website" > type Site { > id: Int! > created: Time! >
From Pedro Lucas Porcellis to ~sircmpwn/sr.ht-discuss
On Tue Aug 2, 2022 at 3:56 PM -03, Csepp wrote: > Hi all! > > None of them are shallow clones as far as I'm aware. I did not find any > reference to shallowness inside .git, but I didn't look very deeply. > > git --version on my machine gives `git version 2.37.0`, the VM seems to > be one minor release behind. > > I'm pretty sure this is a bug somewhere on the CI side. Hmm, apparently there's an issue with go-git which probably is the root cause of this bug:
From Pedro Lucas Porcellis to ~sircmpwn/searchhut-devel
Hi Umar, nice work! I do have a small question, though:
> + page_size bigint NOT NULL,
Any particular reason to store the page size as a integer and not as a
float?