From 0d670a09d5edf7514f50e1f27f68daa677dec6e0 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Wed, 14 Apr 2021 02:36:35 -0400 Subject: [PATCH 1/4] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5dbf97f8..e817d375 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,8 @@ You can set it up as a [command-line tool](#Quickstart), [web app](#Quickstart), The goal is to sleep soundly knowing the part of the internet you care about will be automatically preserved in durable, easily accessable formats for decades after it goes down. +*✨ Have spare CPU/disk/bandwidth and want to help the world? Check out our [Good Karma Kit](https://github.com/ArchiveBox/good-karma-kit)...* +


bookshelf graphic   logo   bookshelf graphic From 6811cb35e573ab6c9ed4b675783536a0d1a613e8 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Wed, 14 Apr 2021 02:37:46 -0400 Subject: [PATCH 2/4] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e817d375..e6d23597 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,6 @@ You can set it up as a [command-line tool](#Quickstart), [web app](#Quickstart), The goal is to sleep soundly knowing the part of the internet you care about will be automatically preserved in durable, easily accessable formats for decades after it goes down. -*✨ Have spare CPU/disk/bandwidth and want to help the world? Check out our [Good Karma Kit](https://github.com/ArchiveBox/good-karma-kit)...* -


bookshelf graphic   logo   bookshelf graphic @@ -932,4 +930,8 @@ This project is maintained mostly in +
+ +✨ Have spare CPU/disk/bandwidth and want to help the world? Check out our Good Karma Kit... +
From a09211993cbee833650f317ee1089a5e4c6efea8 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 13 Apr 2021 04:03:47 -0400 Subject: [PATCH 3/4] whoops --- archivebox/main.py | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/archivebox/main.py b/archivebox/main.py index 48a8f021..0107bac0 100644 --- a/archivebox/main.py +++ b/archivebox/main.py @@ -952,7 +952,7 @@ def setup(out_dir: Path=OUTPUT_DIR) -> None: ], capture_output=False, cwd=out_dir) run_shell([PYTHON_BINARY, '-m', 'playwright', 'install', 'chromium'], capture_output=False, cwd=out_dir) proc = run_shell([PYTHON_BINARY, '-c', 'from playwright.sync_api import sync_playwright; print(sync_playwright().start().chromium.executable_path)'], capture_output=True, text=True, cwd=out_dir) - NEW_CHROME_BINARY = proc.stdout.decode().strip() if isinstance(bytes, proc.stdout) else proc.stdout.strip() + NEW_CHROME_BINARY = proc.stdout.decode().strip() if isinstance(proc.stdout, bytes) else proc.stdout.strip() assert NEW_CHROME_BINARY and len(NEW_CHROME_BINARY), 'CHROME_BINARY must contain a path' config(f'CHROME_BINARY={NEW_CHROME_BINARY}', set=True, out_dir=out_dir) except BaseException as e: diff --git a/package.json b/package.json index 35d0b60e..ac6b40c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.6.0", + "version": "0.6.1", "description": "ArchiveBox: The self-hosted internet archive", "author": "Nick Sweeting ", "repository": "github:ArchiveBox/ArchiveBox", From b45b3fa21c27b01beff9c678931128eb758aee11 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Wed, 14 Apr 2021 03:33:04 -0400 Subject: [PATCH 4/4] bump version number --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ac6b40c3..b3cc70c3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "archivebox", - "version": "0.6.1", + "version": "0.6.2", "description": "ArchiveBox: The self-hosted internet archive", "author": "Nick Sweeting ", "repository": "github:ArchiveBox/ArchiveBox",