Nathan Shaaban
Nathan Shaaban
Development on hold, someone else is welcome to take over It's that time @1c3t3a , might want to make a branch. How servers are implemented informs discussion about what the...
0.3.X: - [ ] finalize socketio iter interface? or postpone until 0.4.0? - [ ] All public types implement Debug, Sync, Send - [ ] Data types implement Eq and...
Used to be a code path (where isFreeFormObject and something else) where we could end up with two `: None` `: None`'s. (See the added test for how to reproduce...
Helpful Quality of Life to reduce verbosity. Before PR: ```rust let apple_fruit = Fruit::Apple(Box::new(Apple { seeds: 5 })); ``` After PR additional option is added: ```rust let apple_fruit: Fruit =...
When the lazy_static feature "spin_no_std" is enabled, the bounds of Send is required This may happen if another dependency adds that feature, then cargo unifies the two dependency trees erroneously,...
Support using ARGOCD_AUTH_TOKEN to authenticate with argocd rather than using username/password Also moved kubectl requirement closer to the call-site (as it isn't needed if either the password or token are...
This may just be me (my window manager is weird) Reproduction steps: - Open Logos 10 v38.1.6 - Click on the Tools icon on the toolbar, then close it -...
Reproduction steps: - Launch Logos 10 (v36.1.0.6) with wine-devel 9.12 (or 9.16) - Open a biblical word study for "worship" (some words cause this crash, others don't). - Expand the...
Reproduction steps: - `./main.py -C --debug` - observer Logos launches in the background without any wine logs shown on the console Can reproduce on 6f084de324d7ea610a4563ecdb38354e81271c69 but not df7505b9e5012d76d31054e31f5868bbb88f63ec Ideally when...
Turned out to be rather easy due to all tls being handled by our dependencies. Don't love the _fallback-tls feature, however with it we can use cargo-all-features, which helps reduce...