William Casarin
William Casarin
On Sat, May 18, 2024 at 08:54:14AM GMT, kernelkind wrote: >@jb55 can I get a demonstration of how the side menu user accounts are >used? What is the purpose of...
chatgpt says: ``` use winit::platform::unix::WindowBuilderExtUnix; use winit::event_loop::EventLoop; use winit::window::WindowBuilder; fn main() { let event_loop = EventLoop::new(); let window = WindowBuilder::new() .with_title("Damus NoteDeck") .with_app_id("notedeck") // Set your app_id here .build(&event_loop) .unwrap();...
can you show the output of `RUST_LOG=debug cargo run`
I'm guessing this is related to - #42
can you comment and uncomment these lines and see if it helps? ``` eframe = { version = "0.27.2", default-features = false, features = [ "glow", "wgpu", "android-native-activity" ] }...
I have to do this on my nixos laptop with intel graphics, I haven't yet fixed - #42
very weird... must be a wayland issue? I have not tested with wayland.
On Wed, May 15, 2024 at 10:59:00PM GMT, hellodword wrote: >Still no luck on X11, in a new nixos vm, with the commit https://github.com/damus-io/notedeck/commit/0e0e5d0eaa74e17ce7dfa477969f05b5ac009d93: > >See: https://gist.github.com/hellodword/e368c8e07f4a661c4ed0281d117fc61d can you run...
On Thu, May 16, 2024 at 07:19:56PM GMT, hellodword wrote: >It seems that I've fixed it on Sway, I'll push the changes (wayland) to #57 awesome, thank you!