Skip to content

Commit

Permalink
2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWCS committed Dec 19, 2024
1 parent 0595732 commit 7dee745
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ Extension for phpBB - Shows a visitor statistic of the current day or a freely s
### History
* phpBB 3.2 Extension fork (c) 2018 by LukeWCS
* phpBB 3.1 Extension (c) 2015 by Anvar
* phpBB 3.0 modification (c) 2010 by Joas Schilling [nickvergessen]
* phpBB 3.0 Modification (c) 2010 by Joas Schilling [nickvergessen]
6 changes: 5 additions & 1 deletion lf-who-was-here-2_build_changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
### 2.2.1
* Release (2024-12-19)
* Fehlende typisierte Klassen-Eigenschaften beim Controller und Listener definiert.

#### 2.2.1-b1
* PHP:
* Code verwendet jetzt 7.4 Features.
* Code strikter gestaltet.
* ext.php`/`composer.json` angepasst:
* `ext.php`/`composer.json` angepasst:
* PHP: 7.1.3-8.3.x -> 7.4.0-8.4.x
* Core:
* Wie bei "Limit Multiple Replies" werden Rechte jetzt mit der Wrapper Funktion `update_subarray()` (>=phpBB 3.2.1) eingehängt, wodurch das umständliche Extrahieren und Zurückkopieren der Subarrays `$event['categories']` und `$event['permissions']` entfällt.
Expand Down
4 changes: 2 additions & 2 deletions lf-who-was-here-2_changelog_de.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
### 2.2.1
(2024-12- / CDB: --)
(2024-12-19 / CDB: --)

* Die Voraussetzungen haben sich geändert:
* PHP: 7.4.0 - 8.4.x (Bisher: 7.1.3 - 8.3.x)
* Technik auf den Stand von EMP 3.0 gebracht, Details im Build Changelog.
* Validierungs-Kritik von 2.2.0 berücksichtigt (3/4).

### 2.2.0
(2024-03-06 / CDB: --)
(2024-03-06 / CDB: 2024-05-13)

* Die Unterstützung für phpBB 3.2 wurde aufgegeben, Minimum ist jetzt phpBB 3.3.0.
* Rechtesystem:
Expand Down
4 changes: 2 additions & 2 deletions lukewcs/whowashere/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"type": "phpbb-extension",
"description": "Shows a visitor statistic of the current day or a freely selectable period. It lists both visitors and bots, as well as numbers on visible members, invisible members, bots and guests. In addition, the extension offers a visitor record and is extensively adjustable.",
"homepage": "https://www.phpbb.com/customise/db/extension/lf_who_was_here_2/",
"version": "2.2.1-b1",
"time": "2024-12-16",
"version": "2.2.1",
"time": "2024-12-19",
"license": "GPL-2.0-only",
"authors": [
{
Expand Down
19 changes: 10 additions & 9 deletions lukewcs/whowashere/controller/acp_who_was_here_controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,16 @@

class acp_who_was_here_controller
{
protected $common;
protected $language;
protected $template;
protected $request;
protected $config;
protected $user;
protected $cache;
protected $ext_manager;
public $u_action;
protected object $common;
protected object $language;
protected object $template;
protected object $request;
protected object $config;
protected object $user;
protected object $cache;
protected object $ext_manager;

public string $u_action;

public function __construct(
$common,
Expand Down
2 changes: 1 addition & 1 deletion lukewcs/whowashere/event/listener.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class listener implements EventSubscriberInterface
{
protected $wwh;
protected object $wwh;

public function __construct(
\lukewcs\whowashere\core\who_was_here $wwh
Expand Down

0 comments on commit 7dee745

Please sign in to comment.