xmoj-script 1.2.12 → 1.2.14
Sign up to get free protection for your applications and to get access to all the features.
- package/Update.json +34 -0
- package/XMOJ.user.js +3 -3
- package/package.json +1 -1
package/Update.json
CHANGED
@@ -1814,6 +1814,40 @@
|
|
1814
1814
|
}
|
1815
1815
|
],
|
1816
1816
|
"Notes": "No release notes were provided for this release."
|
1817
|
+
},
|
1818
|
+
"1.2.13": {
|
1819
|
+
"UpdateDate": 1722435875725,
|
1820
|
+
"Prerelease": false,
|
1821
|
+
"UpdateContents": [
|
1822
|
+
{
|
1823
|
+
"PR": 573,
|
1824
|
+
"Description": "add username rendering for noticeboard"
|
1825
|
+
},
|
1826
|
+
{
|
1827
|
+
"PR": 574,
|
1828
|
+
"Description": "disable tidytable"
|
1829
|
+
},
|
1830
|
+
{
|
1831
|
+
"PR": 575,
|
1832
|
+
"Description": "Upgrade bootstrap + cdnjs"
|
1833
|
+
},
|
1834
|
+
{
|
1835
|
+
"PR": 576,
|
1836
|
+
"Description": "fix tidytable"
|
1837
|
+
}
|
1838
|
+
],
|
1839
|
+
"Notes": "No release notes were provided for this release."
|
1840
|
+
},
|
1841
|
+
"1.2.14": {
|
1842
|
+
"UpdateDate": 1722470253103,
|
1843
|
+
"Prerelease": true,
|
1844
|
+
"UpdateContents": [
|
1845
|
+
{
|
1846
|
+
"PR": 580,
|
1847
|
+
"Description": "Improve popover usability"
|
1848
|
+
}
|
1849
|
+
],
|
1850
|
+
"Notes": "No release notes were provided for this release."
|
1817
1851
|
}
|
1818
1852
|
}
|
1819
1853
|
}
|
package/XMOJ.user.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
// ==UserScript==
|
2
2
|
// @name XMOJ
|
3
|
-
// @version 1.2.
|
3
|
+
// @version 1.2.14
|
4
4
|
// @description XMOJ增强脚本
|
5
5
|
// @author @XMOJ-Script-dev, @langningchen and the community
|
6
6
|
// @namespace https://github/langningchen
|
@@ -468,7 +468,7 @@ async function main() {
|
|
468
468
|
rel: 'stylesheet'
|
469
469
|
}, {
|
470
470
|
type: 'script',
|
471
|
-
src: 'https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/5.3.3/js/bootstrap.bundle.
|
471
|
+
src: 'https://cdn.bootcdn.net/ajax/libs/twitter-bootstrap/5.3.3/js/bootstrap.bundle.js',
|
472
472
|
isModule: true
|
473
473
|
}];
|
474
474
|
if (UtilityEnabled("cdnjs")) {
|
@@ -476,7 +476,7 @@ async function main() {
|
|
476
476
|
resources[1].href = 'https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/theme/darcula.min.css';
|
477
477
|
resources[2].href = 'https://cdnjs.cloudflare.com/ajax/libs/codemirror/6.65.7/addon/merge/merge.min.css';
|
478
478
|
resources[3].href = 'https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap.min.css';
|
479
|
-
resources[4].src = 'https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/js/bootstrap.bundle.
|
479
|
+
resources[4].src = 'https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/js/bootstrap.bundle.js';
|
480
480
|
}
|
481
481
|
let loadResources = async () => {
|
482
482
|
let promises = resources.map(resource => {
|