2 Commits

Author SHA1 Message Date
3dd67d776b Fix bug non found villages
Some checks failed
Continuous Deployment / lint (push) Successful in 30s
Continuous Deployment / deploy-chrome (push) Failing after 19s
Continuous Deployment / deploy-firefox (push) Successful in 2m1s
2025-12-07 14:12:20 +01:00
9bdd5f784f Add autonomous attack planer
Some checks failed
Continuous Deployment / lint (push) Successful in 32s
Continuous Deployment / deploy-chrome (push) Failing after 20s
Continuous Deployment / deploy-firefox (push) Successful in 3m51s
2025-12-07 07:14:56 +01:00
8 changed files with 1084 additions and 38 deletions

View File

@@ -1,5 +1,13 @@
# Changelog # Changelog
## 1.12.2 (2026-12-07)
- correction du bug sur les villages non trouvés
## 1.12.1 (2026-12-07)
- ajout du planificateur autonome d'attaques
## 1.11.4 (2026-12-03) ## 1.11.4 (2026-12-03)
- correction du bug sur le calculateur - correction du bug sur le calculateur

1
images/cancel.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="#000000" d="M183.1 137.4C170.6 124.9 150.3 124.9 137.8 137.4C125.3 149.9 125.3 170.2 137.8 182.7L275.2 320L137.9 457.4C125.4 469.9 125.4 490.2 137.9 502.7C150.4 515.2 170.7 515.2 183.2 502.7L320.5 365.3L457.9 502.6C470.4 515.1 490.7 515.1 503.2 502.6C515.7 490.1 515.7 469.8 503.2 457.3L365.8 320L503.1 182.6C515.6 170.1 515.6 149.8 503.1 137.3C490.6 124.8 470.3 124.8 457.8 137.3L320.5 274.7L183.1 137.4z"/></svg>

After

Width:  |  Height:  |  Size: 640 B

1
images/clock.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="#000000" d="M320 64C461.4 64 576 178.6 576 320C576 461.4 461.4 576 320 576C178.6 576 64 461.4 64 320C64 178.6 178.6 64 320 64zM296 184L296 320C296 328 300 335.5 306.7 340L402.7 404C413.7 411.4 428.6 408.4 436 397.3C443.4 386.2 440.4 371.4 429.3 364L344 307.2L344 184C344 170.7 333.3 160 320 160C306.7 160 296 170.7 296 184z"/></svg>

After

Width:  |  Height:  |  Size: 558 B

1
images/play.svg Normal file
View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path fill="#000000" d="M187.2 100.9C174.8 94.1 159.8 94.4 147.6 101.6C135.4 108.8 128 121.9 128 136L128 504C128 518.1 135.5 531.2 147.6 538.4C159.7 545.6 174.8 545.9 187.2 539.1L523.2 355.1C536 348.1 544 334.6 544 320C544 305.4 536 291.9 523.2 284.9L187.2 100.9z"/></svg>

After

Width:  |  Height:  |  Size: 486 B

View File

@@ -1,7 +1,7 @@
{ {
"manifest_version": 3, "manifest_version": 3,
"name": "KAplus", "name": "KAplus",
"version": "1.11.4", "version": "1.12.2",
"developer": { "developer": {
"name": "Samuel Campos", "name": "Samuel Campos",

View File

@@ -5,8 +5,8 @@
"firefox" "firefox"
], ],
"release_notes": { "release_notes": {
"fr": "- correction du bug sur le calculateur", "fr": "- correction du bug sur les villages non trouvés",
"en-US": "- fix bug on attack calculator" "en-US": "- fix bug non found villages"
} }
} }
} }

View File

@@ -1,3 +1,17 @@
@keyframes blink {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#inner_footer { #inner_footer {
.inner_subcolumns { .inner_subcolumns {
left: 0 !important; left: 0 !important;
@@ -6,6 +20,16 @@
#content_wrapper > table { #content_wrapper > table {
width: auto !important; width: auto !important;
cursor: default;
}
.borderlist {
.autonomous:disabled {
opacity: 0.3;
}
.autonomous.blink {
animation: blink 2s infinite;
}
} }
.lay_castle_top { .lay_castle_top {

File diff suppressed because it is too large Load Diff