Skip to content

Commit

Permalink
1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWCS committed Nov 5, 2022
1 parent 22d11ff commit bfadbf8
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 19 deletions.
2 changes: 1 addition & 1 deletion docs/version_check.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"stable": {
"1.0": {
"current": "1.0.5",
"current": "1.0.6",
"announcement": "https://github.com/LukeWCS/ext-mgr-plus/releases",
"eol": null,
"security": false
Expand Down
5 changes: 5 additions & 0 deletions ext-mgr-plus_build_changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
### 1.0.6

#### 1.0.6
* Release
* CSS:
* Fix: Code für die 8te Spalte hat gefehlt.

#### 1.0.6-b4
* EC Fehler (VA) behoben.
* ExtMgr Template:
Expand Down
7 changes: 4 additions & 3 deletions ext-mgr-plus_changelog_de.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
### 1.0.6
GH (2022-11-)
GH (2022-11-05)

* Fix: Bei geleertem Cache wurde die Versionsprüfung zweimal ausgeführt, zuerst von EMP und anschliessend nochmal von phpBB: Falsche Event Reihenfolge und falscher Funktionsparameter.
* Fix: Wurde zwischen zwei Versionsprüfungen der Cache nicht geleert, erkannte EMP neue Updates nicht: Falsche Event Reihenfolge.
* Für das Ergebnis der letzten Versionsprüfung der Erweiterungen werden keine gesonderten Meldungen mehr generiert, sondern die schon vorhandenen Update-Indikatoren der Erweiterungen-Liste genutzt und erweitert. Das macht es insbesondere nach der ersten Erweiterung-Aktualisierung einfacher, gezielt die noch übrigen Erweiterungen zu deaktivieren und zu aktualisieren, wenn es mehr als ein Update gibt.
* Die Update-Indikatoren werden automatisch entfernt, wenn die entsprechenden Erweiterungen aktualisiert werden.
* Statt der Meldungen wird jetzt dauerhaft das Datum der letzten Versionsprüfung angezeigt. Zusätzlich wird die Anzahl verfügbarer Updates angezeigt. Die Anzahl wird automatisch angepasst, wenn Erweiterungen aktualisiert werden.
* Die Update-Indikatoren werden automatisch entfernt, sobald die entsprechenden Erweiterungen aktualisiert wurden.
* Statt der Meldungen wird jetzt dauerhaft das Datum der letzten Versionsprüfung angezeigt. Zusätzlich wird dahinter die Anzahl verfügbarer Updates in Klammern angezeigt. Die Anzahl wird automatisch angepasst, wenn Erweiterungen aktualisiert wurden. Der Zusatz wird komplett entfernt, wenn keine Updates mehr vorliegen.
* Bereits vorhandene Daten der Versionsprüfung von 1.0.5 sind kompatibel mit dieser Version und werden übernommen.
* Code Optimierungen.
* Änderungen und Korrekturen bei CSS.

### 1.0.5
GH (2022-10-29)
Expand Down
18 changes: 5 additions & 13 deletions lukewcs/extmgrplus/adm/style/css/acp_ext_mgr_plus.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ legend {
padding: 3px 2px;
}

#extmgrplus_list th:nth-of-type(1n + 2), /* ext_ver and other columns to the right of it */
#extmgrplus_list th:nth-of-type(1n + 2), /* version+ */
#extmgrplus_list td:nth-of-type(1n + 2) {
text-align: center;
}

#extmgrplus_list th:nth-of-type(2) { /* ext_ver */
#extmgrplus_list th:nth-of-type(2) { /* version */
width: 16%;
}

#extmgrplus_list th:nth-of-type(3) { /* migrations files */
#extmgrplus_list th:nth-of-type(3) { /* migration files */
width: 2%;
}

Expand All @@ -70,19 +70,11 @@ legend {
width: 25%;
}

#extmgrplus_list th:nth-of-type(6) { /* checkboxes */
#extmgrplus_list th:nth-of-type(1n + 6) { /* checkboxes(select)+ */
width: 1%;
}

#extmgrplus_list th:nth-of-type(7) { /* order and ignore */
width: 1%;
}

#extmgrplus_list td:nth-of-type(6) { /* checkboxes */
padding: 0 4px;
}

#extmgrplus_list td:nth-of-type(7) { /* order and ignore */
#extmgrplus_list td:nth-of-type(1n + 6) { /* checkboxes(select)+ */
padding: 0 4px;
}

Expand Down
4 changes: 2 additions & 2 deletions lukewcs/extmgrplus/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"type": "phpbb-extension",
"description": "Extends the Extension Manager with the ability to disable and re-enable all installed extensions at once. An individual selection can also be made using checkboxes. Furthermore, sequence groups can be defined or extensions can be ignored. Additional information is also displayed in the Extension Manager.",
"homepage": "https://github.com/LukeWCS/ext-mgr-plus",
"version": "1.0.6-b4",
"time": "2022-10-29",
"version": "1.0.6",
"time": "2022-11-05",
"license": "GPL-2.0-only",
"authors": [
{
Expand Down

0 comments on commit bfadbf8

Please sign in to comment.