Compare commits

..

3 Commits

Author SHA1 Message Date
65b2ddc148 Full v12 migration 2024-10-13 11:22:50 +02:00
e8a0d86c21 Full v12 migration 2024-10-13 10:29:35 +02:00
313bb3e168 Full v12 migration 2024-10-13 10:27:37 +02:00
39 changed files with 122 additions and 88 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -32,6 +32,6 @@ class WFRP4eNightOfBloodInitialization extends FormApplication {
catch (err) { catch (err) {
html = `<p>Night of Blood is the classic Warhammer Fantasy Roleplay scenario, and an excellent introduction to the game. The scenario was written in 1987 by Jim Bambra and has been republished officially and unofficially for 1st Edition, 2nd Edition and 4th Edition.</p>`; html = `<p>Night of Blood is the classic Warhammer Fantasy Roleplay scenario, and an excellent introduction to the game. The scenario was written in 1987 by Jim Bambra and has been republished officially and unofficially for 1st Edition, 2nd Edition and 4th Edition.</p>`;
} }
new game.wfrp4e.apps.ModuleInitializer("wfrp4e-night-of-blood", "WFRP4e Night of Blood", html).render(true); new WarhammerModuleInitializer("wfrp4e-night-of-blood", "WFRP4e Night of Blood", html).render(true);
} }
} }

View File

@ -1,7 +1,7 @@
{ {
"title": "Night of Blood (WFRP 4e)", "title": "Night of Blood (WFRP 4e)",
"description": "The classic Warhammer Fantasy Roleplay adventure, perfect for introducing new players. Now updated to include multi-level scenes", "description": "The classic Warhammer Fantasy Roleplay adventure, perfect for introducing new players. Now updated to include multi-level scenes",
"version": "7.0.0", "version": "8.0.0",
"author": "Stuart Kerrigan", "author": "Stuart Kerrigan",
"esmodules": [], "esmodules": [],
"scripts": [ "scripts": [
@ -25,26 +25,6 @@
"id": "lib-wrapper", "id": "lib-wrapper",
"type": "module" "type": "module"
}, },
{
"id": "betterroofs",
"type": "module"
},
{
"id": "wall-height",
"type": "module"
},
{
"id": "levels",
"type": "module"
},
{
"id": "token-attacher",
"type": "module"
},
{
"id": "ambientdoors",
"type": "module"
},
{ {
"id": "tokenmagic", "id": "tokenmagic",
"type": "module" "type": "module"
@ -58,31 +38,59 @@
"label": "Night of Blood Actors", "label": "Night of Blood Actors",
"type": "Actor", "type": "Actor",
"name": "NightOfBloodActors", "name": "NightOfBloodActors",
"path": "./packs/night-of-blood-actors.db", "path": "./packs/night-of-blood-actors",
"package": "wfrp4e-night-of-blood" "package": "wfrp4e-night-of-blood",
"ownership": {
"PLAYER": "NONE",
"ASSISTANT": "OWNER"
}
}, },
{ {
"label": "Night of Blood Scenes", "label": "Night of Blood Scenes",
"type": "Scene", "type": "Scene",
"name": "NightOfBloodScenes", "name": "NightOfBloodScenes",
"path": "./packs/night-of-blood-scenes.db", "path": "./packs/night-of-blood-scenes",
"package": "wfrp4e-night-of-blood" "package": "wfrp4e-night-of-blood",
"ownership": {
"PLAYER": "NONE",
"ASSISTANT": "OWNER"
}
}, },
{ {
"label": "Night of Blood Journal Entries", "label": "Night of Blood Journal Entries",
"name": "NightOfBloodJournal", "name": "NightOfBloodJournal",
"path": "./packs/night-of-blood-journal.db", "path": "./packs/night-of-blood-journal",
"type": "JournalEntry", "type": "JournalEntry",
"package": "wfrp4e-night-of-blood" "package": "wfrp4e-night-of-blood",
"ownership": {
"PLAYER": "NONE",
"ASSISTANT": "OWNER"
}
}, },
{ {
"name": "NightOfBloodSFX", "name": "NightOfBloodSFX",
"label": "Night of Blood SFX", "label": "Night of Blood SFX",
"path": "./packs/night-of-blood-sfx.db", "path": "./packs/night-of-blood-sfx",
"type": "Playlist", "type": "Playlist",
"ownership": {
"PLAYER": "NONE",
"ASSISTANT": "OWNER"
},
"package": "wfrp4e-night-of-blood" "package": "wfrp4e-night-of-blood"
} }
], ],
"packFolders": [
{
"name": "Night of Blood",
"sorting": "m",
"packs": [
"NightOfBloodActors",
"NightOfBloodScenes",
"NightOfBloodJournal",
"NightOfBloodSFX"
]
}
],
"flags": { "flags": {
"initializationPacks": ["wfrp4e-night-of-blood.NightOfBloodActors", "wfrp4e-night-of-blood.NightOfBloodScenes", "wfrp4e-night-of-blood.NightOfBloodJournal"], "initializationPacks": ["wfrp4e-night-of-blood.NightOfBloodActors", "wfrp4e-night-of-blood.NightOfBloodScenes", "wfrp4e-night-of-blood.NightOfBloodJournal"],
"folder": { "folder": {
@ -95,10 +103,10 @@
], ],
"id": "wfrp4e-night-of-blood", "id": "wfrp4e-night-of-blood",
"compatibility": { "compatibility": {
"minimum": "11", "minimum": "12",
"verified": "11" "verified": "12"
}, },
"manifest": "https://www.uberwald.me/gitea/public/WFRP-Night-of-Blood-4e-FVTT/raw/master/module.json", "manifest": "https://www.uberwald.me/gitea/public/WFRP-Night-of-Blood-4e-FVTT/raw/master/module.json",
"download": "https://www.uberwald.me/gitea/public/WFRP-Night-of-Blood-4e-FVTT/archive/wfrp4-night-of-blood-v7.0.0.zip", "download": "https://www.uberwald.me/gitea/public/WFRP-Night-of-Blood-4e-FVTT/archive/wfrp4-night-of-blood-v8.0.0.zip",
"url": "https://github.com/CStuartEKerrigan/WFRP-Night-of-Blood-4e-FVTT/" "url": "https://github.com/CStuartEKerrigan/WFRP-Night-of-Blood-4e-FVTT/"
} }

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000006 MANIFEST-000134

View File

@ -1,8 +1,8 @@
2024/02/21-20:37:10.060593 7fe93aa006c0 Recovering log #4 2024/10/13-10:28:10.178286 7f6286a006c0 Recovering log #131
2024/02/21-20:37:10.116671 7fe93aa006c0 Delete type=3 #2 2024/10/13-10:28:10.189663 7f6286a006c0 Delete type=3 #129
2024/02/21-20:37:10.116721 7fe93aa006c0 Delete type=0 #4 2024/10/13-10:28:10.189770 7f6286a006c0 Delete type=0 #131
2024/02/21-20:40:18.382429 7fe9336006c0 Level-0 table #9: started 2024/10/13-10:29:28.683152 7f62856006c0 Level-0 table #137: started
2024/02/21-20:40:18.382466 7fe9336006c0 Level-0 table #9: 0 bytes OK 2024/10/13-10:29:28.683219 7f62856006c0 Level-0 table #137: 0 bytes OK
2024/02/21-20:40:18.408232 7fe9336006c0 Delete type=0 #7 2024/10/13-10:29:28.689891 7f62856006c0 Delete type=0 #135
2024/02/21-20:40:18.408447 7fe9336006c0 Manual compaction at level-0 from '!actors!0c2PJoezfrYDnial' @ 72057594037927935 : 1 .. '!actors.items.effects!xsFW1owziB9narOa.xoQMNgLhXSetGxPs.CAcGBn8sq62mVUxJ' @ 0 : 0; will stop at (end) 2024/10/13-10:29:28.690229 7f62856006c0 Manual compaction at level-0 from '!actors!0c2PJoezfrYDnial' @ 72057594037927935 : 1 .. '!actors.items.effects!xsFW1owziB9narOa.xoQMNgLhXSetGxPs.CAcGBn8sq62mVUxJ' @ 0 : 0; will stop at (end)
2024/02/21-20:40:18.408509 7fe9336006c0 Manual compaction at level-1 from '!actors!0c2PJoezfrYDnial' @ 72057594037927935 : 1 .. '!actors.items.effects!xsFW1owziB9narOa.xoQMNgLhXSetGxPs.CAcGBn8sq62mVUxJ' @ 0 : 0; will stop at (end) 2024/10/13-10:29:28.690303 7f62856006c0 Manual compaction at level-1 from '!actors!0c2PJoezfrYDnial' @ 72057594037927935 : 1 .. '!actors.items.effects!xsFW1owziB9narOa.xoQMNgLhXSetGxPs.CAcGBn8sq62mVUxJ' @ 0 : 0; will stop at (end)

View File

@ -1,5 +1,15 @@
2024/02/21-20:30:40.550895 7fe93be006c0 Delete type=3 #1 2024/10/13-10:15:10.735444 7f4ae56006c0 Recovering log #127
2024/02/21-20:37:01.143314 7fe9336006c0 Level-0 table #5: started 2024/10/13-10:15:10.746432 7f4ae56006c0 Delete type=3 #125
2024/02/21-20:37:01.158893 7fe9336006c0 Level-0 table #5: 46752 bytes OK 2024/10/13-10:15:10.746540 7f4ae56006c0 Delete type=0 #127
2024/02/21-20:37:01.193250 7fe9336006c0 Delete type=0 #3 2024/10/13-10:26:35.485636 7f4ae28006c0 Level-0 table #132: started
2024/02/21-20:37:01.301173 7fe9336006c0 Manual compaction at level-0 from '!actors!0c2PJoezfrYDnial' @ 72057594037927935 : 1 .. '!actors.items.effects!xsFW1owziB9narOa.xoQMNgLhXSetGxPs.CAcGBn8sq62mVUxJ' @ 0 : 0; will stop at (end) 2024/10/13-10:26:35.492449 7f4ae28006c0 Level-0 table #132: 96553 bytes OK
2024/10/13-10:26:35.499226 7f4ae28006c0 Delete type=0 #130
2024/10/13-10:26:35.499754 7f4ae28006c0 Manual compaction at level-0 from '!actors!0c2PJoezfrYDnial' @ 72057594037927935 : 1 .. '!actors.items.effects!xsFW1owziB9narOa.xoQMNgLhXSetGxPs.CAcGBn8sq62mVUxJ' @ 0 : 0; will stop at (end)
2024/10/13-10:26:35.499861 7f4ae28006c0 Manual compaction at level-1 from '!actors!0c2PJoezfrYDnial' @ 72057594037927935 : 1 .. '!actors.items.effects!xsFW1owziB9narOa.xoQMNgLhXSetGxPs.CAcGBn8sq62mVUxJ' @ 0 : 0; will stop at '!actors.items.effects!xsFW1owziB9narOa.RYrpmE9e9EmZTExs.CAcGBn8sq62mVUxJ' @ 475 : 0
2024/10/13-10:26:35.499873 7f4ae28006c0 Compacting 1@1 + 1@2 files
2024/10/13-10:26:35.506204 7f4ae28006c0 Generated table #133@1: 219 keys, 110968 bytes
2024/10/13-10:26:35.506248 7f4ae28006c0 Compacted 1@1 + 1@2 files => 110968 bytes
2024/10/13-10:26:35.513002 7f4ae28006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/10/13-10:26:35.513172 7f4ae28006c0 Delete type=2 #112
2024/10/13-10:26:35.513433 7f4ae28006c0 Delete type=2 #132
2024/10/13-10:26:35.534404 7f4ae28006c0 Manual compaction at level-1 from '!actors.items.effects!xsFW1owziB9narOa.RYrpmE9e9EmZTExs.CAcGBn8sq62mVUxJ' @ 475 : 0 .. '!actors.items.effects!xsFW1owziB9narOa.xoQMNgLhXSetGxPs.CAcGBn8sq62mVUxJ' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000006 MANIFEST-000133

View File

@ -1,8 +1,8 @@
2024/02/21-20:37:10.175404 7fe93a0006c0 Recovering log #4 2024/10/13-10:28:10.226263 7f6286a006c0 Recovering log #131
2024/02/21-20:37:10.228554 7fe93a0006c0 Delete type=3 #2 2024/10/13-10:28:10.238125 7f6286a006c0 Delete type=3 #129
2024/02/21-20:37:10.228706 7fe93a0006c0 Delete type=0 #4 2024/10/13-10:28:10.238226 7f6286a006c0 Delete type=0 #131
2024/02/21-20:40:18.437459 7fe9336006c0 Level-0 table #9: started 2024/10/13-10:29:28.702284 7f62856006c0 Level-0 table #136: started
2024/02/21-20:40:18.437482 7fe9336006c0 Level-0 table #9: 0 bytes OK 2024/10/13-10:29:28.702328 7f62856006c0 Level-0 table #136: 0 bytes OK
2024/02/21-20:40:18.465963 7fe9336006c0 Delete type=0 #7 2024/10/13-10:29:28.709902 7f62856006c0 Delete type=0 #134
2024/02/21-20:40:18.523248 7fe9336006c0 Manual compaction at level-0 from '!journal!0REn6kpBB3CuQCCJ' @ 72057594037927935 : 1 .. '!journal!sC0T69oyBWtlWjVf' @ 0 : 0; will stop at (end) 2024/10/13-10:29:28.723544 7f62856006c0 Manual compaction at level-0 from '!journal!0REn6kpBB3CuQCCJ' @ 72057594037927935 : 1 .. '!journal.pages!sC0T69oyBWtlWjVf.BiyBlN7hE8sN2wNZ' @ 0 : 0; will stop at (end)
2024/02/21-20:40:18.523281 7fe9336006c0 Manual compaction at level-1 from '!journal!0REn6kpBB3CuQCCJ' @ 72057594037927935 : 1 .. '!journal!sC0T69oyBWtlWjVf' @ 0 : 0; will stop at (end) 2024/10/13-10:29:28.736150 7f62856006c0 Manual compaction at level-1 from '!journal!0REn6kpBB3CuQCCJ' @ 72057594037927935 : 1 .. '!journal.pages!sC0T69oyBWtlWjVf.BiyBlN7hE8sN2wNZ' @ 0 : 0; will stop at (end)

View File

@ -1,5 +1,8 @@
2024/02/21-20:30:40.633795 7fe93be006c0 Delete type=3 #1 2024/10/13-10:15:10.770192 7f4ae56006c0 Recovering log #127
2024/02/21-20:37:01.193408 7fe9336006c0 Level-0 table #5: started 2024/10/13-10:15:10.782190 7f4ae56006c0 Delete type=3 #125
2024/02/21-20:37:01.212992 7fe9336006c0 Level-0 table #5: 17150 bytes OK 2024/10/13-10:15:10.782333 7f4ae56006c0 Delete type=0 #127
2024/02/21-20:37:01.251540 7fe9336006c0 Delete type=0 #3 2024/10/13-10:26:35.527465 7f4ae28006c0 Level-0 table #132: started
2024/02/21-20:37:01.301199 7fe9336006c0 Manual compaction at level-0 from '!journal!0REn6kpBB3CuQCCJ' @ 72057594037927935 : 1 .. '!journal!sC0T69oyBWtlWjVf' @ 0 : 0; will stop at (end) 2024/10/13-10:26:35.527505 7f4ae28006c0 Level-0 table #132: 0 bytes OK
2024/10/13-10:26:35.534142 7f4ae28006c0 Delete type=0 #130
2024/10/13-10:26:35.534492 7f4ae28006c0 Manual compaction at level-0 from '!journal!0REn6kpBB3CuQCCJ' @ 72057594037927935 : 1 .. '!journal.pages!sC0T69oyBWtlWjVf.BiyBlN7hE8sN2wNZ' @ 0 : 0; will stop at (end)
2024/10/13-10:26:35.534571 7f4ae28006c0 Manual compaction at level-1 from '!journal!0REn6kpBB3CuQCCJ' @ 72057594037927935 : 1 .. '!journal.pages!sC0T69oyBWtlWjVf.BiyBlN7hE8sN2wNZ' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000006 MANIFEST-000133

View File

@ -1,8 +1,15 @@
2024/02/21-20:37:10.119830 7fe93a0006c0 Recovering log #4 2024/10/13-10:28:10.198254 7f6287e006c0 Recovering log #131
2024/02/21-20:37:10.171783 7fe93a0006c0 Delete type=3 #2 2024/10/13-10:28:10.216571 7f6287e006c0 Delete type=3 #129
2024/02/21-20:37:10.171835 7fe93a0006c0 Delete type=0 #4 2024/10/13-10:28:10.216698 7f6287e006c0 Delete type=0 #131
2024/02/21-20:40:18.408658 7fe9336006c0 Level-0 table #9: started 2024/10/13-10:29:28.690465 7f62856006c0 Level-0 table #136: started
2024/02/21-20:40:18.408725 7fe9336006c0 Level-0 table #9: 0 bytes OK 2024/10/13-10:29:28.695290 7f62856006c0 Level-0 table #136: 39185 bytes OK
2024/02/21-20:40:18.437349 7fe9336006c0 Delete type=0 #7 2024/10/13-10:29:28.701981 7f62856006c0 Delete type=0 #134
2024/02/21-20:40:18.523237 7fe9336006c0 Manual compaction at level-0 from '!scenes!3FUmiZQODgw6UpbH' @ 72057594037927935 : 1 .. '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 0 : 0; will stop at (end) 2024/10/13-10:29:28.723496 7f62856006c0 Manual compaction at level-0 from '!scenes!3FUmiZQODgw6UpbH' @ 72057594037927935 : 1 .. '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 0 : 0; will stop at (end)
2024/02/21-20:40:18.523287 7fe9336006c0 Manual compaction at level-1 from '!scenes!3FUmiZQODgw6UpbH' @ 72057594037927935 : 1 .. '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 0 : 0; will stop at (end) 2024/10/13-10:29:28.723646 7f62856006c0 Manual compaction at level-1 from '!scenes!3FUmiZQODgw6UpbH' @ 72057594037927935 : 1 .. '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 0 : 0; will stop at '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 811 : 0
2024/10/13-10:29:28.723670 7f62856006c0 Compacting 1@1 + 1@2 files
2024/10/13-10:29:28.729445 7f62856006c0 Generated table #137@1: 254 keys, 35736 bytes
2024/10/13-10:29:28.729491 7f62856006c0 Compacted 1@1 + 1@2 files => 35736 bytes
2024/10/13-10:29:28.735647 7f62856006c0 compacted to: files[ 0 0 1 0 0 0 0 ]
2024/10/13-10:29:28.735808 7f62856006c0 Delete type=2 #112
2024/10/13-10:29:28.736012 7f62856006c0 Delete type=2 #136
2024/10/13-10:29:28.736207 7f62856006c0 Manual compaction at level-1 from '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 811 : 0 .. '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 0 : 0; will stop at (end)

View File

@ -1,5 +1,8 @@
2024/02/21-20:30:40.595310 7fe93be006c0 Delete type=3 #1 2024/10/13-10:15:10.752242 7f4ae4c006c0 Recovering log #127
2024/02/21-20:37:01.086021 7fe9336006c0 Level-0 table #5: started 2024/10/13-10:15:10.762601 7f4ae4c006c0 Delete type=3 #125
2024/02/21-20:37:01.104932 7fe9336006c0 Level-0 table #5: 30103 bytes OK 2024/10/13-10:15:10.762712 7f4ae4c006c0 Delete type=0 #127
2024/02/21-20:37:01.142993 7fe9336006c0 Delete type=0 #3 2024/10/13-10:26:35.513593 7f4ae28006c0 Level-0 table #132: started
2024/02/21-20:37:01.301133 7fe9336006c0 Manual compaction at level-0 from '!scenes!3FUmiZQODgw6UpbH' @ 72057594037927935 : 1 .. '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 0 : 0; will stop at (end) 2024/10/13-10:26:35.513633 7f4ae28006c0 Level-0 table #132: 0 bytes OK
2024/10/13-10:26:35.519972 7f4ae28006c0 Delete type=0 #130
2024/10/13-10:26:35.534440 7f4ae28006c0 Manual compaction at level-0 from '!scenes!3FUmiZQODgw6UpbH' @ 72057594037927935 : 1 .. '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 0 : 0; will stop at (end)
2024/10/13-10:26:35.534516 7f4ae28006c0 Manual compaction at level-1 from '!scenes!3FUmiZQODgw6UpbH' @ 72057594037927935 : 1 .. '!scenes.walls!xbiWDHu8jQ0jLbmg.yUvIag40raDRcMOn' @ 0 : 0; will stop at (end)

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
MANIFEST-000006 MANIFEST-000133

View File

@ -1,8 +1,8 @@
2024/02/21-20:37:10.231201 7fe93aa006c0 Recovering log #4 2024/10/13-10:28:10.242348 7f6287e006c0 Recovering log #131
2024/02/21-20:37:10.291159 7fe93aa006c0 Delete type=3 #2 2024/10/13-10:28:10.252917 7f6287e006c0 Delete type=3 #129
2024/02/21-20:37:10.291219 7fe93aa006c0 Delete type=0 #4 2024/10/13-10:28:10.253012 7f6287e006c0 Delete type=0 #131
2024/02/21-20:40:18.495177 7fe9336006c0 Level-0 table #9: started 2024/10/13-10:29:28.710097 7f62856006c0 Level-0 table #136: started
2024/02/21-20:40:18.495245 7fe9336006c0 Level-0 table #9: 0 bytes OK 2024/10/13-10:29:28.710138 7f62856006c0 Level-0 table #136: 0 bytes OK
2024/02/21-20:40:18.523136 7fe9336006c0 Delete type=0 #7 2024/10/13-10:29:28.716447 7f62856006c0 Delete type=0 #134
2024/02/21-20:40:18.523266 7fe9336006c0 Manual compaction at level-0 from '!playlists!L7ey4DX9iQut6N0T' @ 72057594037927935 : 1 .. '!playlists.sounds!UJg3CQ1Hh0ItcDpa.1eeMsC01CDTHLhEK' @ 0 : 0; will stop at (end) 2024/10/13-10:29:28.723572 7f62856006c0 Manual compaction at level-0 from '!playlists!L7ey4DX9iQut6N0T' @ 72057594037927935 : 1 .. '!playlists.sounds!UJg3CQ1Hh0ItcDpa.1eeMsC01CDTHLhEK' @ 0 : 0; will stop at (end)
2024/02/21-20:40:18.523294 7fe9336006c0 Manual compaction at level-1 from '!playlists!L7ey4DX9iQut6N0T' @ 72057594037927935 : 1 .. '!playlists.sounds!UJg3CQ1Hh0ItcDpa.1eeMsC01CDTHLhEK' @ 0 : 0; will stop at (end) 2024/10/13-10:29:28.736189 7f62856006c0 Manual compaction at level-1 from '!playlists!L7ey4DX9iQut6N0T' @ 72057594037927935 : 1 .. '!playlists.sounds!UJg3CQ1Hh0ItcDpa.1eeMsC01CDTHLhEK' @ 0 : 0; will stop at (end)

View File

@ -1,5 +1,8 @@
2024/02/21-20:30:40.665492 7fe93aa006c0 Delete type=3 #1 2024/10/13-10:15:10.786506 7f4ae4c006c0 Recovering log #127
2024/02/21-20:37:01.301454 7fe9336006c0 Level-0 table #5: started 2024/10/13-10:15:10.797609 7f4ae4c006c0 Delete type=3 #125
2024/02/21-20:37:01.320654 7fe9336006c0 Level-0 table #5: 847 bytes OK 2024/10/13-10:15:10.797715 7f4ae4c006c0 Delete type=0 #127
2024/02/21-20:37:01.358354 7fe9336006c0 Delete type=0 #3 2024/10/13-10:26:35.520200 7f4ae28006c0 Level-0 table #132: started
2024/02/21-20:37:01.358569 7fe9336006c0 Manual compaction at level-0 from '!playlists!L7ey4DX9iQut6N0T' @ 72057594037927935 : 1 .. '!playlists.sounds!UJg3CQ1Hh0ItcDpa.1eeMsC01CDTHLhEK' @ 0 : 0; will stop at (end) 2024/10/13-10:26:35.520258 7f4ae28006c0 Level-0 table #132: 0 bytes OK
2024/10/13-10:26:35.527270 7f4ae28006c0 Delete type=0 #130
2024/10/13-10:26:35.534467 7f4ae28006c0 Manual compaction at level-0 from '!playlists!L7ey4DX9iQut6N0T' @ 72057594037927935 : 1 .. '!playlists.sounds!UJg3CQ1Hh0ItcDpa.1eeMsC01CDTHLhEK' @ 0 : 0; will stop at (end)
2024/10/13-10:26:35.534544 7f4ae28006c0 Manual compaction at level-1 from '!playlists!L7ey4DX9iQut6N0T' @ 72057594037927935 : 1 .. '!playlists.sounds!UJg3CQ1Hh0ItcDpa.1eeMsC01CDTHLhEK' @ 0 : 0; will stop at (end)

Binary file not shown.