Skip to content

Releases: vatger/xenforo-vatger

v1.5.3

30 Dec 18:22

Choose a tag to compare

Added XF_User Cookie TTL.

Full Changelog: v1.5.2...v1.5.3

v1.5.2

21 Oct 19:41

Choose a tag to compare

What's Changed

  • Fixed API Scope on vatger_user_avatar for DELETE method.

Full Changelog: v1.5.1...v1.5.2

v1.5.1

20 Oct 19:17

Choose a tag to compare

What's Changed

Full Changelog: v1.3.8...v1.5.1

v1.3.8

30 Mar 01:12
1194024

Choose a tag to compare

This significant updates enables logging of all moderation duties for non-moderator users in Xenforo.
Specifically, logs are created when:

  • a post is deleted (soft & hard)
  • a thread is deleted (soft & hard)

In the event of a hard-delete, the content will be stored for a configurable amount of time, during which it may be recovered.

v1.3.5

02 Feb 21:07

Choose a tag to compare

Remove ability to login as "Administrator" account.

- private static array $DISALLOWED_FUNC_ACC = ['XF Support Admin', 'VATSIM Migration'];
+ private static array $DISALLOWED_FUNC_ACC = ['Administrator', 'XF Support Admin', 'VATSIM Migration'];

v1.3.4

02 Feb 00:07

Choose a tag to compare

Update sorting of functional accounts by username (asc order). This also results in fir accounts being grouped.

$functionalAccounts = \XF::finder("XF:User")
    ->where('custom_title', '=', '')
+   ->order('username', 'ASC')
    ->fetch();

v1.3.3

01 Feb 22:33

Choose a tag to compare

Update to fix an internal server error "Cannot access string offset on type string".

v1.3.2

01 Feb 22:17

Choose a tag to compare

Updates the check to determine if a user is allowed to use a functional account. This disables login for the "service" accounts XF Support Admin and VATSIM Migration, which are not to be used as functional accounts.

Before:

array_find_key(self::$DISALLOWED_FUNC_ACC, fn(string $accName) => $accName === $account->username)

After:

array_find(self::$DISALLOWED_FUNC_ACC, fn(string $accName) => $accName === $account->username) !== null

v1.3.1

01 Feb 22:00

Choose a tag to compare

Minor update from v1.3.0 to fix some issues with other addons and moving from extending the XF Entity classes to extending the XFCP_XXXX classes instead. This should hopefully resolve issues with other addons and is the way to go in the future.

v1.3.0

31 Jan 21:26

Choose a tag to compare

Updates to v1.3.0 allowing for (super)moderator assignment and permission management via API.