lscontests 2.2.0 → 2.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/lib/oj/index.js +1 -1
- package/dist/lib/oj/index.js.map +1 -1
- package/dist/server.html +7 -1
- package/package.json +1 -1
package/README.md
CHANGED
@@ -55,7 +55,7 @@ Options:
|
|
55
55
|
It performs as follows:
|
56
56
|
|
57
57
|
<!-- block_cli begin -->
|
58
|
-
(*The following content was automatically generated using [semantic-release](https://github.com/semantic-release/semantic-release) on Thu, 26 May 2022
|
58
|
+
(*The following content was automatically generated using [semantic-release](https://github.com/semantic-release/semantic-release) on Thu, 26 May 2022 11:39:17 GMT*)
|
59
59
|
|
60
60
|
<details>
|
61
61
|
<summary> <code>> lsct -L en</code> </summary>
|
package/dist/lib/oj/index.js
CHANGED
@@ -11,7 +11,7 @@ const codeforces_1 = require("./codeforces");
|
|
11
11
|
const leetcode_1 = require("./leetcode");
|
12
12
|
const luogu_1 = require("./luogu");
|
13
13
|
const nowcoder_1 = require("./nowcoder");
|
14
|
-
(0, axios_retry_1.default)(axios_1.default, { retries: 3, retryDelay: (
|
14
|
+
(0, axios_retry_1.default)(axios_1.default, { retries: 3, retryDelay: () => 1000 });
|
15
15
|
exports.alloj = {
|
16
16
|
at: atcoder_1.at,
|
17
17
|
cf: codeforces_1.cf,
|
package/dist/lib/oj/index.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/oj/index.ts"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAC1B,8DAAqC;AAErC,uCAA+B;AAC/B,6CAAkC;AAClC,yCAAgC;AAChC,mCAA6B;AAC7B,yCAAgC;AAEhC,IAAA,qBAAU,EAAC,eAAK,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,UAAU,EAAE,
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/lib/oj/index.ts"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAC1B,8DAAqC;AAErC,uCAA+B;AAC/B,6CAAkC;AAClC,yCAAgC;AAChC,mCAA6B;AAC7B,yCAAgC;AAEhC,IAAA,qBAAU,EAAC,eAAK,EAAE,EAAE,OAAO,EAAE,CAAC,EAAE,UAAU,EAAE,GAAG,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC;AAY7C,QAAA,KAAK,GAA4B;IAC1C,EAAE,EAAF,YAAE;IACF,EAAE,EAAF,eAAE;IACF,EAAE,EAAF,aAAE;IACF,EAAE,EAAF,UAAE;IACF,EAAE,EAAF,aAAE;CACL,CAAC;AAEF;;;;GAIG;AACH,SAAgB,KAAK,CAAC,IAAY,EAAE,EAAM;IAEtC,aAAK,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC;AACrB,CAAC;AAHD,sBAGC"}
|
package/dist/server.html
CHANGED
@@ -108,7 +108,12 @@
|
|
108
108
|
<script>
|
109
109
|
function updateURL()
|
110
110
|
{
|
111
|
-
|
111
|
+
let curr = window.location.href.split("?")[0];
|
112
|
+
if(!curr.endsWith("/"))
|
113
|
+
{
|
114
|
+
curr += "/";
|
115
|
+
}
|
116
|
+
curr += "ics";
|
112
117
|
const args = new URLSearchParams();
|
113
118
|
|
114
119
|
//process ojs
|
@@ -166,6 +171,7 @@
|
|
166
171
|
{
|
167
172
|
copy.tooltip("hide");
|
168
173
|
}, 1000);
|
174
|
+
fetch(url);
|
169
175
|
}
|
170
176
|
});
|
171
177
|
}
|