lemmy: 0.17.2 -> 0.17.3

This commit is contained in:
Marcus Ramberg 2023-06-06 14:00:05 +02:00 committed by Yt
parent cdbd14e4d7
commit 72a47ca349
4 changed files with 8 additions and 7 deletions

View file

@ -1,7 +1,7 @@
{
"name": "lemmy-ui",
"description": "An isomorphic UI for lemmy",
"version": "0.17.2",
"version": "0.17.3",
"author": "Dessalines <tyhou13@gmx.com>",
"license": "AGPL-3.0",
"scripts": {

View file

@ -1,7 +1,7 @@
{
"version": "0.17.2",
"serverSha256": "sha256-fkpMVm52XLyrk9RfzJpthT8fctIilawAIgfK+4TXHvU=",
"serverCargoSha256": "sha256-AC6EP612uaeGfqHbrHrz89h0tsNlMceEg6GxEsm1QMA=",
"uiSha256": "sha256-0Zhm6Jgc6rlN4c7ryRnR45+fZEdzQhuOXSwU8Wz0D5g=",
"version": "0.17.3",
"serverSha256": "sha256-BOYJQLxamzfHKzfbzJEL3BEwPAlJegc+BBi0eSxuTW4=",
"serverCargoSha256": "sha256-gYWcaSIPR8FXk6blzEnuN27v5fushwk4LJEl6g3W+W8=",
"uiSha256": "sha256-MsQjfX0hS1eZMQql7xWQZKAM2H4EzbbLKZcAw4mfiCE=",
"uiYarnDepsSha256": "sha256-aZAclSaFZJvuK+FpCBWboGaVEOEJTxq2jnWk0A6iAFw="
}

View file

@ -14,7 +14,8 @@ const latest_rev = $(curl -q https://api.github.com/repos/${owner}/${server_repo
jq -r '.tag_name')
const latest_version = $(echo $latest_rev)
const current_version = $(jq -r '.version' $directory/pin.json)
if (latest_version === $current_version) {
echo "latest version: $latest_version, current version: $current_version"
if ("$latest_version" === "$current_version") {
echo "lemmy is already up-to-date"
return 0
} else {

View file

@ -25657,7 +25657,7 @@ with pkgs;
};
lemmy-ui = callPackage ../servers/web-apps/lemmy/ui.nix {
nodejs = nodejs_14;
nodejs = nodejs_18;
};
lightgbm = callPackage ../development/libraries/lightgbm { };