Skip to content

Commit 2ac5e43

Browse files
committed
Release 2.0.0
The following changes have been made: * Add AlterVP * Add and update minified scripts * Update credits * Update jsDelivr URLs to correctly point to the new version, so that they're not cached * Add CDN option in READMEs that missed it * Update README, move translations to their own folder * Update LICENSE, replace year with 2022 and revert an old change that could create a legal issue * Fix #18, hopefully
1 parent 56982c2 commit 2ac5e43

26 files changed

+373
-128
lines changed

LICENSE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT ATTRIBUTION License
22

3-
Copyright (c) 2019-2021 Wybe Network
3+
Copyright (c) 2019-2022 Wybe Network
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -27,5 +27,5 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2727
SOFTWARE.
2828

2929
CREDITS TO THE AUTHORS SHALL NOT BE REMOVED WITHOUT WRITTEN AUTHORIZATION BY THE
30-
AUTHORS THEMSELVES. BY REMOVING THE CREDITS, YOU ARE
30+
AUTHORS THEMSELVES. BY REMOVING THE CREDITS WITHOUT WRITTEN AUTHORIZATION, YOU ARE
3131
NOT ALLOWED TO USE THE SOFTWARE.

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# VistaPanel Customizations
2-
#### A repository filled with JS and CSS scripts for customizing VistaPanel.
2+
[![Available in Greek](https://img.shields.io/badge/Available%20In-Greek-blue.svg?longcache=true&style=for-the-badge&colorA=2abbea)](translations/README_el.md)
3+
4+
**A repository filled with JS and CSS scripts for customizing VistaPanel.**
35

46
You **MUST** read and follow the LICENSE file before using any of the scripts here.
57
Developed by Wybe Network for the MOFH community.
@@ -17,14 +19,14 @@ If you find an issue and want to fix it, submit a PR and we will check it. If it
1719
Go to each script's folder and find the script you want to use. There will be instructions on how to do so.
1820

1921
Read the instructions file first, after understanding it go ahead and
20-
use jsDelivr with the method described in the article
21-
or download the file and upload it to your site or to a CDN.
22+
use jsDelivr / our CDN with the method described in the article,
23+
or download the file and upload it to your site / CDN.
2224

23-
You can also make use of our cdn at https://vpc.cdn.wybenetwork.com/ {scriptname}/{scriptfilename.js}
25+
You can make use of our CDN at https://vpc.cdn.wybenetwork.com/{scriptname}/{scriptfilename.js}.
2426

2527
# Documentation
2628

27-
You can find the documentation for VistaPanel customizations at https://docs.wybenetwork.com/
29+
You can find the documentation for VistaPanel customizations at https://docs.wybenetwork.com.
2830

2931
# Copyright Info
30-
Copyright 2019-2021 © Wybe Network. All Rights Reserved, check the [LICENSE](LICENSE.md) for more details.
32+
Copyright 2019-2022 © Wybe Network. All Rights Reserved, check the [LICENSE](LICENSE.md) for more details.

altervp/README.md

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# AlterVP
2+
3+
## Haven't I heard of this?
4+
You may have, indeed! It was a [tool created by xpde/woxly](https://www.byet.net/index.php?/topic/2705-altervp/), that unfortunately disappeared.
5+
There was no archive of it available, so I [(Anyx)](https://github.com/4yx) recreated it from scratch.
6+
7+
## What does it do?
8+
It has the following features:
9+
* Change the Title
10+
* Change the Protocol
11+
* Change the Logo
12+
* Change the Theme
13+
* Add your own Credits
14+
* Organized Code
15+
* Clean Setup usage
16+
17+
## Where should I put it?
18+
Put it in the Footer Advert Area.
19+
20+
## How can I install it?
21+
Apply this code anywhere, within a script tag:
22+
```js
23+
const AlterVP = {
24+
title: "AlterVP - vPanel",
25+
logo: "logo.png",
26+
protocol: "https",
27+
theme: "dark",
28+
category: "normal", // normal, lite, lightspace
29+
credits: {
30+
desc: "AlterVP",
31+
logo: "small-logo.png"
32+
}
33+
};
34+
```
35+
Replace the values inside with the ones you want for your panel.
36+
37+
Afterwards, create a script tag with `src` pointing to `altervp.js` or `altervp.min.js` for the minified version.
38+
39+
We have also provided a ready code below, along with an explanation as to why GitHub's RAW file output cannot be used.
40+
41+
### Content-Type Header Errors
42+
The RAW option on GitHub can return an incorrect Content-Type header which makes the code not load at all.
43+
To solve this, we need an external service which adds the correct type, like jsDelivr, or our CDN.
44+
45+
The full code, using jsDelivr:
46+
```html
47+
<script type="text/javascript">
48+
const AlterVP = {
49+
title: "AlterVP - vPanel",
50+
logo: "logo.png",
51+
protocol: "https",
52+
theme: "dark",
53+
category: "normal", // normal, lite, lightspace
54+
credits: {
55+
desc: "AlterVP",
56+
logo: "small-logo.png"
57+
}
58+
};
59+
</script>
60+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected]/altervp/altervp.js" type="text/javascript"></script>
61+
```
62+
Alternatively, you can use our CDN:
63+
```html
64+
<script type="text/javascript">
65+
const AlterVP = {
66+
title: "AlterVP - vPanel",
67+
logo: "logo.png",
68+
protocol: "https",
69+
theme: "dark",
70+
category: "normal", // normal, lite, lightspace
71+
credits: {
72+
desc: "AlterVP",
73+
logo: "small-logo.png"
74+
}
75+
};
76+
</script>
77+
<script src="https://vpc.cdn.wybenetwork.com/altervp/altervp.js" type="text/javascript"></script>
78+
```
79+
Feel free to remove the comment line symbol (``//``) that explains the type of theme categories you can have.
80+
81+
## Changelog
82+
* Created on 14 September 2018 by [woxly](https://github.com/woxly)
83+
* Modified on 14 September 2018 by [woxly](https://github.com/woxly)
84+
* Lost in time
85+
* Recreated on 30 August 2022 by [Anyx](https://github.com/4yx)

altervp/altervp.js

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Created on 14 September 2018 by woxly
3+
* Recreated on 30 August 2022 by Anyx
4+
* DO NOT REMOVE CREDITS!
5+
*/
6+
document.addEventListener("DOMContentLoaded", function() {
7+
// Title
8+
document.title = AlterVP.title;
9+
// Protocol
10+
if (window.location.protocol.replace(/:/g,'') !== AlterVP.protocol) {
11+
location.protocol = AlterVP.protocol;
12+
}
13+
// Logo
14+
document.getElementById("imgLogo").src = AlterVP.logo;
15+
// Themes
16+
if (AlterVP.category !== "lightspace") {
17+
themeURL = ['https://vpt.cdn.wybenetwork.com', AlterVP.theme, 'styles.css'].join("/");
18+
if (AlterVP.category == "normal") {
19+
iconURL = ['https://vpt.cdn.wybenetwork.com', AlterVP.theme, 'icon_spritemap.css'].join("/");
20+
icon = document.createElement('link');
21+
icon.type = 'text/css';
22+
icon.rel = 'stylesheet';
23+
icon.href = iconURL;
24+
document.head.appendChild(icon);
25+
}
26+
} else {
27+
themeURL = ['https://vpt.cdn.wybenetwork.com', AlterVP.theme, 'panel.css'].join("/");
28+
}
29+
theme = document.createElement('link');
30+
theme.type = 'text/css';
31+
theme.rel = 'stylesheet';
32+
theme.href = themeURL;
33+
document.head.appendChild(theme);
34+
// Credits
35+
script = document.createElement('script')
36+
script.setAttribute('type', 'text/javascript')
37+
script.innerHTML = "window.addEventListener('load',function(){document.getElementById('imgPoweredByCpanel').src=AlterVP.credits.logo})"
38+
document.body.appendChild(script)
39+
document.getElementById("txtCpanelVersion").innerHTML = AlterVP.credits.desc;
40+
});

altervp/altervp.min.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*
2+
* Created on 14 September 2018 by woxly
3+
* Recreated on 30 August 2022 by Anyx
4+
* DO NOT REMOVE CREDITS!
5+
*/
6+
document.addEventListener("DOMContentLoaded",function(){
7+
// Title
8+
document.title=AlterVP.title,
9+
// Protocol
10+
window.location.protocol.replace(/:/g,"")!==AlterVP.protocol&&(location.protocol=AlterVP.protocol),
11+
// Logo
12+
document.getElementById("imgLogo").src=AlterVP.logo,
13+
// Themes
14+
"lightspace"!==AlterVP.category?(themeURL=["https://vpt.cdn.wybenetwork.com",AlterVP.theme,"styles.css"].join("/"),"normal"==AlterVP.category&&(iconURL=["https://vpt.cdn.wybenetwork.com",AlterVP.theme,"icon_spritemap.css"].join("/"),icon=document.createElement("link"),icon.type="text/css",icon.rel="stylesheet",icon.href=iconURL,document.head.appendChild(icon))):themeURL=["https://vpt.cdn.wybenetwork.com",AlterVP.theme,"panel.css"].join("/"),theme=document.createElement("link"),theme.type="text/css",theme.rel="stylesheet",theme.href=themeURL,document.head.appendChild(theme),
15+
// Credits
16+
script=document.createElement("script"),script.setAttribute("type","text/javascript"),script.innerHTML="window.addEventListener('load',function(){document.getElementById('imgPoweredByCpanel').src=AlterVP.credits.logo})",document.body.appendChild(script),document.getElementById("txtCpanelVersion").innerHTML=AlterVP.credits.desc});

change-language-link-text-changer/change-language-link-text-changer.js

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
/* **************************************************************************
2-
*
1+
/* **************************************************************************
2+
*
33
* VistaPanel Add-on
44
* Script Name: "Change Password" Link and Text Changer
5-
* Author: MAHOfficial & VPT (VistaPanel Team)
6-
* Author URL: https://mahofficial.win
5+
* Author: MAHOfficial & Wybe Network
6+
* Author URL: https://mahofficial.wybenetwork.com
77
* Version: 1.0
8-
* Github Project URL: https://github.com/VPTOfficial/VistaPanel-Customizations
9-
* Official Website URL: https://vpthemes.win
8+
* GitHub Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations
9+
* Official Website URL: https://wybenetwork.com
1010
* This file is licensed under MIT Attribution
1111
* Last Updated on 8th August 2020 by MAHOfficial
1212
*
13-
************************************************************************** */
13+
**************************************************************************
14+
*/
1415
var t = ["item_", "icon-"];
1516
for (n=0; n<=1; n++)
1617
{
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1-
document.getElementById("item_change_language").setAttribute("href",change_language_link),document.getElementById("item_change_language").innerHTML=change_language_text;
1+
/* **************************************************************************
2+
*
3+
* VistaPanel Add-on
4+
* Script Name: "Change Password" Link and Text Changer
5+
* Author: MAHOfficial & Wybe Network
6+
* Author URL: https://mahofficial.wybenetwork.com
7+
* Version: 1.0
8+
* GitHub Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations
9+
* Official Website URL: https://wybenetwork.com
10+
* This file is licensed under MIT Attribution
11+
* Last Updated on 8th August 2020 by MAHOfficial
12+
*
13+
**************************************************************************
14+
*/
15+
var t=["item_","icon-"];for(n=0;n<=1;n++)document.getElementById(`${t[n]}change_language`).setAttribute("href",change_language_link),document.getElementById(`${t[n]}change_language`).innerHTML=change_language_text;

change-language-link-text-changer/readme.md

+15-8
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,40 @@ Basically, it does what the title says!
55
It changes the link and text of the "Change Language" button, allowing you to add your own function there.
66

77
## Where should I put it?
8-
Put it in the Footer Advert Area (Recommended)
8+
Put it in the Footer Advert Area.
99

1010
## How can I install it?
1111

12-
Put the following code in the Footer Advert Area from MyOwnFreeHost admin panel.
12+
Put the following code in the Footer Advert Area on the MyOwnFreeHost admin panel.
1313

1414
Before you do that, make sure to replace `your_website_url` in the code with your website URL and replace `your_text` with the text you want to be shown there.
1515

16-
The `var change_language_link = "your_website_url"` variable will replace the "Change Language" URL from vPanel and the `var change_language_text = "your_text"` variable will replace the "Change Language" text with whatever you enter as text.
16+
The `var change_language_link = "your_website_url"` variable will replace the "Change Language" URL on vPanel and the `var change_language_text = "your_text"` variable will replace the "Change Language" text with whatever you enter as text.
1717

1818

1919
### Content-Type Errors
2020
The RAW option on GitHub can return an incorrect Content-Type header which makes the code not load at all.
21-
To solve this, we need an external service which adds the correct type, like jsDelivr.
21+
To solve this, we need an external service which adds the correct type, like jsDelivr, or our CDN.
2222

2323
The full code, using jsDelivr:
2424

25+
```html
26+
<script type="text/javascript">
27+
var change_language_link = "your_website_url",
28+
change_language_text = "your_text";
29+
</script>
30+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected]/change-language-link-text-changer/change-language-link-text-changer.js" type="text/javascript"></script>
2531
```
32+
Alternatively, you can use our CDN:
33+
```html
2634
<script type="text/javascript">
2735
var change_language_link = "your_website_url",
28-
change_language_text = "your_text";
36+
change_language_text = "your_text";
2937
</script>
30-
<script src="https://cdn.jsdelivr.net/gh/VPTOfficial/VistaPanel-Customizations/change-language-link-text-changer/change-language-link-text-changer.js" type="text/javascript"></script>
38+
<script src="https://vpc.cdn.wybenetwork.com/change-language-link-text-changer/change-language-link-text-changer.js" type="text/javascript"></script>
3139
```
3240

33-
3441
## Can I remove credits?
3542
No. The license mentions it.
3643

37-
You can request credit removal at our [support forums](https://vpthemes.win) or on our [Discord Server](https://discord.gg/FTyFXsU).
44+
You can request credit removal at our [support forums](https://wybenetwork.com) or on our [Discord Server](https://dsc.gg/ifastnet).

change-password-link-text-changer/change-password-link-text-changer.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
/**
2-
* Vista Panel Add-on
1+
/*
2+
* VistaPanel Add-on
33
* Script Name: "Change Password" Link and Text Changer
4-
* Author: MAHOfficial & VPT (Vista Panel Themes) Team
5-
* Author URL: https://mahofficial.win
4+
* Author: MAHOfficial & Wybe Network
5+
* Author URL: https://mahofficial.wybenetwork.com
66
* Version: 1.0
7-
* Github Project URL: https://github.com/VPTOfficial/VistaPanel-Customizations
8-
* Official Website URL: https://vpthemes.win
9-
* This file is licensed under MIT
7+
* Github Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations
8+
* Official Website URL: https://wybenetwork.com
9+
* This file is licensed under MIT Attribution
1010
*
1111
* Modified at 2 November 2018 by PlanetCloud
1212
*/
Original file line numberDiff line numberDiff line change
@@ -1 +1,13 @@
1-
var n=document.getElementById("lnkUserPrefChangePwd");n.setAttribute("href",change_password_link);n.innerHTML=change_password_text;
1+
/*
2+
* VistaPanel Add-on
3+
* Script Name: "Change Password" Link and Text Changer
4+
* Author: MAHOfficial & Wybe Network
5+
* Author URL: https://mahofficial.wybenetwork.com
6+
* Version: 1.0
7+
* Github Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations
8+
* Official Website URL: https://wybenetwork.com
9+
* This file is licensed under MIT Attribution
10+
*
11+
* Modified at 2 November 2018 by PlanetCloud
12+
*/
13+
var n=document.getElementById("lnkUserPrefChangePwd");n.setAttribute("href",change_password_link),n.innerHTML=change_password_text;

change-password-link-text-changer/readme.md

+15-7
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,39 @@ Basically, it does what the title says!
55
It changes the link and text of the "Change Password" button, allowing you to add your own function there.
66

77
## Where should I put it?
8-
Put it in the Footer Advert Area (Recommended)
8+
Put it in the Footer Advert Area.
99

1010
## How can I install it?
1111

12-
Put the following code in the Footer Advert Area from MyOwnFreeHost admin panel.
12+
Put the following code in the Footer Advert Area on the MyOwnFreeHost admin panel.
1313

1414
Before you do that, make sure to replace `your_website_url` in the code with your website URL and replace `your_text` with the text you want to be shown there.
1515

16-
The `var change_language_link = "your_website_url"` variable will replace the "Change Password" URL from vPanel and the `var change_language_text = "your_text"` variable will replace the "Change Password" text with whatever you enter as text.
16+
The `var change_password_link = "your_website_url"` variable will replace the "Change Password" URL on vPanel and the `var change_password_text = "your_text"` variable will replace the "Change Password" text with whatever you enter as text.
1717

1818
### Content-Type Errors
1919
The RAW option on GitHub can return an incorrect Content-Type header which makes the code not load at all.
20-
To solve this, we need an external service which adds the correct type, like jsDelivr.
20+
To solve this, we need an external service which adds the correct type, like jsDelivr, or our CDN.
2121

2222
The full code, using jsDelivr:
2323

24+
```html
25+
<script type="text/javascript">
26+
var change_password_link = "your_website_url",
27+
change_password_text = "your_text";
28+
</script>
29+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected]/change-password-link-text-changer/change-password-link-text-changer.js" type="text/javascript"></script>
2430
```
31+
Alternatively, you can use our CDN:
32+
```html
2533
<script type="text/javascript">
2634
var change_password_link = "your_website_url",
27-
change_password_text = "your_text";
35+
change_password_text = "your_text";
2836
</script>
29-
<script src="https://cdn.jsdelivr.net/gh/VPTOfficial/VistaPanel-Customizations/change-password-link-text-changer/change-password-link-text-changer.js" type="text/javascript"></script>
37+
<script src="https://vpc.cdn.wybenetwork.com/change-password-link-text-changer/change-password-link-text-changer.js" type="text/javascript"></script>
3038
```
3139

3240
## Can I remove credits?
3341
No. The license mentions it.
3442

35-
You can request credit removal at our [support forums](https://vpthemes.win) or on our [Discord Server](https://discord.gg/FTyFXsU).
43+
You can request credit removal at our [support forums](https://wybenetwork.com) or on our [Discord Server](https://dsc.gg/ifastnet).
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Created at 10 July 2018 by PlanetCloud
3+
* Last modified at 02 November 2018 by PlanetCloud
4+
* DO NOT REMOVE CREDITS!
5+
*/
16
document.addEventListener("DOMContentLoaded", function() {
27
if ("undefined" !== typeof b) {
38
var a = document.getElementById("lnkPoweredByCpanel"),
@@ -11,11 +16,4 @@ document.addEventListener("DOMContentLoaded", function() {
1116
'" style="display:inline-block; z-index:2147483647; visibility:visible;">';
1217
d.innerHTML = b.company_started < c ? "\u00a9 " + b.company_started + "-" + c + " " + b.company_name + "." : "\u00a9 " + c + " " + b.company_name + "."
1318
}
14-
15-
/*
16-
* Created at 10 July 2018 by PlanetCloud
17-
* Lase modified at 02 November 2018 by PlanetCloud
18-
* DO NOT REMOVE CREDITS!
19-
*/
20-
2119
});

cpanel-logo-to-copyright/cpanel-logo-to-copyright.min.js

+6-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)