3 Commits
13.0.6 ... main

Author SHA1 Message Date
5d13500838 Fix sur combat + mains gauche
All checks were successful
Release Creation / build (release) Successful in 43s
2025-09-24 16:43:52 +02:00
d21515e1e3 Fix sur combat + mains gauche 2025-09-24 16:43:40 +02:00
78ef009465 Fix sur combat + mains gauche 2025-09-24 16:42:08 +02:00
49 changed files with 147 additions and 146 deletions

View File

@@ -82,8 +82,8 @@ export class TeDeumActor extends Actor {
let compScore = this.getCompetenceScore(comp.name) let compScore = this.getCompetenceScore(comp.name)
let mainGaucheScore = this.getCompetenceScore("main gauche") let mainGaucheScore = this.getCompetenceScore("main gauche")
if (mainGaucheScore < compScore) { if (mainGaucheScore < compScore) {
ui.notifications.info(`${actor.name} : Utilisation de la compétence Main Gauche au lieu de ${comp.name}`) ui.notifications.info(`${this.name} : Utilisation de la compétence Main Gauche au lieu de ${comp.name}`)
let mainGaucheComp = this.itms.find(item => item.type == "competence" && item.name.toLowerCase() == "main gauche") let mainGaucheComp = this.items.find(item => item.type == "competence" && item.name.toLowerCase() == "main gauche")
if (!mainGaucheComp) { if (!mainGaucheComp) {
// Create a fake competence object // Create a fake competence object
mainGaucheComp = foundry.utils.duplicate(comp) mainGaucheComp = foundry.utils.duplicate(comp)

View File

@@ -59,11 +59,11 @@ export const TEDEUM_CONFIG = {
}, },
ARME_PORTEES: { ARME_PORTEES: {
"brulepourpoint": { label: "Brûle-pourpoint", difficulty: "facile", id: "brulepourpoint" }, "brulepourpoint": { label: "Brûle-pourpoint (5)", difficulty: "facile", id: "brulepourpoint" },
"courte": { label: "Courte", difficulty: "pardefaut", id: "courte" }, "courte": { label: "Courte (7)", difficulty: "pardefaut", id: "courte" },
"moyenne": { label: "Moyenne", difficulty: "difficile", id: "moyenne" }, "moyenne": { label: "Moyenne (11)", difficulty: "difficile", id: "moyenne" },
"longue": { label: "Longue", difficulty: "perilleux", id: "longue" }, "longue": { label: "Longue (13)", difficulty: "perilleux", id: "longue" },
"extreme": { label: "Extrême", difficulty: "desespere", id: "extreme" }, "extreme": { label: "Extrême (15)", difficulty: "desespere", id: "extreme" },
}, },
genre: { genre: {

View File

@@ -612,7 +612,7 @@ export class TeDeumUtility {
await this.getLocalisation(rollData) await this.getLocalisation(rollData)
// Now the degats // Now the degats
let degatsRoll = await new Roll(rollData.arme.system.degats).roll() let degatsRoll = await new Roll(rollData.arme.system.degats).roll()
await this.showDiceSoNice(rollData.degatsRoll, game.settings.get("core", "rollMode")) await this.showDiceSoNice(degatsRoll, game.settings.get("core", "rollMode"))
rollData.degatsRoll = foundry.utils.duplicate(degatsRoll) rollData.degatsRoll = foundry.utils.duplicate(degatsRoll)
rollData.degats = degatsRoll.total rollData.degats = degatsRoll.total
} }
@@ -631,13 +631,13 @@ export class TeDeumUtility {
ca.nbActionsMainGauche -= 1 ca.nbActionsMainGauche -= 1
ca.nbActions = Math.max(ca.nbActions - 1, 0) ca.nbActions = Math.max(ca.nbActions - 1, 0)
} else { } else {
ui.notifications.error(`${actor.name} n'a plus d'actions disponibles à la main gauche`) ui.notifications.error(`${actor.name} n'a plus d'actions disponibles à la main gauche pour ce round`)
} }
} }
if (ca.nbActions > 0) { if (ca.nbActions > 0) {
ca.nbActions -= 1 ca.nbActions -= 1
} else { } else {
ui.notifications.error(`${actor.name} n'a plus d'actions disponibles`) ui.notifications.error(`${actor.name} n'a plus d'actions disponibles pour ce round`)
} }
await combatant.setFlag("world", "available-actions", ca) await combatant.setFlag("world", "available-actions", ca)
await combatant.update({ name: `${combatant.token.name} (${ca.nbActions} / ${ca.nbActionsMainGauche})` }) await combatant.update({ name: `${combatant.token.name} (${ca.nbActions} / ${ca.nbActionsMainGauche})` })

View File

@@ -1 +1 @@
MANIFEST-000157 MANIFEST-000165

View File

@@ -1,7 +1,7 @@
2025/09/24-15:09:29.187023 7f7d00dfa6c0 Recovering log #155 2025/09/24-16:42:14.734893 7f7cfb7fe6c0 Recovering log #163
2025/09/24-15:09:29.197297 7f7d00dfa6c0 Delete type=3 #153 2025/09/24-16:42:14.744867 7f7cfb7fe6c0 Delete type=3 #161
2025/09/24-15:09:29.197358 7f7d00dfa6c0 Delete type=0 #155 2025/09/24-16:42:14.744926 7f7cfb7fe6c0 Delete type=0 #163
2025/09/24-15:11:47.439451 7f7cf9fff6c0 Level-0 table #160: started 2025/09/24-16:43:46.397731 7f7cf9fff6c0 Level-0 table #168: started
2025/09/24-15:11:47.439482 7f7cf9fff6c0 Level-0 table #160: 0 bytes OK 2025/09/24-16:43:46.397776 7f7cf9fff6c0 Level-0 table #168: 0 bytes OK
2025/09/24-15:11:47.446526 7f7cf9fff6c0 Delete type=0 #158 2025/09/24-16:43:46.462453 7f7cf9fff6c0 Delete type=0 #166
2025/09/24-15:11:47.446682 7f7cf9fff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) 2025/09/24-16:43:46.462659 7f7cf9fff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/09/24-14:48:23.305998 7f7cfb7fe6c0 Recovering log #151 2025/09/24-16:34:06.472911 7f7cfbfff6c0 Recovering log #159
2025/09/24-14:48:23.315978 7f7cfb7fe6c0 Delete type=3 #149 2025/09/24-16:34:06.482703 7f7cfbfff6c0 Delete type=3 #157
2025/09/24-14:48:23.316051 7f7cfb7fe6c0 Delete type=0 #151 2025/09/24-16:34:06.482774 7f7cfbfff6c0 Delete type=0 #159
2025/09/24-15:08:26.608194 7f7cf9fff6c0 Level-0 table #156: started 2025/09/24-16:41:30.176475 7f7cf9fff6c0 Level-0 table #164: started
2025/09/24-15:08:26.608240 7f7cf9fff6c0 Level-0 table #156: 0 bytes OK 2025/09/24-16:41:30.176525 7f7cf9fff6c0 Level-0 table #164: 0 bytes OK
2025/09/24-15:08:26.663875 7f7cf9fff6c0 Delete type=0 #154 2025/09/24-16:41:30.183000 7f7cf9fff6c0 Delete type=0 #162
2025/09/24-15:08:26.664085 7f7cf9fff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end) 2025/09/24-16:41:30.195641 7f7cf9fff6c0 Manual compaction at level-0 from '!journal!uNwJgi4kXBCiZmAH' @ 72057594037927935 : 1 .. '!journal.pages!uNwJgi4kXBCiZmAH.onhNU0mXhOpdNZJF' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000260 MANIFEST-000268

View File

@@ -1,7 +1,7 @@
2025/09/24-15:09:29.097777 7f7cfbfff6c0 Recovering log #258 2025/09/24-16:42:14.642386 7f7d00dfa6c0 Recovering log #266
2025/09/24-15:09:29.108008 7f7cfbfff6c0 Delete type=3 #256 2025/09/24-16:42:14.651936 7f7d00dfa6c0 Delete type=3 #264
2025/09/24-15:09:29.108079 7f7cfbfff6c0 Delete type=0 #258 2025/09/24-16:42:14.652001 7f7d00dfa6c0 Delete type=0 #266
2025/09/24-15:11:47.381009 7f7cf9fff6c0 Level-0 table #263: started 2025/09/24-16:43:45.840704 7f7cf9fff6c0 Level-0 table #271: started
2025/09/24-15:11:47.381035 7f7cf9fff6c0 Level-0 table #263: 0 bytes OK 2025/09/24-16:43:45.840737 7f7cf9fff6c0 Level-0 table #271: 0 bytes OK
2025/09/24-15:11:47.387083 7f7cf9fff6c0 Delete type=0 #261 2025/09/24-16:43:45.898655 7f7cf9fff6c0 Delete type=0 #269
2025/09/24-15:11:47.393292 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end) 2025/09/24-16:43:45.963394 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/09/24-14:48:23.211234 7f7cfaffd6c0 Recovering log #254 2025/09/24-16:34:06.383778 7f7cfb7fe6c0 Recovering log #262
2025/09/24-14:48:23.220782 7f7cfaffd6c0 Delete type=3 #252 2025/09/24-16:34:06.393755 7f7cfb7fe6c0 Delete type=3 #260
2025/09/24-14:48:23.220848 7f7cfaffd6c0 Delete type=0 #254 2025/09/24-16:34:06.393833 7f7cfb7fe6c0 Delete type=0 #262
2025/09/24-15:08:26.052999 7f7cf9fff6c0 Level-0 table #259: started 2025/09/24-16:41:30.118332 7f7cf9fff6c0 Level-0 table #267: started
2025/09/24-15:08:26.053039 7f7cf9fff6c0 Level-0 table #259: 0 bytes OK 2025/09/24-16:41:30.118371 7f7cf9fff6c0 Level-0 table #267: 0 bytes OK
2025/09/24-15:08:26.114659 7f7cf9fff6c0 Delete type=0 #257 2025/09/24-16:41:30.124477 7f7cf9fff6c0 Delete type=0 #265
2025/09/24-15:08:26.173656 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end) 2025/09/24-16:41:30.124651 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!InCQeTRdT5jXMX82' @ 72057594037927935 : 1 .. '!items!wxIHkrq98eQ3cOvp' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000259 MANIFEST-000267

View File

@@ -1,7 +1,7 @@
2025/09/24-15:09:29.111050 7f7cfaffd6c0 Recovering log #257 2025/09/24-16:42:14.655535 7f7cfbfff6c0 Recovering log #265
2025/09/24-15:09:29.121636 7f7cfaffd6c0 Delete type=3 #255 2025/09/24-16:42:14.666517 7f7cfbfff6c0 Delete type=3 #263
2025/09/24-15:09:29.121696 7f7cfaffd6c0 Delete type=0 #257 2025/09/24-16:42:14.666585 7f7cfbfff6c0 Delete type=0 #265
2025/09/24-15:11:47.374855 7f7cf9fff6c0 Level-0 table #262: started 2025/09/24-16:43:45.762646 7f7cf9fff6c0 Level-0 table #270: started
2025/09/24-15:11:47.374881 7f7cf9fff6c0 Level-0 table #262: 0 bytes OK 2025/09/24-16:43:45.762671 7f7cf9fff6c0 Level-0 table #270: 0 bytes OK
2025/09/24-15:11:47.380908 7f7cf9fff6c0 Delete type=0 #260 2025/09/24-16:43:45.840542 7f7cf9fff6c0 Delete type=0 #268
2025/09/24-15:11:47.393280 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end) 2025/09/24-16:43:45.963381 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/09/24-14:48:23.223575 7f7d00dfa6c0 Recovering log #253 2025/09/24-16:34:06.395848 7f7d00dfa6c0 Recovering log #261
2025/09/24-14:48:23.234727 7f7d00dfa6c0 Delete type=3 #251 2025/09/24-16:34:06.405550 7f7d00dfa6c0 Delete type=3 #259
2025/09/24-14:48:23.234789 7f7d00dfa6c0 Delete type=0 #253 2025/09/24-16:34:06.405604 7f7d00dfa6c0 Delete type=0 #261
2025/09/24-15:08:26.173817 7f7cf9fff6c0 Level-0 table #258: started 2025/09/24-16:41:30.111558 7f7cf9fff6c0 Level-0 table #266: started
2025/09/24-15:08:26.173861 7f7cf9fff6c0 Level-0 table #258: 0 bytes OK 2025/09/24-16:41:30.111589 7f7cf9fff6c0 Level-0 table #266: 0 bytes OK
2025/09/24-15:08:26.233062 7f7cf9fff6c0 Delete type=0 #256 2025/09/24-16:41:30.118178 7f7cf9fff6c0 Delete type=0 #264
2025/09/24-15:08:26.424194 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end) 2025/09/24-16:41:30.124642 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!2wTJBj3dicRKzNOE' @ 72057594037927935 : 1 .. '!items!ufvhWG5V8pX0qrtR' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000258 MANIFEST-000266

View File

@@ -1,7 +1,7 @@
2025/09/24-15:09:29.084820 7f7d00dfa6c0 Recovering log #256 2025/09/24-16:42:14.629192 7f7cfaffd6c0 Recovering log #264
2025/09/24-15:09:29.094841 7f7d00dfa6c0 Delete type=3 #254 2025/09/24-16:42:14.638946 7f7cfaffd6c0 Delete type=3 #262
2025/09/24-15:09:29.094891 7f7d00dfa6c0 Delete type=0 #256 2025/09/24-16:42:14.639014 7f7cfaffd6c0 Delete type=0 #264
2025/09/24-15:11:47.367611 7f7cf9fff6c0 Level-0 table #261: started 2025/09/24-16:43:45.706058 7f7cf9fff6c0 Level-0 table #269: started
2025/09/24-15:11:47.367694 7f7cf9fff6c0 Level-0 table #261: 0 bytes OK 2025/09/24-16:43:45.706134 7f7cf9fff6c0 Level-0 table #269: 0 bytes OK
2025/09/24-15:11:47.374747 7f7cf9fff6c0 Delete type=0 #259 2025/09/24-16:43:45.762523 7f7cf9fff6c0 Delete type=0 #267
2025/09/24-15:11:47.393269 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end) 2025/09/24-16:43:45.963365 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/09/24-14:48:23.198206 7f7cfb7fe6c0 Recovering log #252 2025/09/24-16:34:06.370805 7f7cfaffd6c0 Recovering log #260
2025/09/24-14:48:23.208784 7f7cfb7fe6c0 Delete type=3 #250 2025/09/24-16:34:06.381415 7f7cfaffd6c0 Delete type=3 #258
2025/09/24-14:48:23.208841 7f7cfb7fe6c0 Delete type=0 #252 2025/09/24-16:34:06.381482 7f7cfaffd6c0 Delete type=0 #260
2025/09/24-15:08:25.940494 7f7cf9fff6c0 Level-0 table #257: started 2025/09/24-16:41:30.104756 7f7cf9fff6c0 Level-0 table #265: started
2025/09/24-15:08:25.940624 7f7cf9fff6c0 Level-0 table #257: 0 bytes OK 2025/09/24-16:41:30.104801 7f7cf9fff6c0 Level-0 table #265: 0 bytes OK
2025/09/24-15:08:25.991041 7f7cf9fff6c0 Delete type=0 #255 2025/09/24-16:41:30.111363 7f7cf9fff6c0 Delete type=0 #263
2025/09/24-15:08:26.173621 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end) 2025/09/24-16:41:30.124633 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!4OPhigzcPv46qbWW' @ 72057594037927935 : 1 .. '!items!yx4k7lQHGcom99mk' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000269 MANIFEST-000277

View File

@@ -1,7 +1,7 @@
2025/09/24-15:09:29.123386 7f7cfb7fe6c0 Recovering log #267 2025/09/24-16:42:14.669125 7f7cfb7fe6c0 Recovering log #275
2025/09/24-15:09:29.133578 7f7cfb7fe6c0 Delete type=3 #265 2025/09/24-16:42:14.678629 7f7cfb7fe6c0 Delete type=3 #273
2025/09/24-15:09:29.133633 7f7cfb7fe6c0 Delete type=0 #267 2025/09/24-16:42:14.678694 7f7cfb7fe6c0 Delete type=0 #275
2025/09/24-15:11:47.387224 7f7cf9fff6c0 Level-0 table #272: started 2025/09/24-16:43:45.898794 7f7cf9fff6c0 Level-0 table #280: started
2025/09/24-15:11:47.387262 7f7cf9fff6c0 Level-0 table #272: 0 bytes OK 2025/09/24-16:43:45.898823 7f7cf9fff6c0 Level-0 table #280: 0 bytes OK
2025/09/24-15:11:47.393170 7f7cf9fff6c0 Delete type=0 #270 2025/09/24-16:43:45.963207 7f7cf9fff6c0 Delete type=0 #278
2025/09/24-15:11:47.393301 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end) 2025/09/24-16:43:45.963407 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/09/24-14:48:23.237291 7f7cfb7fe6c0 Recovering log #263 2025/09/24-16:34:06.407386 7f7cfaffd6c0 Recovering log #271
2025/09/24-14:48:23.248109 7f7cfb7fe6c0 Delete type=3 #261 2025/09/24-16:34:06.418079 7f7cfaffd6c0 Delete type=3 #269
2025/09/24-14:48:23.248198 7f7cfb7fe6c0 Delete type=0 #263 2025/09/24-16:34:06.418139 7f7cfaffd6c0 Delete type=0 #271
2025/09/24-15:08:25.991148 7f7cf9fff6c0 Level-0 table #268: started 2025/09/24-16:41:30.124766 7f7cf9fff6c0 Level-0 table #276: started
2025/09/24-15:08:25.998446 7f7cf9fff6c0 Level-0 table #268: 0 bytes OK 2025/09/24-16:41:30.124809 7f7cf9fff6c0 Level-0 table #276: 0 bytes OK
2025/09/24-15:08:26.052852 7f7cf9fff6c0 Delete type=0 #266 2025/09/24-16:41:30.131329 7f7cf9fff6c0 Delete type=0 #274
2025/09/24-15:08:26.173642 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end) 2025/09/24-16:41:30.151558 7f7cf9fff6c0 Manual compaction at level-0 from '!folders!9PQi3Lv54rpcxavo' @ 72057594037927935 : 1 .. '!items!zGlRtP7zSnkjuuue' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000259 MANIFEST-000267

View File

@@ -1,7 +1,7 @@
2025/09/24-15:09:29.137046 7f7d00dfa6c0 Recovering log #257 2025/09/24-16:42:14.682432 7f7cfaffd6c0 Recovering log #265
2025/09/24-15:09:29.146636 7f7d00dfa6c0 Delete type=3 #255 2025/09/24-16:42:14.692809 7f7cfaffd6c0 Delete type=3 #263
2025/09/24-15:09:29.146695 7f7d00dfa6c0 Delete type=0 #257 2025/09/24-16:42:14.692870 7f7cfaffd6c0 Delete type=0 #265
2025/09/24-15:11:47.393485 7f7cf9fff6c0 Level-0 table #262: started 2025/09/24-16:43:46.011645 7f7cf9fff6c0 Level-0 table #270: started
2025/09/24-15:11:47.393516 7f7cf9fff6c0 Level-0 table #262: 0 bytes OK 2025/09/24-16:43:46.011682 7f7cf9fff6c0 Level-0 table #270: 0 bytes OK
2025/09/24-15:11:47.400467 7f7cf9fff6c0 Delete type=0 #260 2025/09/24-16:43:46.083954 7f7cf9fff6c0 Delete type=0 #268
2025/09/24-15:11:47.419258 7f7cf9fff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end) 2025/09/24-16:43:46.208935 7f7cf9fff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/09/24-14:48:23.254619 7f7cfb7fe6c0 Recovering log #253 2025/09/24-16:34:06.421631 7f7d00dfa6c0 Recovering log #261
2025/09/24-14:48:23.264677 7f7cfb7fe6c0 Delete type=3 #251 2025/09/24-16:34:06.432018 7f7d00dfa6c0 Delete type=3 #259
2025/09/24-14:48:23.264757 7f7cfb7fe6c0 Delete type=0 #253 2025/09/24-16:34:06.432112 7f7d00dfa6c0 Delete type=0 #261
2025/09/24-15:08:26.114804 7f7cf9fff6c0 Level-0 table #258: started 2025/09/24-16:41:30.098303 7f7cf9fff6c0 Level-0 table #266: started
2025/09/24-15:08:26.114845 7f7cf9fff6c0 Level-0 table #258: 0 bytes OK 2025/09/24-16:41:30.098366 7f7cf9fff6c0 Level-0 table #266: 0 bytes OK
2025/09/24-15:08:26.173413 7f7cf9fff6c0 Delete type=0 #256 2025/09/24-16:41:30.104526 7f7cf9fff6c0 Delete type=0 #264
2025/09/24-15:08:26.173668 7f7cf9fff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end) 2025/09/24-16:41:30.124617 7f7cf9fff6c0 Manual compaction at level-0 from '!items!17mjvwS8R3B6LloG' @ 72057594037927935 : 1 .. '!items!zUYIVOuFpRur9aAR' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000259 MANIFEST-000267

View File

@@ -1,7 +1,7 @@
2025/09/24-15:09:29.148975 7f7cfbfff6c0 Recovering log #257 2025/09/24-16:42:14.695212 7f7cfbfff6c0 Recovering log #265
2025/09/24-15:09:29.158794 7f7cfbfff6c0 Delete type=3 #255 2025/09/24-16:42:14.705156 7f7cfbfff6c0 Delete type=3 #263
2025/09/24-15:09:29.158847 7f7cfbfff6c0 Delete type=0 #257 2025/09/24-16:42:14.705234 7f7cfbfff6c0 Delete type=0 #265
2025/09/24-15:11:47.406687 7f7cf9fff6c0 Level-0 table #262: started 2025/09/24-16:43:46.084105 7f7cf9fff6c0 Level-0 table #270: started
2025/09/24-15:11:47.406719 7f7cf9fff6c0 Level-0 table #262: 0 bytes OK 2025/09/24-16:43:46.084138 7f7cf9fff6c0 Level-0 table #270: 0 bytes OK
2025/09/24-15:11:47.412667 7f7cf9fff6c0 Delete type=0 #260 2025/09/24-16:43:46.141584 7f7cf9fff6c0 Delete type=0 #268
2025/09/24-15:11:47.419288 7f7cf9fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end) 2025/09/24-16:43:46.208949 7f7cf9fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/09/24-14:48:23.266851 7f7cfaffd6c0 Recovering log #253 2025/09/24-16:34:06.434181 7f7cfb7fe6c0 Recovering log #261
2025/09/24-14:48:23.277277 7f7cfaffd6c0 Delete type=3 #251 2025/09/24-16:34:06.444000 7f7cfb7fe6c0 Delete type=3 #259
2025/09/24-14:48:23.277357 7f7cfaffd6c0 Delete type=0 #253 2025/09/24-16:34:06.444067 7f7cfb7fe6c0 Delete type=0 #261
2025/09/24-15:08:26.356120 7f7cf9fff6c0 Level-0 table #258: started 2025/09/24-16:41:30.144559 7f7cf9fff6c0 Level-0 table #266: started
2025/09/24-15:08:26.356174 7f7cf9fff6c0 Level-0 table #258: 0 bytes OK 2025/09/24-16:41:30.144589 7f7cf9fff6c0 Level-0 table #266: 0 bytes OK
2025/09/24-15:08:26.424036 7f7cf9fff6c0 Delete type=0 #256 2025/09/24-16:41:30.151446 7f7cf9fff6c0 Delete type=0 #264
2025/09/24-15:08:26.424252 7f7cf9fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end) 2025/09/24-16:41:30.151596 7f7cf9fff6c0 Manual compaction at level-0 from '!items!1icaxIywAwDXQcMz' @ 72057594037927935 : 1 .. '!items!ysGehYm1VkMWrI22' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000196 MANIFEST-000204

View File

@@ -1,7 +1,7 @@
2025/09/24-15:09:29.173945 7f7cfb7fe6c0 Recovering log #194 2025/09/24-16:42:14.720636 7f7cfaffd6c0 Recovering log #202
2025/09/24-15:09:29.183658 7f7cfb7fe6c0 Delete type=3 #192 2025/09/24-16:42:14.731231 7f7cfaffd6c0 Delete type=3 #200
2025/09/24-15:09:29.183716 7f7cfb7fe6c0 Delete type=0 #194 2025/09/24-16:42:14.731304 7f7cfaffd6c0 Delete type=0 #202
2025/09/24-15:11:47.412789 7f7cf9fff6c0 Level-0 table #199: started 2025/09/24-16:43:46.141700 7f7cf9fff6c0 Level-0 table #207: started
2025/09/24-15:11:47.412823 7f7cf9fff6c0 Level-0 table #199: 0 bytes OK 2025/09/24-16:43:46.141727 7f7cf9fff6c0 Level-0 table #207: 0 bytes OK
2025/09/24-15:11:47.419140 7f7cf9fff6c0 Delete type=0 #197 2025/09/24-16:43:46.208754 7f7cf9fff6c0 Delete type=0 #205
2025/09/24-15:11:47.419299 7f7cf9fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end) 2025/09/24-16:43:46.208965 7f7cf9fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/09/24-14:48:23.292184 7f7d00dfa6c0 Recovering log #190 2025/09/24-16:34:06.459217 7f7d00dfa6c0 Recovering log #198
2025/09/24-14:48:23.302049 7f7d00dfa6c0 Delete type=3 #188 2025/09/24-16:34:06.469315 7f7d00dfa6c0 Delete type=3 #196
2025/09/24-14:48:23.302138 7f7d00dfa6c0 Delete type=0 #190 2025/09/24-16:34:06.469408 7f7d00dfa6c0 Delete type=0 #198
2025/09/24-15:08:26.233213 7f7cf9fff6c0 Level-0 table #195: started 2025/09/24-16:41:30.137845 7f7cf9fff6c0 Level-0 table #203: started
2025/09/24-15:08:26.233253 7f7cf9fff6c0 Level-0 table #195: 0 bytes OK 2025/09/24-16:41:30.137895 7f7cf9fff6c0 Level-0 table #203: 0 bytes OK
2025/09/24-15:08:26.291256 7f7cf9fff6c0 Delete type=0 #193 2025/09/24-16:41:30.144438 7f7cf9fff6c0 Delete type=0 #201
2025/09/24-15:08:26.424217 7f7cf9fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end) 2025/09/24-16:41:30.151581 7f7cf9fff6c0 Manual compaction at level-0 from '!scenes!FJXugdbkBpEJEdR6' @ 72057594037927935 : 1 .. '!scenes!FJXugdbkBpEJEdR6' @ 0 : 0; will stop at (end)

View File

@@ -1 +1 @@
MANIFEST-000260 MANIFEST-000268

View File

@@ -1,7 +1,7 @@
2025/09/24-15:09:29.160816 7f7cfaffd6c0 Recovering log #258 2025/09/24-16:42:14.708014 7f7d00dfa6c0 Recovering log #266
2025/09/24-15:09:29.171382 7f7cfaffd6c0 Delete type=3 #256 2025/09/24-16:42:14.717668 7f7d00dfa6c0 Delete type=3 #264
2025/09/24-15:09:29.171436 7f7cfaffd6c0 Delete type=0 #258 2025/09/24-16:42:14.717743 7f7d00dfa6c0 Delete type=0 #266
2025/09/24-15:11:47.400600 7f7cf9fff6c0 Level-0 table #263: started 2025/09/24-16:43:45.963524 7f7cf9fff6c0 Level-0 table #271: started
2025/09/24-15:11:47.400625 7f7cf9fff6c0 Level-0 table #263: 0 bytes OK 2025/09/24-16:43:45.963550 7f7cf9fff6c0 Level-0 table #271: 0 bytes OK
2025/09/24-15:11:47.406556 7f7cf9fff6c0 Delete type=0 #261 2025/09/24-16:43:46.011489 7f7cf9fff6c0 Delete type=0 #269
2025/09/24-15:11:47.419275 7f7cf9fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end) 2025/09/24-16:43:46.208919 7f7cf9fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)

View File

@@ -1,7 +1,7 @@
2025/09/24-14:48:23.279296 7f7cfbfff6c0 Recovering log #254 2025/09/24-16:34:06.445870 7f7cfaffd6c0 Recovering log #262
2025/09/24-14:48:23.289583 7f7cfbfff6c0 Delete type=3 #252 2025/09/24-16:34:06.456672 7f7cfaffd6c0 Delete type=3 #260
2025/09/24-14:48:23.289682 7f7cfbfff6c0 Delete type=0 #254 2025/09/24-16:34:06.456727 7f7cfaffd6c0 Delete type=0 #262
2025/09/24-15:08:26.291500 7f7cf9fff6c0 Level-0 table #259: started 2025/09/24-16:41:30.131456 7f7cf9fff6c0 Level-0 table #267: started
2025/09/24-15:08:26.291565 7f7cf9fff6c0 Level-0 table #259: 0 bytes OK 2025/09/24-16:41:30.131488 7f7cf9fff6c0 Level-0 table #267: 0 bytes OK
2025/09/24-15:08:26.355943 7f7cf9fff6c0 Delete type=0 #257 2025/09/24-16:41:30.137659 7f7cf9fff6c0 Delete type=0 #265
2025/09/24-15:08:26.424235 7f7cf9fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end) 2025/09/24-16:41:30.151571 7f7cf9fff6c0 Manual compaction at level-0 from '!items!1bAL2MQVpVBd0c5Z' @ 72057594037927935 : 1 .. '!items!zs67k4sxCid6oTK3' @ 0 : 0; will stop at (end)

View File

@@ -35,7 +35,8 @@
{{/if}} {{/if}}
{{#if hasActions}} {{#if hasActions}}
<li>Actions restantes: {{remainingActions}} (MG:{{remainingActionsMainGauche}})</li> <li data-tooltip="Nombre d'actions restantes, avec MG = Main Gauche">Actions restantes: {{remainingActions}}
(MG:{{remainingActionsMainGauche}})</li>
{{/if}} {{/if}}
{{#if arme}} {{#if arme}}