Thanks for the new release and I wish you and your family all the best!
Tesseract
Tesseract: An Advanced Lemmy Client
The goal of Tesseract is to address as many things in Lemmy that annoy me as I can. I also trawl various "is there any way to [blank] in Lemmy?" posts to get feature ideas. Both of those lists are pretty extensive, so Tesseract has accumulated quite a few features.
Github: https://github.com/asimons04/Tesseract/
Hosted / Demo Instance: https://tesseract.dubvee.org/
Note that the hosted instance defaults to Lemmy World, but it is unlocked to be able to connect to any Lemmy server.
Announcements, support, and guidance for the Tesseract UI.
All instance rules apply here. Beyond that, just be civil and constructive.
Sorry to hear about your family member's passing. Hope things go as well as they can. Thanks for all of your work on Tesseract, I've been enjoying using it! FWIW, I'm trying out nix (very much a beginner), and I got it running locally with this minimal flake.nix
:
{
description = "A Nix-flake-based Node.js development environment";
inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; };
outputs = { self, nixpkgs, ... }:
let
system = "x86_64-linux";
in {
devShells."${system}".default =
let pkgs = import nixpkgs { inherit system; };
in pkgs.mkShell {
packages = with pkgs; [ nodejs nodePackages.pnpm yarn ];
shellHook = ''
npm install
npm run build
npm run start
'';
};
};
}
I don't really do frontend stuff, so no idea if that's the best way to spin stuff up, but it's working ๐
EDIT: Also, looks like 1.4.31 hasn't been merged into main yet?
Thanks.
That's cool. I've never messed with Nix, and I'm so out of my wheelhouse even looking at that, but it's still cool.
looks like 1.4.31 hasn't been merged into main yet?
Yup. I knew I forgot something. Was just trying to get this bugfix release out and off my plate and forgot to merge. Will try to address that tomorrow if time allows.