mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-06-14 03:16:38 +10:00
Update special thanks.
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -80,6 +80,9 @@
|
|||||||
<p>
|
<p>
|
||||||
<a id="about-eula" data-res-fromfile="publicRes(137)"></a>
|
<a id="about-eula" data-res-fromfile="publicRes(137)"></a>
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
<a id="about-thanks" data-res-fromfile="publicRes (230)"></a>
|
||||||
|
</p>
|
||||||
<p data-res-fromfile="publicRes (138)"></p>
|
<p data-res-fromfile="publicRes (138)"></p>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://github.com/chausner/PriTools" target="_blank">chausner/PriTools</a></li>
|
<li><a href="https://github.com/chausner/PriTools" target="_blank">chausner/PriTools</a></li>
|
||||||
@@ -88,8 +91,8 @@
|
|||||||
<li><a href="https://github.com/winjs/winjs" target="_blank">WinJS</a></li>
|
<li><a href="https://github.com/winjs/winjs" target="_blank">WinJS</a></li>
|
||||||
<li><a href="https://github.com/evilstreak/markdown-js" target="_blank">markdown.js</a></li>
|
<li><a href="https://github.com/evilstreak/markdown-js" target="_blank">markdown.js</a></li>
|
||||||
<li><a href="https://codemirror.net/" target="_blank">CodeMirror</a></li>
|
<li><a href="https://codemirror.net/" target="_blank">CodeMirror</a></li>
|
||||||
<li><a href="https://www.newtonsoft.com/json" target="_blank">Newtonsoft.Json</a></li>
|
<li><a href="https://www.newtonsoft.com/json" target="_blank">Newtonsoft.Json</a></li>
|
||||||
<li><a href="https://icsharpcode.github.io/SharpZipLib/" target="_blank">SharpZipLib</a></li>
|
<li><a href="https://icsharpcode.github.io/SharpZipLib/" target="_blank">SharpZipLib</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<script>
|
<script>
|
||||||
(function() {
|
(function() {
|
||||||
@@ -185,7 +188,6 @@
|
|||||||
});
|
});
|
||||||
eventutil.addEvent(aboutProjectDescription, "click", function() {
|
eventutil.addEvent(aboutProjectDescription, "click", function() {
|
||||||
function decodeBase64(base64) {
|
function decodeBase64(base64) {
|
||||||
// GitHub 的 content 有换行,必须清理
|
|
||||||
base64 = base64.replace(/\s/g, "");
|
base64 = base64.replace(/\s/g, "");
|
||||||
return atob(base64);
|
return atob(base64);
|
||||||
}
|
}
|
||||||
@@ -300,6 +302,22 @@
|
|||||||
body.style.color = "black";
|
body.style.color = "black";
|
||||||
}, 0);
|
}, 0);
|
||||||
});
|
});
|
||||||
|
var aboutThanks = document.getElementById("about-thanks");
|
||||||
|
eventutil.addEvent(aboutThanks, "click", function() {
|
||||||
|
var content = document.createElement("div");
|
||||||
|
var p = document.createElement("p");
|
||||||
|
p.textContent = getPublicRes(231);
|
||||||
|
content.appendChild(p);
|
||||||
|
var contributes = '<a href="https://github.com/modernw/App-Installer-For-Windows-8.x-Reset/graphs/contributors" target="_blank">\n \x3C!-- Made with [contrib.rocks](https://contrib.rocks). -->\n <img src="https://contrib.rocks/image?repo=modernw/App-Installer-For-Windows-8.x-Reset&columns=10" style="max-width:100%" />\n</a>\n';
|
||||||
|
content.innerHTML += contributes;
|
||||||
|
var p1 = document.createElement("p");
|
||||||
|
p1.textContent = getPublicRes(232);
|
||||||
|
content.appendChild(p1);
|
||||||
|
var dlg = new MsgBox();
|
||||||
|
dlg.text = content;
|
||||||
|
dlg.title = getPublicRes(230);
|
||||||
|
dlg.show();
|
||||||
|
});
|
||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user