Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
YGOMobile
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fallenstardust
YGOMobile
Commits
6d95cb25
Commit
6d95cb25
authored
Nov 08, 2025
by
fallenstardust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
停用引号关键字搜索
parent
f2171fdd
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
mobile/assets/changelog.html
mobile/assets/changelog.html
+2
-0
mobile/src/main/java/cn/garymb/ygomobile/loader/CardKeyWord.java
...src/main/java/cn/garymb/ygomobile/loader/CardKeyWord.java
+2
-1
No files found.
mobile/assets/changelog.html
View file @
6d95cb25
...
@@ -25,6 +25,8 @@
...
@@ -25,6 +25,8 @@
变更:
变更:
1.竖屏查询时支持大于小于符号来搜索攻击力与守备力范围(如:>=3000、
<2500
);
1.竖屏查询时支持大于小于符号来搜索攻击力与守备力范围(如:>=3000、
<2500
);
2
.修复查询守备力为
1
时错误搜索到↙箭头连接怪兽的问题;
2
.修复查询守备力为
1
时错误搜索到↙箭头连接怪兽的问题;
3
.支持加载扩展卡包内的禁卡表文件;
4
.修复关键字查询使用引号引起的错误;
</
pre
>
</
pre
>
<h3
style=
"color:#ff0000"
>
注意
</h3>
<h3
style=
"color:#ff0000"
>
注意
</h3>
<pre>
<pre>
...
...
mobile/src/main/java/cn/garymb/ygomobile/loader/CardKeyWord.java
View file @
6d95cb25
...
@@ -41,6 +41,7 @@ public class CardKeyWord {
...
@@ -41,6 +41,7 @@ public class CardKeyWord {
w
=
w
.
substring
(
1
);
w
=
w
.
substring
(
1
);
}
}
boolean
onlyText
=
false
;
boolean
onlyText
=
false
;
/*
if (w.startsWith("\"") || w.startsWith("“") || w.startsWith("”")) {
if (w.startsWith("\"") || w.startsWith("“") || w.startsWith("”")) {
//只搜索文字
//只搜索文字
onlyText = true;
onlyText = true;
...
@@ -49,7 +50,7 @@ public class CardKeyWord {
...
@@ -49,7 +50,7 @@ public class CardKeyWord {
} else {
} else {
w = w.substring(1);
w = w.substring(1);
}
}
}
}
*/
Log
.
d
(
TAG
,
"filter:word="
+
w
+
", exclude="
+
exclude
+
", onlyText="
+
onlyText
);
Log
.
d
(
TAG
,
"filter:word="
+
w
+
", exclude="
+
exclude
+
", onlyText="
+
onlyText
);
filterList
.
add
(
new
NameFilter
(
w
,
exclude
,
onlyText
));
filterList
.
add
(
new
NameFilter
(
w
,
exclude
,
onlyText
));
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment