From f8cd354a6b2412cda110f1a101d048f1a8f63cdf Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Mon, 17 Feb 2025 22:24:53 +0100 Subject: [PATCH 1/4] refact: change download links to https --- docs/archive.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/archive.md b/docs/archive.md index f7afd43dc..8a10943db 100644 --- a/docs/archive.md +++ b/docs/archive.md @@ -14,24 +14,24 @@ Latest stable version is **1.17.3**. Click on the desired icon below to download the package suitable for your platform: * [win32zip - https://www.boriel.com/files/zxb/zxbasic-1.17.3-win32.zip](http://www.boriel.com/files/zxb/zxbasic-1.17.3-win32.zip) + https://www.boriel.com/files/zxb/zxbasic-1.17.3-win32.zip](https://www.boriel.com/files/zxb/zxbasic-1.17.3-win32.zip)
Windows .exe zip package. No install needed, just uncompress it in a directory of your choice.
  * [macostargz - https://www.boriel.com/files/zxb/zxbasic-1.17.3-macos.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.17.3-macos.tar.gz) + https://www.boriel.com/files/zxb/zxbasic-1.17.3-macos.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.17.3-macos.tar.gz)
Mac OS x64 package. No install needed, just uncompress it in a directory of your choice (needs Python installed in your system).
  * [macostargz - https://www.boriel.com/files/zxb/zxbasic-1.17.3-linux64.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.17.3-linux64.tar.gz) + https://www.boriel.com/files/zxb/zxbasic-1.17.3-linux64.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.17.3-linux64.tar.gz)
Linux x64 binary package. No install needed, just uncompress it in a directory of your choice.
  * [zip - https://www.boriel.com/files/zxb/zxbasic-1.17.3.zip](http://www.boriel.com/files/zxb/zxbasic-1.17.3.zip) + https://www.boriel.com/files/zxb/zxbasic-1.17.3.zip](https://www.boriel.com/files/zxb/zxbasic-1.17.3.zip)
Windows, Linux, Mac zip package, with python scripts. Requires python installed in your system.
  * [tar.gz - https://www.boriel.com/files/zxb/zxbasic-1.17.3.tar.gz](http://www.boriel.com/files/zxb/zxbasic-1.17.3.tar.gz) + https://www.boriel.com/files/zxb/zxbasic-1.17.3.tar.gz](https://www.boriel.com/files/zxb/zxbasic-1.17.3.tar.gz)
Windows, Linux, Mac tar.gz package, with python scripts. Requires python installed in your system. ### What's new From 1b42a074c8f65ff5f86ac05655e155c14581148d Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Mon, 17 Feb 2025 22:46:10 +0100 Subject: [PATCH 2/4] Revert "refact: drop requirements.txt" This reverts commit eca4978202dda8344e318d8d389ac3120fe6fcb8. The file requirements.txt is used for mkdocs, not for building the project. --- requirements.txt | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 000000000..da73f4437 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,29 @@ +babel==2.16.0 +certifi==2024.8.30 +charset-normalizer==3.4.0 +click==8.1.7 +colorama==0.4.6 +ghp-import==2.1.0 +idna==3.10 +Jinja2==3.1.4 +Markdown==3.7 +MarkupSafe==3.0.2 +mergedeep==1.3.4 +mkdocs==1.6.1 +mkdocs-get-deps==0.2.0 +mkdocs-material==9.5.44 +mkdocs-material-extensions==1.3.1 +packaging==24.2 +paginate==0.5.7 +pathspec==0.12.1 +platformdirs==4.3.6 +Pygments==2.18.0 +pymdown-extensions==10.12 +python-dateutil==2.9.0.post0 +PyYAML==6.0.2 +pyyaml_env_tag==0.1 +regex==2024.11.6 +requests==2.32.3 +six==1.16.0 +urllib3==2.2.3 +watchdog==6.0.0 From e50dfc9b9d06154391ed41ffa402f38070b3417a Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Mon, 17 Feb 2025 22:49:04 +0100 Subject: [PATCH 3/4] refact: move requirements.txt into ./docs folder --- .readthedocs.yaml | 2 +- requirements.txt => docs/requirements.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) rename requirements.txt => docs/requirements.txt (89%) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 2f9fb707c..afe9f1939 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -13,7 +13,7 @@ build: python: install: - - requirements: ./requirements.txt + - requirements: ./docs/requirements.txt # Build documentation in the docs/ directory with mkdocs mkdocs: diff --git a/requirements.txt b/docs/requirements.txt similarity index 89% rename from requirements.txt rename to docs/requirements.txt index da73f4437..0ded2cf55 100644 --- a/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,5 @@ +# This file is used to build the documents, not the project. + babel==2.16.0 certifi==2024.8.30 charset-normalizer==3.4.0 From dafa48c667bdeb69560e53c3626051cb52c1ee5f Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Mon, 17 Feb 2025 22:53:45 +0100 Subject: [PATCH 4/4] feat: update project link --- docs/archive.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/archive.md b/docs/archive.md index 8a10943db..6a253d407 100644 --- a/docs/archive.md +++ b/docs/archive.md @@ -2,7 +2,7 @@ ## Source Code You can checkout the latest source code from the repository. -See [https://github.com/boriel/zxbasic](http://github.com/boriel/zxbasic) for instructions on how to clone the +See [https://github.com/boriel-basic/zxbasic](http://github.com/boriel/zxbasic) for instructions on how to clone the repository (git).