lan-mouse icon indicating copy to clipboard operation
lan-mouse copied to clipboard

No certificate fingerprint showing on the UI

Open mbinns opened this issue 8 months ago • 3 comments

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.

Image

lan-mouse --version
lan-mouse 0.10.0-nixpkgs

mbinns avatar May 02 '25 20:05 mbinns

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.

sjagoe avatar Sep 23 '25 06:09 sjagoe

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.

fnchooft avatar Oct 03 '25 13:10 fnchooft

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.

feschber avatar Oct 29 '25 11:10 feschber