Skip to content

Commit ed96e81

Browse files
committed
🐲2.4.1 update: 上线新功能<每天最多只更新一次>,勾选后如果有更新,最多只会弹框一次,更新之后剩余如果再有更新会在第二天才弹窗,功能默认开启~
1 parent 5966472 commit ed96e81

File tree

2 files changed

+33
-14
lines changed

2 files changed

+33
-14
lines changed

leetcodeRating_greasyfork.user.js

+31-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ==UserScript==
22
// @name LeetCodeRating|显示力扣周赛难度分
33
// @namespace https://github.com/zhang-wangz
4-
// @version 2.4.0
4+
// @version 2.4.1
55
// @license MIT
66
// @description LeetCodeRating 力扣周赛分数显现,支持所有页面评分显示
77
// @author 小东是个阳光蛋(力扣名)
@@ -177,12 +177,13 @@
177177
// @note 2024-07-30 2.3.9 2.3.1补丁 修改题目完成情况ui(尝试过icon)更贴近力扣官方设计,修复如果有历史提交ac,但最新提交失败的情况下更新题目状态为notac的问题
178178
// @note 2024-07-31 2.3.10 2.3.1补丁 修复讨论区如果没有关注讨论发布者或者讨论发布者没有携带徽章的情况下无法触发observer监听导致不能添加ac情况的bug, 拓展ac显示范围至讨论区发布讨论时的预览和题目页发布讨论,详细可以自己测试体验~
179179
// @note 2024-07-31 2.4.0 2.3.1补丁 修复2.3.10的题目页拓展之后没有考虑lc需要时间请求后台刷新a标签的问题造成新增加题目页的识别错误bug
180+
// @note 2024-08-16 2.4.1 上线新功能<每天最多只更新一次>,勾选后如果有更新,最多只会弹框一次,更新之后剩余如果再有更新会在第二天才弹窗
180181
// ==/UserScript==
181182

182183
(async function () {
183184
'use strict';
184185

185-
let version = "2.4.0"
186+
let version = "2.4.1"
186187
let pbstatusVersion = "version11"
187188
const dummySend = XMLHttpRequest.prototype.send;
188189
const originalOpen = XMLHttpRequest.prototype.open;
@@ -230,7 +231,9 @@
230231
let pbName2Id = JSON.parse(GM_getValue("pbName2Id", "{}").toString())
231232
// 英文
232233
let pbNamee2Id = JSON.parse(GM_getValue("pbNamee2Id", "{}").toString())
234+
// preDate为更新分数使用,preDate1为更新版本使用
233235
let preDate = GM_getValue("preDate", "")
236+
let preDate1 = GM_getValue("preDate1", "")
234237
// level数据
235238
let levelData = JSON.parse(GM_getValue("levelData", "{}").toString())
236239
// 中文
@@ -429,6 +432,7 @@
429432
function script_setting(){
430433
let menu_ALL = [
431434
['switchvpn', 'vpn', '是否使用cdn访问数据', false, false],
435+
['switchupdate', 'switchupdate', '是否每天最多只更新一次', true, true],
432436
['switchTea', '0x3f tea', '题库页灵茶信息显示', true, true],
433437
['switchpbRepo', 'pbRepo function', '题库页周赛难度评分(不包括灵茶)', true, false],
434438
['switchdelvip', 'delvip function', '题库页去除vip加锁题目', false, true],
@@ -764,7 +768,6 @@
764768
`)
765769
}
766770
} else {
767-
console.log(GM_getValue("switchpbstatusLocation"))
768771
if(GM_getValue("switchpbstatusLocation")) {
769772
GM_addStyle(`
770773
circle.mycircle {
@@ -1877,6 +1880,7 @@
18771880
}
18781881
let t1 // pb
18791882
let pbCnt = 0
1883+
let pbCnt2 = 0
18801884
function getpb() {
18811885
let switchrealoj = GM_getValue("switchrealoj")
18821886
// 搜索功能
@@ -1894,10 +1898,13 @@
18941898
}
18951899
// 流动布局逻辑
18961900
if (isDynamic) {
1901+
// pb其他页面时刷新多次后也直接关闭
18971902
let t = document.querySelector(".text-title-large")
18981903
if (t == null) {
18991904
t1 = "unknown"
19001905
pbCnt = 0
1906+
if (pbCnt2 == shortCnt) clearId("pb")
1907+
pbCnt2 += 1
19011908
return
19021909
}
19031910

@@ -2140,6 +2147,7 @@
21402147
lcCnt = 0 // ✅
21412148
tagCnt = 0
21422149
pbCnt = 0 // ✅
2150+
pbCnt2 = 0 // ✅
21432151
pbsideCnt = 0 // ✅
21442152
companyCnt = 0 // ❌,因为已经搁置(需要vip),所以暂时关闭该功能
21452153
pbListCnt = 0 // ✅
@@ -2293,6 +2301,9 @@
22932301
getPromiseLevel()
22942302

22952303
// 版本更新机制
2304+
let now = getCurrentDate(1)
2305+
preDate1 = GM_getValue("preDate1", "")
2306+
let checkVersionLayer = GM_getValue("switchupdate")? (preDate1 == "" || preDate1 != now):true;
22962307
GM_xmlhttpRequest({
22972308
method: "get",
22982309
url: versionUrl + "?timeStamp=" + new Date().getTime(),
@@ -2307,15 +2318,23 @@
23072318
let v = json["version"]
23082319
let upcontent = json["content"]
23092320
if (v != version) {
2310-
layer.open({
2311-
area: ['500px', '300px'],
2312-
content: '<pre class="versioncontent" style="color:#000">更新通知: <br/>leetcodeRating有新的版本' + v +'啦,请前往更新~ <br/>' + "更新内容: <br/>" + upcontent + "</pre>",
2313-
yes: function (index, layer0) {
2314-
let c = window.open(sciptUrl + "?timeStamp=" + new Date().getTime())
2315-
c.close()
2316-
layer.close(index)
2317-
}
2318-
});
2321+
if (checkVersionLayer) {
2322+
console.log("弹窗更新栏一次..")
2323+
layer.open({
2324+
area: ['500px', '300px'],
2325+
content: '<pre class="versioncontent" style="color:#000">更新通知: <br/>leetcodeRating有新的版本' + v +'啦,请前往更新~ <br/>' + "更新内容: <br/>" + upcontent + "</pre>",
2326+
yes: function (index, layer0) {
2327+
let c = window.open(sciptUrl + "?timeStamp=" + new Date().getTime())
2328+
c.close()
2329+
layer.close(index)
2330+
preDate1 = now
2331+
GM_setValue("preDate1", preDate1)
2332+
console.log("update preDate1 success")
2333+
}
2334+
});
2335+
} else {
2336+
console.log("有新的版本,但是已经弹窗过且开启了最多只更新一次功能,等待明天弹窗..")
2337+
}
23192338
} else {
23202339
console.log("leetcodeRating难度分插件当前已经是最新版本~")
23212340
}

version.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "2.4.0",
3-
"content": "tips: (频繁更新从今天开始应该就结束了,打扰各位了,后续应该稳定了) 修复2.3.10的题目页拓展之后没有考虑lc需要时间请求后台刷新a标签的问题造成新增加题目页的识别错误bug; <br/> 上线(讨论区题目链接后面显示题目完成情况)相关功能,具体功能说明转移github(https://github.com/zhang-wangz/LeetCodeRating)查看"
2+
"version": "2.4.1",
3+
"content": "上线新功能<每天最多只更新一次>,勾选后如果有更新,最多只会弹框一次,更新之后剩余如果再有更新会在第二天才弹窗,功能默认开启"
44
}

0 commit comments

Comments
 (0)