Skip to content

Commit

Permalink
bbcodeconvert: update for ilch 2.1.60 (#963)
Browse files Browse the repository at this point in the history
  • Loading branch information
blackcoder87 authored Apr 20, 2024
1 parent d6f02a5 commit 0f793c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/modules/bbcodeconvert/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Config extends Install
{
public $config = [
'key' => 'bbcodeconvert',
'version' => '1.0.7',
'version' => '1.0.8',
'icon_small' => 'fa-solid fa-arrow-right-arrow-left',
'author' => 'ilch.de',
'link' => 'https://www.ilch.de',
Expand Down
6 changes: 3 additions & 3 deletions application/modules/bbcodeconvert/controllers/admin/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@
class Index extends Admin
{
private const supportedModules = [
'contact' => ['2.1.52', '2.1.53', '2.1.54', '2.1.55', '2.1.56', '2.1.57', '2.1.58', '2.1.59'],
'contact' => ['2.1.52', '2.1.53', '2.1.54', '2.1.55', '2.1.56', '2.1.57', '2.1.58', '2.1.59', '2.1.60'],
'events' => ['1.22.0', '1.22.1', '1.22.2'],
'forum' => ['1.33.0', '1.34.0', '1.34.1', '1.34.2', '1.34.3', '1.34.4', '1.34.5', '1.34.6', '1.34.7'],
'guestbook' => ['1.13.0', '1.13.1'],
'jobs' => ['1.6.0'],
'kvticket' => ['1.5.0'],
'radiohoerercharts' => ['1.8.0', '1.8.1', '1.8.2'],
'teams' => ['1.23.0', '1.23.1'],
'user' => ['2.1.52', '2.1.53', '2.1.54', '2.1.55', '2.1.56', '2.1.57', '2.1.58', '2.1.59']
'user' => ['2.1.52', '2.1.53', '2.1.54', '2.1.55', '2.1.56', '2.1.57', '2.1.58', '2.1.59', '2.1.60']
];

private const supportedLayouts = [
'privatlayout' => ['1.1.0', '1.1.1', '1.1.2']
];

// Number of items per batch (work is splitted up).
// Number of items per batch (work is split up).
private const batch = 100;

// Worst case character limits for utf8mb4 (all asian characters or emojis). An utf8mb4 character set can require up to four bytes per character.
Expand Down

0 comments on commit 0f793c4

Please sign in to comment.