Skip to content

3.8

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Jun 16:36
· 108 commits to main since this release

Release notes V 3.8

Major Update to RANKS module (Modulerization for future plugins)

  • Now you can have multiple server with RANKS module on same panel
  • Previous RANKS module settings is now removed from .env
  • To configure the multiple servers of RANKS module go to settings>Module Settings> Add new settings and fill in your other servers database details and save
  • VIP module is now login protected ( To view you need to login via steam)

Upgrade Guide

Create below table

CREATE TABLE `module_server_settings` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `module_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `db_host` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `db_user` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `db_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `port` int NOT NULL DEFAULT '3306',
  `db_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `active` tinyint(1) DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci

With modules now available SKINS will also be moved to multi server support on same panel in future !!STAY TUNED!!!

image
image

Installation Docs: https://docs.cssbans.online

Upgrade Guide: https://docs.cssbans.online/how-to-update-panel-to-the-latest-version

What's Changed

Full Changelog: 3.7...3.8