ftilde

Results 11 issues of ftilde

This PR changes the zathura viewer to not be a specialization of the xwin template and thus not require or use xdotool. The only functionality of the xwin template that...

Running the following example: ```rust use gluon::vm::{primitive, record, ExternModule}; use gluon::{import, new_vm, ThreadExt}; use gluon_codegen::{Getable, VmType}; #[derive(Getable, VmType)] #[gluon(vm_type = "shared_type.SharedType")] pub enum SharedType { One(Box), Zero, } fn fun(_t:...

bug

The following example panics with a stack overflow: ```rust #[macro_use] extern crate gluon_codegen; extern crate gluon; #[macro_use] extern crate serde_derive; #[derive(VmType, Deserialize)] #[gluon(vm_type = "foo")] enum Tree { Inner(Vec), Leaf,...

bug

This is very much a duplicate of #3, but it seems like you had problems consistently reproducing the problem in tests. I put together a proof of concept which (at...

REX registers were previously not allowed in memory addressing operands (i.e., Operand::Indirect*). To be honest, I'm not too experienced in x86 opcode encoding and I'm not to sure if this...

This fixes encoding of 'POP R8', 'PUSH R15', etc. Previously, no "rex byte" was generated when using REX registers with instructions that use `opcode_add` and the register code (>= 0x8)...

The currently released version (`0.1.0`) does not include #20 and can therefore not be used in embedded contexts. Would you mind releasing a new version on crates.io? That would be...

I've been debugging lockup issues with twim and async cancelation in my project (investigation still ongoing), started reading the embassy_nrf::twim code to understand my problem and came across the following...

As it turns out, exposing the capacity (#266) is not quite enough for my use case to restrict the size of the capacity (because I don't know when a new...

### First Check - [x] I added a very descriptive title here. - [x] This is not a Q&A. I am sure something is wrong with NiceGUI or its documentation....

bug
analysis
🟠 major