From a9a2bb56468395a22fd76a6a527e09b01ea78267 Mon Sep 17 00:00:00 2001 From: Vikash Kothary <4839435+VikashKothary@users.noreply.github.com> Date: Sun, 26 Mar 2023 11:02:32 +0100 Subject: [PATCH] docs: Add acknowledgements section Resolves https://github.com/ankicommunity/anki-sync-server/issues/161 --- README.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4c236f1..b43ffff 100644 --- a/README.md +++ b/README.md @@ -31,15 +31,10 @@ Linux and macOS) which can sync to a web version (AnkiWeb) and mobile versions for Android and iOS. This is a personal Anki server, which you can sync against instead of -AnkiWeb. It was originally developed by [David Snopek](https://github.com/dsnopek) -to support the flashcard functionality on Bibliobird, a web application for -language learning. - -This version is a fork of [jdoe0/ankisyncd](https://github.com/jdoe0/ankisyncd). -It supports Python 3 and Anki 2.1. +AnkiWeb. [Anki]: https://apps.ankiweb.net/ -[dsnopek's Anki Sync Server]: https://github.com/dsnopek/anki-sync-server +
Contents @@ -254,3 +249,11 @@ sqlite3 is used by default for user data, authentication and session persistence persistence requirements (the media DB and files are being worked on). All that is required is to extend one of the existing manager classes and then reference those classes in the config file. See ankisyncd.conf for example config. + +## Acknowledgment + +- This server was originally developed by [David Snopek](https://github.com/dsnopek) +to support the flashcard functionality on Bibliobird, a web application for +language learning. +- It was then forked by `jdoe0` to add supports Python 3 and Anki 2.1. +- It was then forked by [tsudoko](https://github.com/tsudoko) which was the base for this repo.