Compare commits

...
5 Commits
5 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env make
ANKISYNCD_NAME ?= Anki Sync Server
ANKISYNCD_VERSION ?= v2.3.0
ANKISYNCD_VERSION ?= v2.4.0
ANKISYNCD_DESCRIPTION ?= Self-hosted Anki Sync Server.
ENV ?= local
+7 -1
View File
@@ -37,6 +37,12 @@ It supports Python 3 and Anki 2.1.
- [Support for other database backends](#support-for-other-database-backends)
</details>
Known Issues
------------
TODO
Installing
----------
@@ -50,7 +56,7 @@ Installing
3. Create user:
$ ./ankisyncctl.py adduser <username>
$ python -m ankisyncd_cli adduser <username>
4. Setup a proxy to trans-write the requests (Optional) .
Ankisyncd currently support the header "Transfer-Encoding: chunked" used by Anki.
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "anki-sync-server"
version = "2.3.0"
version = "2.4.0"
description = "Self-hosted Anki Sync Server."
authors = ["Vikash Kothary <kothary.vikash@gmail.com>"]
packages = [
+1 -1
View File
@@ -15,7 +15,7 @@ if [[ "${GIT_BRANCH}" != "main" ]]; then
fi
## TODO: get package version from pyproject.toml
CURRENT_VERSION=v2.3.0
CURRENT_VERSION=${ANKISYNCD_VERSION}
## Create GitHub Release
git tag -a ${CURRENT_VERSION} -m "v${CURRENT_VERSION}"
+1 -1
View File
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
# TODO: Generate from or parse values from pyproject.toml.
setup(
name="anki-sync-server",
version="2.3.0",
version="2.4.0",
description="Self-hosted Anki Sync Server.",
author="Anki Community",
author_email="kothary.vikash+ankicommunity@gmail.com",