You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 29, 2024. It is now read-only.
ExportDownloadedThreadAsHtmlUseCase: exports thread html, media, and thumbnails into .zip
ExportDownloadedThreadMediaUseCase: export thread media and thumbnails into folder
As part of the export process, I think it should include the thread json file which I think is fetched from ${siteName()}_${boardCode()}_${threadNo}.json. This will make it easier to access thread data with scripts
The text was updated successfully, but these errors were encountered:
@B13rg
Unfortunately, there is no prepared json because downloaded threads are stored in the database. You will have to create the json manually by iterating through the posts.
See
@B13rg
You should probably just copy the whole class, rename it to ExportDownloadedThreadAsJsonUseCase and then do the conversion. Then hook it up to the bottom panel (add a new button with an icon or something like that) of LocalArchiveController and that should be it.
Currently there are two export functions:
ExportDownloadedThreadAsHtmlUseCase
: exports thread html, media, and thumbnails into .zipExportDownloadedThreadMediaUseCase
: export thread media and thumbnails into folderAs part of the export process, I think it should include the thread json file which I think is fetched from
${siteName()}_${boardCode()}_${threadNo}.json
. This will make it easier to access thread data with scriptsThe text was updated successfully, but these errors were encountered: