Skip to content

Commit 787e3b3

Browse files
committed
Release 2.0.2
Allow disabling certain features of AlterVP.
1 parent 5d63db6 commit 787e3b3

File tree

9 files changed

+53
-38
lines changed

9 files changed

+53
-38
lines changed

altervp/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const AlterVP = {
3232
}
3333
};
3434
```
35-
Replace the values inside with the ones you want for your panel.
35+
Replace the values inside with the ones you want for your panel. You can comment out the lines of the features you do not wish to use.
3636

3737
Afterwards, create a script tag with `src` pointing to `altervp.js` or `altervp.min.js` for the minified version.
3838

@@ -57,7 +57,7 @@ const AlterVP = {
5757
}
5858
};
5959
</script>
60-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/altervp/altervp.js" type="text/javascript"></script>
60+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/altervp/altervp.js" type="text/javascript"></script>
6161
```
6262
Alternatively, you can use our CDN:
6363
```html
@@ -83,3 +83,4 @@ Feel free to remove the comment line symbol (``//``) that explains the type of t
8383
* Modified on 14 September 2018 by [woxly](https://github.com/woxly)
8484
* Lost in time
8585
* Recreated on 30 August 2022 by [Anyx](https://github.com/4yx)
86+
* Last modified on 3 September 2022 by [Anyx](https://github.com/4yx)

altervp/altervp.js

+38-25
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,53 @@
11
/*
22
* Created on 14 September 2018 by woxly
33
* Recreated on 30 August 2022 by Anyx
4+
* Modified on 3 September 2022 by Anyx
45
* DO NOT REMOVE CREDITS!
56
*/
67
document.addEventListener("DOMContentLoaded", function() {
78
// Title
8-
document.title = AlterVP.title;
9+
if (AlterVP.title !== undefined) {
10+
document.title = AlterVP.title;
11+
}
912
// Protocol
10-
if (window.location.protocol.replace(/:/g,'') !== AlterVP.protocol) {
11-
location.protocol = AlterVP.protocol;
13+
if (AlterVP.protocol !== undefined) {
14+
if (window.location.protocol.replace(/:/g,'') !== AlterVP.protocol) {
15+
location.protocol = AlterVP.protocol;
16+
}
1217
}
1318
// Logo
14-
document.getElementById("imgLogo").src = AlterVP.logo;
19+
if (AlterVP.logo !== undefined) {
20+
document.getElementById("imgLogo").src = AlterVP.logo;
21+
}
1522
// 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);
23+
if (AlterVP.theme !== undefined && AlterVP.category !== undefined) {
24+
if (AlterVP.category !== "lightspace") {
25+
themeURL = ['https://vpt.cdn.wybenetwork.com', AlterVP.theme, 'styles.css'].join("/");
26+
if (AlterVP.category == "normal") {
27+
iconURL = ['https://vpt.cdn.wybenetwork.com', AlterVP.theme, 'icon_spritemap.css'].join("/");
28+
icon = document.createElement('link');
29+
icon.type = 'text/css';
30+
icon.rel = 'stylesheet';
31+
icon.href = iconURL;
32+
document.head.appendChild(icon);
33+
}
34+
} else {
35+
themeURL = ['https://vpt.cdn.wybenetwork.com', AlterVP.theme, 'panel.css'].join("/");
2536
}
26-
} else {
27-
themeURL = ['https://vpt.cdn.wybenetwork.com', AlterVP.theme, 'panel.css'].join("/");
37+
theme = document.createElement('link');
38+
theme.type = 'text/css';
39+
theme.rel = 'stylesheet';
40+
theme.href = themeURL;
41+
document.head.appendChild(theme);
2842
}
29-
theme = document.createElement('link');
30-
theme.type = 'text/css';
31-
theme.rel = 'stylesheet';
32-
theme.href = themeURL;
33-
document.head.appendChild(theme);
3443
// 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;
44+
if (AlterVP.credits.logo !== undefined) {
45+
script = document.createElement('script')
46+
script.setAttribute('type', 'text/javascript')
47+
script.innerHTML = "window.addEventListener('load',function(){document.getElementById('imgPoweredByCpanel').src=AlterVP.credits.logo,document.getElementById('txtCpanelVersion').innerHTML=AlterVP.credits.desc})"
48+
document.body.appendChild(script)
49+
}
50+
if (AlterVP.credits.desc !== undefined) {
51+
document.getElementById("txtCpanelVersion").innerHTML = AlterVP.credits.desc;
52+
}
4053
});

altervp/altervp.min.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
/*
22
* Created on 14 September 2018 by woxly
33
* Recreated on 30 August 2022 by Anyx
4+
* Modified on 3 September 2022 by Anyx
45
* DO NOT REMOVE CREDITS!
56
*/
67
document.addEventListener("DOMContentLoaded",function(){
78
// Title
8-
document.title=AlterVP.title,
9+
void 0!==AlterVP.title&&(document.title=AlterVP.title),
910
// Protocol
10-
window.location.protocol.replace(/:/g,"")!==AlterVP.protocol&&(location.protocol=AlterVP.protocol),
11+
void 0!==AlterVP.protocol&&window.location.protocol.replace(/:/g,"")!==AlterVP.protocol&&(location.protocol=AlterVP.protocol),
1112
// Logo
12-
document.getElementById("imgLogo").src=AlterVP.logo,
13+
void 0!==AlterVP.logo&&(document.getElementById("imgLogo").src=AlterVP.logo),
1314
// 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+
void 0!==AlterVP.theme&&void 0!==AlterVP.category&&("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)),
1516
// 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});
17+
void 0!==AlterVP.credits.logo&&(script=document.createElement("script"),script.setAttribute("type","text/javascript"),script.innerHTML="window.addEventListener('load',function(){document.getElementById('imgPoweredByCpanel').src=AlterVP.credits.logo,document.getElementById('txtCpanelVersion').innerHTML=AlterVP.credits.desc})",document.body.appendChild(script)),void 0!==AlterVP.credits.desc&&(document.getElementById("txtCpanelVersion").innerHTML=AlterVP.credits.desc)});

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The full code, using jsDelivr:
2727
var change_language_link = "your_website_url",
2828
change_language_text = "your_text";
2929
</script>
30-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/change-language-link-text-changer/change-language-link-text-changer.js" type="text/javascript"></script>
30+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/change-language-link-text-changer/change-language-link-text-changer.js" type="text/javascript"></script>
3131
```
3232
Alternatively, you can use our CDN:
3333
```html

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The full code, using jsDelivr:
2626
var change_password_link = "your_website_url",
2727
change_password_text = "your_text";
2828
</script>
29-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/change-password-link-text-changer/change-password-link-text-changer.js" type="text/javascript"></script>
29+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/change-password-link-text-changer/change-password-link-text-changer.js" type="text/javascript"></script>
3030
```
3131
Alternatively, you can use our CDN:
3232
```html

cpanel-logo-to-copyright/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The full code, using jsDelivr:
4646
}
4747
4848
</script>
49-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/cpanel-logo-to-copyright/cpanel-logo-to-copyright.js" type="text/javascript"></script>
49+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/cpanel-logo-to-copyright/cpanel-logo-to-copyright.js" type="text/javascript"></script>
5050
```
5151
Alternatively, you can use our CDN:
5252
```html

dropdown-bug-fix/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To solve this, we need an external service which adds the correct type, like jsD
1818

1919
The full code, using jsDelivr:
2020
```html
21-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script>
21+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script>
2222
```
2323
Alternatively, you can use our CDN:
2424
```html

responsive-domain-search/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The full code, using jsDelivr:
3232
affCode = "AFFILIATE_CODE_HERE";
3333
*/
3434
</script>
35-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/responsive-domain-search/responsive-domain-search.js" type="text/javascript"></script>
35+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/responsive-domain-search/responsive-domain-search.js" type="text/javascript"></script>
3636
```
3737
Alternatively, you can use our CDN:
3838
```html

tutorial-link-changer/readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The full code, using jsDelivr:
3737
tutorial : "YOUR TUTORIAL LINK WITH HTTP(S) PROTOCOL",
3838
}
3939
</script>
40-
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].1/tutorial-link-changer/tutorial-link-changer.js" type="text/javascript"></script>
40+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].2/tutorial-link-changer/tutorial-link-changer.js" type="text/javascript"></script>
4141
```
4242
Alternatively, you can use our CDN:
4343
```html

0 commit comments

Comments
 (0)