From ae3e6077051b4e554efc49cf01d73b0781d5be25 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Tue, 9 May 2023 11:29:05 +0100 Subject: [PATCH] fix: depreacating thumbnail_index --- README.md | 2 +- example.orchestration.yaml | 1 - src/auto_archiver/utils/gsheet.py | 1 - src/auto_archiver/utils/gworksheet.py | 1 - 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index f3c6d15..03d513c 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ To check all available steps (which archivers, storages, databses, ...) exist ch The great thing is you configure all the workflow in your `orchestration.yaml` file which we advise you put into a `secrets/` folder and don't share it with others because it will contain passwords and other secrets. -The structure of orchestration file is split into 2 parts: `steps` (what **steps** to use) and `configs` (how those steps should behave), here's a simplification: +The structure of orchestration file is split into 2 parts: `steps` (what **steps** to use) and `configurations` (how those steps should behave), here's a simplification: ```yaml # orchestration.yaml content steps: diff --git a/example.orchestration.yaml b/example.orchestration.yaml index 7e9a52a..19082d8 100644 --- a/example.orchestration.yaml +++ b/example.orchestration.yaml @@ -45,7 +45,6 @@ configurations: archive: archive location date: archive date thumbnail: thumbnail - thumbnail_index: thumbnail index timestamp: upload timestamp title: upload title text: textual content diff --git a/src/auto_archiver/utils/gsheet.py b/src/auto_archiver/utils/gsheet.py index 336f5c1..0980d8f 100644 --- a/src/auto_archiver/utils/gsheet.py +++ b/src/auto_archiver/utils/gsheet.py @@ -30,7 +30,6 @@ class Gsheets(Step): 'archive': 'archive location', 'date': 'archive date', 'thumbnail': 'thumbnail', - 'thumbnail_index': 'thumbnail index', 'timestamp': 'upload timestamp', 'title': 'upload title', 'text': 'text content', diff --git a/src/auto_archiver/utils/gworksheet.py b/src/auto_archiver/utils/gworksheet.py index 7dbc774..0f8a271 100644 --- a/src/auto_archiver/utils/gworksheet.py +++ b/src/auto_archiver/utils/gworksheet.py @@ -15,7 +15,6 @@ class GWorksheet: 'archive': 'archive location', 'date': 'archive date', 'thumbnail': 'thumbnail', - 'thumbnail_index': 'thumbnail index', 'timestamp': 'upload timestamp', 'title': 'upload title', 'screenshot': 'screenshot',