treedome: 0.4.2 -> 0.4.3

This commit is contained in:
tengkuizdihar 2024-03-12 13:18:41 +07:00
parent e0bc5834a4
commit eec5cd646e
3 changed files with 286 additions and 225 deletions

File diff suppressed because it is too large Load diff

View file

@ -12,6 +12,7 @@
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts*' --write"
},
"dependencies": {
"@column-resizer/react": "^1.3.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/noto-sans": "^5.0.8",

View file

@ -19,12 +19,12 @@
let
pname = "treedome";
version = "0.4.2";
version = "0.4.3";
src = fetchgit {
url = "https://codeberg.org/solver-orgz/treedome";
rev = version;
hash = "sha256-Ypc5+HXmpyMjJDQCyxYwauozaf4HkjcbpDZNGVGPW7o=";
hash = "sha256-FBzRsBoV3wnt2nu5WMnaTnBNC51jG120E0Orm55KhBg=";
fetchLFS = true;
};
@ -34,7 +34,7 @@ let
offlineCache = fetchYarnDeps {
yarnLock = "${src}/yarn.lock";
hash = "sha256-nUOKN/0BTibRI66Do+iQUFy8NKkcaxFKr5AOtK3K13Q=";
hash = "sha256-CrD/n8z5fJKkBKEcvpRHJaqXBt1gbON7VsuLb2JGu1A=";
};
packageJSON = ./package.json;
@ -77,6 +77,10 @@ rustPlatform.buildRustPackage {
};
};
env = {
VERGEN_GIT_DESCRIBE = version;
};
preConfigure = ''
mkdir -p dist
cp -R ${frontend-build}/dist/** dist
@ -135,7 +139,7 @@ rustPlatform.buildRustPackage {
'';
meta = with lib; {
description = "A local-first, encrypted, note taking application with tree-like structures, all written and saved in markdown";
description = "A local-first, encrypted, note taking application organized in tree-like structures";
homepage = " https://codeberg.org/solver-orgz/treedome";
license = licenses.agpl3;
platforms = [ "x86_64-linux" ];