Skip to content

Commit dfc91ed

Browse files
committed
Release 2.0.3
The following changes were made: * Update credits, in a way that does not preserve needless comments. Enforce a consistent style on date writing. * Fix bug in AlterVP that caused the code for the credits description to be executed even if disabled. * Update Tutorial Link Changer, with a much better way of replacing the link, and fixing an issue where it would not be replaced sometimes. If you still face an issue, feel free to update #18 or make a new issue.
1 parent 787e3b3 commit dfc91ed

23 files changed

+117
-114
lines changed

altervp/README.md

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

altervp/altervp.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
/*
1+
/* @preserve
22
* Created on 14 September 2018 by woxly
3-
* Recreated on 30 August 2022 by Anyx
4-
* Modified on 3 September 2022 by Anyx
3+
* Recreated on 30 August and modified on 03 September 2022 by Anyx
4+
* Last modified on 13 September 2022 by Anyx
55
* DO NOT REMOVE CREDITS!
6+
* Created for: Wybe Network.
67
*/
78
document.addEventListener("DOMContentLoaded", function() {
89
// Title
@@ -44,7 +45,7 @@ document.addEventListener("DOMContentLoaded", function() {
4445
if (AlterVP.credits.logo !== undefined) {
4546
script = document.createElement('script')
4647
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+
script.innerHTML = "window.addEventListener('load',function(){document.getElementById('imgPoweredByCpanel').src=AlterVP.credits.logo})"
4849
document.body.appendChild(script)
4950
}
5051
if (AlterVP.credits.desc !== undefined) {

altervp/altervp.min.js

+5-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
/* **************************************************************************
2-
*
1+
/* **************************************************************************
2+
* @preserve
33
* VistaPanel Add-on
4-
* Script Name: "Change Password" Link and Text Changer
5-
* Author: MAHOfficial & Wybe Network
6-
* Author URL: https://mahofficial.wybenetwork.com
4+
* Script Name: "Change Language" Link and Text Changer
5+
* Author: AADev & Wybe Network
6+
* Author URL: https://aadev.wybenetwork.com
77
* Version: 1.0
88
* GitHub Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations
99
* Official Website URL: https://wybenetwork.com
1010
* This file is licensed under MIT Attribution
11-
* Last Updated on 8th August 2020 by MAHOfficial
12-
*
11+
* Last Updated on 08 August 2020 by AADev
1312
**************************************************************************
1413
*/
1514
var t = ["item_", "icon-"];
1615
for (n=0; n<=1; n++)
1716
{
1817
document.getElementById(`${t[n]}change_language`).setAttribute("href", change_language_link)
1918
document.getElementById(`${t[n]}change_language`).innerHTML=change_language_text;
20-
}
19+
}
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
/* **************************************************************************
2-
*
1+
/* **************************************************************************
2+
* @preserve
33
* VistaPanel Add-on
4-
* Script Name: "Change Password" Link and Text Changer
5-
* Author: MAHOfficial & Wybe Network
6-
* Author URL: https://mahofficial.wybenetwork.com
4+
* Script Name: "Change Language" Link and Text Changer
5+
* Author: AADev & Wybe Network
6+
* Author URL: https://aadev.wybenetwork.com
77
* Version: 1.0
88
* GitHub Project URL: https://github.com/WybeNetwork/VistaPanel-Customizations
99
* Official Website URL: https://wybenetwork.com
1010
* This file is licensed under MIT Attribution
11-
* Last Updated on 8th August 2020 by MAHOfficial
12-
*
11+
* Last Updated on 08 August 2020 by AADev
1312
**************************************************************************
1413
*/
1514
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

+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].2/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].3/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
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
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-
*/
1+
/* **************************************************************************
2+
* @preserve
3+
* VistaPanel Add-on
4+
* Script Name: "Change Password" Link and Text Changer
5+
* Author: AADev & Wybe Network
6+
* Author URL: https://aadev.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+
* Modified at 02 November 2018 by PlanetCloud
12+
**************************************************************************
13+
*/
1314
var n = document.getElementById("lnkUserPrefChangePwd");
1415
n.setAttribute("href", change_password_link);
15-
n.innerHTML = change_password_text;
16+
n.innerHTML = change_password_text;
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
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-
*/
1+
/* **************************************************************************
2+
* @preserve
3+
* VistaPanel Add-on
4+
* Script Name: "Change Password" Link and Text Changer
5+
* Author: AADev & Wybe Network
6+
* Author URL: https://aadev.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+
* Modified at 02 November 2018 by PlanetCloud
12+
**************************************************************************
13+
*/
1314
var n=document.getElementById("lnkUserPrefChangePwd");n.setAttribute("href",change_password_link),n.innerHTML=change_password_text;

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].2/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].3/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/cpanel-logo-to-copyright.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
/*
1+
/* @preserve
22
* Created at 10 July 2018 by PlanetCloud
33
* Last modified at 02 November 2018 by PlanetCloud
44
* DO NOT REMOVE CREDITS!
5+
* Created for: Wybe Network.
56
*/
67
document.addEventListener("DOMContentLoaded", function() {
78
if ("undefined" !== typeof b) {
@@ -16,4 +17,4 @@ document.addEventListener("DOMContentLoaded", function() {
1617
'" style="display:inline-block; z-index:2147483647; visibility:visible;">';
1718
d.innerHTML = b.company_started < c ? "\u00a9 " + b.company_started + "-" + c + " " + b.company_name + "." : "\u00a9 " + c + " " + b.company_name + "."
1819
}
19-
});
20+
});

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

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

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].2/cpanel-logo-to-copyright/cpanel-logo-to-copyright.js" type="text/javascript"></script>
49+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].3/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].2/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script>
21+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].3/dropdown-bug-fix/dropdown-bug-fix.js" type="text/javascript"></script>
2222
```
2323
Alternatively, you can use our CDN:
2424
```html

dropdown-bug-fix/dropdown-bug-fix.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/* @preserve
22
* Created at 06 August 2022 by Anyx.
33
* DO NOT REMOVE CREDITS!
44
* Created for: Wybe Network.

dropdown-bug-fix/dropdown-bug-fix.min.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*
1+
/* @preserve
22
* Created at 06 August 2022 by Anyx.
33
* DO NOT REMOVE CREDITS!
44
* Created for: Wybe Network.

responsive-domain-search/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ It makes the VistaPanel search form responsive, so that it does not break the vP
55

66
## Where should I put it?
77
Put it in the Header Advert Area (IMPORTANT).
8-
Due to [this issue](https://github.com/VPTOfficial/VistaPanel-Customizations/issues/4) reported by [MAHOfficial](https://github.com/mahofficial), the code doesn't seem to run properly if you put it elsewhere. Thanks for reporting it.
8+
Due to [this issue](https://github.com/VPTOfficial/VistaPanel-Customizations/issues/4) reported by [AADev](https://github.com/mahofficial), the code doesn't seem to run properly if you put it elsewhere. Thanks for reporting it.
99

1010
## How can I install it?
1111
Create a script tag with `src` pointing to `responsive-domain-search.js` or `responsive-domain-search.min.js` for the minified version.
@@ -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].2/responsive-domain-search/responsive-domain-search.js" type="text/javascript"></script>
35+
<script src="https://cdn.jsdelivr.net/gh/WybeNetwork/[email protected].3/responsive-domain-search/responsive-domain-search.js" type="text/javascript"></script>
3636
```
3737
Alternatively, you can use our CDN:
3838
```html
@@ -46,9 +46,9 @@ Alternatively, you can use our CDN:
4646
Do not forget to remove the comment lines symbols (``/* OPTIONAL``and ``*/``) if you want your affiliate code to work.
4747
## Changelog
4848
* Created on 10 July 2018 by [PlanetCloud](https://github.com/PlanetTheCloud)
49-
* Modified at 27 July 2018 by Christine (Cyrl)
50-
* Modified at 25 August 2018 by [Anyx](https://github.com/4yx)
51-
* Modified on 28th September 2018 by [MAHOfficial](https://github.com/mahofficial) and [Anyx](https://github.com/4yx)
52-
* Modified on 30th September 2018 by [PlanetCloud](https://github.com/PlanetTheCloud)
53-
* Modified on 22th November 2018 by [Anyx](https://github.com/4yx)
54-
* Last modified on 06th August 2022 by [Anyx](https://github.com/4yx)
49+
* Modified on 27 July 2018 by Christine (Cyrl)
50+
* Modified on 25 August 2018 by [Anyx](https://github.com/4yx)
51+
* Modified on 28 September 2018 by [AADev](https://github.com/mahofficial) and [Anyx](https://github.com/4yx)
52+
* Modified on 30 September 2018 by [PlanetCloud](https://github.com/PlanetTheCloud)
53+
* Modified on 22 November 2018 by [Anyx](https://github.com/4yx)
54+
* Last modified on 06 August 2022 by [Anyx](https://github.com/4yx)

responsive-domain-search/responsive-domain-search.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/*
2-
* Created at 10 July 2018 by PlanetCloud.
3-
* Modified at 02 November 2018 by PlanetCloud.
1+
/* @preserve
2+
* Created at 10 July and modified at 02 November 2018 by PlanetCloud.
43
* Modified at 16 March 2019 by Dog2puppy.
54
* Last modified at 06 August 2022 by Anyx.
65
* DO NOT REMOVE CREDITS!
@@ -27,4 +26,4 @@ document.addEventListener("DOMContentLoaded", function() {
2726
widget.innerHTML = "";
2827
widget.appendChild(row)
2928
})
30-
});
29+
});

responsive-domain-search/responsive-domain-search.min.js

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

theme-switcher/switcher.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
/*
2-
* Created at 29 December 2018 by RanaKHAS
3-
* Modified at 23 June 2021 by MAHOfficial
4-
* DO NOT REMOVE CREDITS!
1+
/* @preserve
2+
* Created at 29 December 2018 by RanaKHAS
3+
* Modified at 23 June 2021 by AADev
4+
* DO NOT REMOVE CREDITS!
5+
* Created for: Wybe Network.
56
*/
67
var cssId = 'wybe-network-theme-switcher';
78
if (!document.getElementById(cssId))

theme-switcher/switcher.min.js

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

0 commit comments

Comments
 (0)