No certificate fingerprint showing on the UI
When starting up the application everything seems to work fine and it can communicate to the other lan-mouse instances on my lan... But I am not seeing the fingerprint on one of the clients so I cannot add it as an authorized source on the other clients.
Please let me know if there is any other information I can provide, or just a place I can get the fingerprint on disk.
lan-mouse --version
lan-mouse 0.10.0-nixpkgs
The encryption appears to be in main and not yet in a "stable" release, so is not packaged on nixos.
I'm using the latest built from source with this in my flake.nix
lan-mouse = {
url = "git+https://github.com/feschber/lan-mouse?ref=main&rev=e46fe60b3e24be83de38701faa99a4fbd9186f08";
inputs.nixpkgs.follows = "nixpkgs";
};
and adding inputs.lan-mouse.packages.${pkgs.system}.lan-mouse to home packages (passing flake inputs via specialArgs.inputs = inputs;)
Sorry I can't share my actual configuration; it's in a repository containing private data.
Morning - can confirm this. I just did a clean checkout on Ubuntu 24.04 ( default installation ). Same rev as @sjagoe.
` cargo build # All good
cargo package # Failed
error[E0432]: unresovled import 'lan_mouse_cli::CliArgs' -> src/config.rs:15.5 `
I still have the case where on one machine the share options are not offered. Not sure why. But at least in main branch on both machine a pem-file is generated correctly without having to set up a config.toml file.
Yes, the encryption feature is not released yet.
@fnchooft don't use cargo package afaik it locks the dependencies to their versions, which wont work since a lot has changed since the last release.