Revert "Complete rebrand from Open Game Panel (OGP) to GameServer Panel (GSP)"

This commit is contained in:
Frank Harris 2025-09-08 12:42:34 -05:00 committed by GitHub
parent 02c94766c6
commit deee7d6ac5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
308 changed files with 1412 additions and 1412 deletions

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before After
Before After

View file

@ -411,7 +411,7 @@ $(document).ready(function()
var boxClass = 'login-box';
var headerContent = '\
<!--<h1>' + headTitle + '</h1>-->\
<img src="themes/AdminLTE/dist/img/gsp_logo_dark.svg" class="brand-image">\
<img src="themes/AdminLTE/dist/img/ogp_logo_dark.svg" class="brand-image">\
';
if(new_form !== undefined)
@ -931,12 +931,12 @@ $(document).ready(function()
/* *** Footer Mod *** */
$('.main-footer .GSPVersionArea').addClass('d-none');
$('.main-footer .OGPVersionArea').addClass('d-none');
$('.main-footer a').attr('target', '_blank').addClass('text-dark');
$('.main-footer .footer').html($('.main-footer .footer').html().replace("Theme - ", "Theme for OGP by <a href='https://www.ondsen.ch' target='_blank' class='text-dark'>oNdsen</a> - "))
$('.main-footer .footer.center').removeClass('center');
$('.main-footer .GSPVersionArea .version').remove()
$('.main-footer .GSPVersionArea').removeClass('inline-block').addClass('d-inline-block');
$('.main-footer .OGPVersionArea .version').remove()
$('.main-footer .OGPVersionArea').removeClass('inline-block').addClass('d-inline-block');
$('.main-footer .footer > br').last().remove()
}
@ -1173,17 +1173,17 @@ $(window).load(function()
$('.main-footer .versionInfo').click(function()
{
$('.GSPVersionArea, .GSPVersionArea .version, .GSPVersionArea .versionNumber').removeClass('d-none').removeClass('hide');
$('.OGPVersionArea, .OGPVersionArea .version, .OGPVersionArea .versionNumber').removeClass('d-none').removeClass('hide');
// add blink class to versionNumber
$('.GSPVersionArea .versionNumber').addClass('shortblink');
$('.OGPVersionArea .versionNumber').addClass('shortblink');
// remove after 4 seconds
setTimeout(function(){
$('.GSPVersionArea .versionNumber').removeClass('shortblink');
$('.OGPVersionArea .versionNumber').removeClass('shortblink');
}, 4000);
var copy = copyToClipboard($('.GSPVersionArea .versionNumber'));
toastr.info('"' + copy + '" ' + $('.GSPVersionArea .copyVersionResult').attr('lang'));
var copy = copyToClipboard($('.OGPVersionArea .versionNumber'));
toastr.info('"' + copy + '" ' + $('.OGPVersionArea .copyVersionResult').attr('lang'));
});
// circular notifications
if($('body > #notification').length > 0)
@ -1287,7 +1287,7 @@ function themeChanger(changeTo, save = false)
if(!localStorage.getItem('themeLogo'))
{
$('img.brand-image').attr('src', 'themes/AdminLTE/dist/img/gsp_logo_dark.svg');
$('img.brand-image').attr('src', 'themes/AdminLTE/dist/img/ogp_logo_dark.svg');
}
$('link[href*="jquery-ui.min"]').attr('href', 'themes/AdminLTE/plugins/jquery-ui/jquery-ui.min.dark.css');
@ -1318,7 +1318,7 @@ function themeChanger(changeTo, save = false)
if(!localStorage.getItem('themeLogo'))
{
$('img.brand-image').attr('src', 'themes/AdminLTE/dist/img/gsp_logo_light.svg');
$('img.brand-image').attr('src', 'themes/AdminLTE/dist/img/ogp_logo_light.svg');
}
$('link[href*="jquery-ui.min"]').attr('href', 'themes/AdminLTE/plugins/jquery-ui/jquery-ui.min.light.css');
@ -1349,7 +1349,7 @@ function themeChanger(changeTo, save = false)
if(!localStorage.getItem('themeLogo'))
{
$('img.brand-image').attr('src', 'themes/AdminLTE/dist/img/gsp_logo_dark.svg');
$('img.brand-image').attr('src', 'themes/AdminLTE/dist/img/ogp_logo_dark.svg');
}
$('link[href*="jquery-ui.min"]').attr('href', 'themes/AdminLTE/plugins/jquery-ui/jquery-ui.min.light.css');

View file

@ -84,7 +84,7 @@ class Theme
$firstRemoteServer = $this->getOGPServers();
if($firstRemoteServer)
{
$remote = new GSPRemoteLibrary($firstRemoteServer[0]['agent_ip'], $firstRemoteServer[0]['agent_port'], $firstRemoteServer[0]['encryption_key'], $firstRemoteServer[0]['timeout']);
$remote = new OGPRemoteLibrary($firstRemoteServer[0]['agent_ip'], $firstRemoteServer[0]['agent_port'], $firstRemoteServer[0]['encryption_key'], $firstRemoteServer[0]['timeout']);
if($remote->status_chk() != 1)
{
return false;
@ -238,8 +238,8 @@ class Theme
foreach($serverHomes AS $key => $shData)
{
// check if the screen running the server is running.
$remote = new GSPRemoteLibrary($shData['agent_ip'], $shData['agent_port'], $shData['encryption_key'], $shData['timeout']);
if( $remote->is_screen_running(GSP_SCREEN_TYPE_HOME, $shData['home_id']))
$remote = new OGPRemoteLibrary($shData['agent_ip'], $shData['agent_port'], $shData['encryption_key'], $shData['timeout']);
if( $remote->is_screen_running(OGP_SCREEN_TYPE_HOME, $shData['home_id']))
{
$queryData = $this->getProtocolAndQuery($serverHomes[$key]);
$serverHomes[$key]['qProtocol'] = $queryData['qProtocol'];

View file

@ -74,7 +74,7 @@
<aside class="main-sidebar sidebar-dark-primary elevation-4">
<!-- Brand Logo -->
<a class="brand-link text-center">
<img src="themes/AdminLTE/dist/img/gsp_logo_dark.svg" class="brand-image">
<img src="themes/AdminLTE/dist/img/ogp_logo_dark.svg" class="brand-image">
</a>
<!-- Sidebar -->

View file

@ -5,7 +5,7 @@ Part of the ZPE-Online Master Control Program (MCP) Project.
![image](https://user-images.githubusercontent.com/80121347/115991244-90b43d80-a5bf-11eb-8d98-f0236e80d207.png)
NOTE!!! The Master Control Program (MCP) will be under constant changes as it evolves over time, there will be no "VERSIONS" as there is no "End Goal", So please make sure to regularly update to get latest version until we are able to implement an automatc update feature. Always keep checking this repository. Please make sure to report any problems in this github projects issues. Alternatively you can also join our discord server to talk more about this or for giving us feedback! also you can visit our Master Control Program Theme thread on the following two forums For GameServer Panel Related feedback or issues: https://www.opengamepanel.org/forum/viewthread.php?thread_id=7620 For Non GameServer Panel related feedback or issues: https://www.zpeonline.co.uk/forum
NOTE!!! The Master Control Program (MCP) will be under constant changes as it evolves over time, there will be no "VERSIONS" as there is no "End Goal", So please make sure to regularly update to get latest version until we are able to implement an automatc update feature. Always keep checking this repository. Please make sure to report any problems in this github projects issues. Alternatively you can also join our discord server to talk more about this or for giving us feedback! also you can visit our Master Control Program Theme thread on the following two forums For Open Game Panel Related feedback or issues: https://www.opengamepanel.org/forum/viewthread.php?thread_id=7620 For Non Open Game Panel related feedback or issues: https://www.zpeonline.co.uk/forum
Enjoy!!.
@ -19,7 +19,7 @@ Currently this theme is and the project is still in early development, so please
ZPE-Online discord server
github repository issues
theme thread of the GameServer Panel forum
theme thread of the Open Game Panel forum
Master Control Program section of the ZPE-Online Forum
Your feedback is essential so the MCP theme and other developments we make can further be improved and help this project evolve.

View file

@ -209,7 +209,7 @@ h4.collapse,
.inline-block{
display: inline-block;
}
div.GSPVersionArea{
div.OGPVersionArea{
width: 100%;
position: relative;
}

View file

@ -38,7 +38,7 @@ $(document).ready(function() {
});
$('.magnificContentsDiv').bind("DOMSubtreeModified",function(){
$('.updateLink, .gspAPIActions').addClass('form-control').css('display','inline-block');
$('.updateLink, .ogpAPIActions').addClass('form-control').css('display','inline-block');
$('.copyButton').addClass('btn').addClass('btn-sm').addClass('btn-primary');
});

View file

@ -18,16 +18,16 @@
<p2>Open Game Panel</p2>
<ul>
<li>
<a href="http://www.gameserver-panel.org" shape="rect" target="_blank">OGP Website</a>
<a href="http://www.opengamepanel.org" shape="rect" target="_blank">OGP Website</a>
</li>
<li>
<a href="https://sourceforge.net/apps/trac/hldstart/wiki" shape="rect" target="_blank">OGP Wiki</a>
</li>
<li>
<a href="http://www.gameserver-panel.org/infusions/pro_download_panel/download.php?catid=0" shape="rect" target="_blank">Downloads</a>
<a href="http://www.opengamepanel.org/infusions/pro_download_panel/download.php?catid=0" shape="rect" target="_blank">Downloads</a>
</li>
<li>
<a href="http://www.gameserver-panel.org/infusions/chat/index.php" shape="rect" target="_blank">Chat Room</a>
<a href="http://www.opengamepanel.org/infusions/chat/index.php" shape="rect" target="_blank">Chat Room</a>
</li>
<li>
<a href="http://sourceforge.net/p/hldstart/code/HEAD/log/" shape="rect" target="_blank">Developer Logs</a>
@ -38,19 +38,19 @@
<p2>Fast Discussion Forum</p2>
<ul>
<li>
<a href="http://www.gameserver-panel.org/forum" shape="rect" target="_blank">OGP Discussion Forums</a>
<a href="http://www.opengamepanel.org/forum" shape="rect" target="_blank">OGP Discussion Forums</a>
</li>
<li>
<a href="http://www.gameserver-panel.org/forum/viewforum.php?forum_id=2" shape="rect" target="_blank">Support</a>
<a href="http://www.opengamepanel.org/forum/viewforum.php?forum_id=2" shape="rect" target="_blank">Support</a>
</li>
<li>
<a href="http://www.gameserver-panel.org/forum/viewforum.php?forum_id=4" shape="rect" target="_blank">Feature Request</a>
<a href="http://www.opengamepanel.org/forum/viewforum.php?forum_id=4" shape="rect" target="_blank">Feature Request</a>
</li>
<li>
<a href="http://www.gameserver-panel.org/forum/viewforum.php?forum_id=5" shape="rect" target="_blank">Patches/Contributions</a>
<a href="http://www.opengamepanel.org/forum/viewforum.php?forum_id=5" shape="rect" target="_blank">Patches/Contributions</a>
</li>
<li>
<a href="http://www.gameserver-panel.org/articles.php?article_id=6" shape="rect" target="_blank">Game Config Help (XML files)</a>
<a href="http://www.opengamepanel.org/articles.php?article_id=6" shape="rect" target="_blank">Game Config Help (XML files)</a>
</li>
</ul>
</div>

View file

@ -254,7 +254,7 @@ h4.collapse,
.inline-block{
display: inline-block;
}
div.GSPVersionArea{
div.OGPVersionArea{
width: 100%;
position: relative;
}

View file

@ -38,7 +38,7 @@ $(document).ready(function() {
});
$('.magnificContentsDiv').bind("DOMSubtreeModified",function(){
$('.updateLink, .gspAPIActions').addClass('form-control').css('display','inline-block');
$('.updateLink, .ogpAPIActions').addClass('form-control').css('display','inline-block');
$('.copyButton').addClass('btn').addClass('btn-sm').addClass('btn-primary');
});