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