Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.1.0 version #56

Merged
merged 1 commit into from
May 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ Server table showing server information about the status, name, number of player

## 🏷️ Requirements

- [IPS Community Suite: 4.5 or 4.6 version](https://invisioncommunity.com/)
- PHP 7.3+ - For IPS 4.5
- [IPS Community Suite: 4.6 or 4.7 version](https://invisioncommunity.com/)
- PHP 7.4+ - For IPS 4.6
- PHP 8.0+ - For IPS 4.7
- [Bzip2](https://www.php.net/manual/en/book.bzip2.php) - Used for A2S Compressed responses,
- ❗❗ Unlocked external ports on the website server (UDP)

Expand Down
2 changes: 1 addition & 1 deletion data/javascript.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<javascript app="axenserverlist">
<file javascript_app="axenserverlist" javascript_location="front" javascript_path="controllers/axenserverlist" javascript_name="aXenServerList.js" javascript_type="controller" javascript_version="10017" javascript_position="1000050"><![CDATA[// Toogle hide
<file javascript_app="axenserverlist" javascript_location="front" javascript_path="controllers/axenserverlist" javascript_name="aXenServerList.js" javascript_type="controller" javascript_version="10018" javascript_position="1000050"><![CDATA[// Toogle hide
document.querySelector('.aXenServerList_toggle_hide')?.addEventListener('click', e => {
e.preventDefault();
const serverList = document.querySelector('.aXenServerList');
Expand Down
2 changes: 1 addition & 1 deletion data/lang.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<language>
<app key="axenserverlist" version="10017">
<app key="axenserverlist" version="10018">
<word key="__app_axenserverlist" js="0">(aXen) Advanced Server List</word>
<word key="module__axenserverlist_servers" js="0">Servers</word>
<word key="frontnavigation_axenserverlist" js="0">Servers</word>
Expand Down
3 changes: 2 additions & 1 deletion data/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
"10014": "1.2.2",
"10015": "1.2.3",
"10016": "2.0.0",
"10017": "2.0.1"
"10017": "2.0.1",
"10018": "2.1.0"
}
24 changes: 24 additions & 0 deletions setup/upg_10018/data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"id": 10018,
"name": "2.1.0",
"steps": {
"queries": false,
"lang": false,
"theme": false,
"themeSettings": false,
"javascript": false,
"emailTemplates": false,
"hooks": false,
"acpSearchKeywords": false,
"settings": false,
"tasks": false,
"modules": false,
"widgets": false,
"whatsnew": false,
"customOptions": false,
"customRoutines": false
},
"forceMainUpgrader": false,
"forceManualDownloadNoCiC": false,
"forceManualDownloadCiC": false
}
2 changes: 1 addition & 1 deletion sources/Servers/Servers.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function form(&$form)
],
]
));
$form->add(new \IPS\Helpers\Form\Url('aXenServerList_admin_table_servers_custom_connect_link', $this->custom_connect_link, false, [], null, null, null, 'aXenServerList_admin_table_servers_custom_connect_link'));
$form->add(new \IPS\Helpers\Form\Text('aXenServerList_admin_table_servers_custom_connect_link', $this->custom_connect_link, false, [], null, null, null, 'aXenServerList_admin_table_servers_custom_connect_link'));

$form->addTab('aXenServerList_admin_table_servers_tab_debug');
$form->add(new \IPS\Helpers\Form\YesNo(
Expand Down