jasonKercher

Results 11 issues of jasonKercher

This pull request puts a dent into os2 for Linux: - env - pipe - errors - process For process, I changed the API based on my best guess of...

## Context Running i386 arch in a container so this could be related to my setup. Tried on the latest master as well. ```none Odin: dev-2024-04:008d20a25 OS: Debian GNU/Linux trixie/sid,...

It looks like the routine where we put the rest of the arguments (>6) on the stack and pass their address in `ebp` wouldn't apply until `arg_count == 8` which...

This fixes #3529. I had to change the `target_triple` for the arm32 Linux target. 32-bit arm is weird with `target_triple`, so we may want to consider adding the ability to...

## Context Trying to build odin in arm32 Debian container... * Operating System & Odin Version: ```none Odin: dev-2024-05:9b55cb58 OS: Debian GNU/Linux trixie/sid, Linux 6.5.3-1-MANJARO CPU: ARM RAM: 1 MiB...

Currently, without Ada case support, you can get some awkward results from converting single words to multiple words. For example, running `:S/example/my_example/`: ```none example -> my_example // snake case internally...

I'm using a pretty standard display size, but I am also using some big canvases for the slide effect. I have the display settings increased so that I can see...

As the title says, if no effect callback is defined, the program will call through a NULL pointer due a missing NULL pointer check [here](https://github.com/Microchip-MPLAB-Harmony/gfx/blob/master/middleware/legato/canvas/templates/gfx_canvas.c#L687).

Some percent calculations fix. This fixes handles not tracking correctly if minimum value is not near 0.

From `setPressed` [legato_widget_button.c](https://github.com/Microchip-MPLAB-Harmony/gfx/blob/master/middleware/legato/library/src/gfx/legato/widget/button/legato_widget_button.c#L231): ```C // try to find a reason to redraw if(_this->pressedImage != NULL && _this->pressedImage != _this->releasedImage) { dirty = LE_TRUE; } if(_this->widget.style.borderType == LE_WIDGET_BORDER_BEVEL) { dirty =...