From 0654812ae70d36a4a77e19999e1b0e2f6743306f Mon Sep 17 00:00:00 2001 From: mst Date: Tue, 11 Mar 2025 16:11:44 +0300 Subject: [PATCH] add update guide for 2.1.0 --- UPDATE.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/UPDATE.md b/UPDATE.md index 20c6b44..f141c64 100644 --- a/UPDATE.md +++ b/UPDATE.md @@ -1,5 +1,38 @@ # Updating +## 2.0.x -> 2.1.0 + +1. pull the update: `git pull` + +2. run `pip install -r requirements.txt` again + +3. make the following changes in your config.json file: + +```diff + ... + "ntfy": { + "enabled": false, + "host": "https://ntfy.sh", + "user": "", + "pass": "", + "topic": "" + }, ++ "crosspost": { ++ "fediverse": { ++ "enabled": false, ++ "instance": "", ++ "client": { ++ "id": "", ++ "secret": "" ++ }, ++ "token": "", ++ "visibility": "public", ++ "cw": "" ++ } ++ }, + ... +``` + ## 1.7.x -> 2.0.x ### prerequisites