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
525fcd48
Commit
525fcd48
authored
Jun 16, 2019
by
fallenstardust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
3.4.5LOGO
回滚删除确认 长按监听事件+0.2s
parent
aa6c8c0a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
24 deletions
+15
-24
mobile/assets/changelog.html
mobile/assets/changelog.html
+5
-14
mobile/build.gradle
mobile/build.gradle
+1
-1
mobile/src/main/java/cn/garymb/ygomobile/Constants.java
mobile/src/main/java/cn/garymb/ygomobile/Constants.java
+1
-1
mobile/src/main/java/cn/garymb/ygomobile/ui/cards/DeckManagerActivityImpl.java
...cn/garymb/ygomobile/ui/cards/DeckManagerActivityImpl.java
+8
-8
mobile/src/main/res/drawable/ic_launcher3.png
mobile/src/main/res/drawable/ic_launcher3.png
+0
-0
No files found.
mobile/assets/changelog.html
View file @
525fcd48
...
@@ -22,21 +22,12 @@
...
@@ -22,21 +22,12 @@
<pre>
<pre>
更新:
更新:
1.更新ygo内核;
1.更新ygo内核;
2.新卡T1008+CP19+19PR+VJ;
2.新卡DP22;
3.TCG2019.4禁卡表;
3.OCG2019.7禁卡表;
新增:
1.决斗助手可以复制转化YDK文本和卡组分享码;
2.分享卡组支持导出卡组分享码到剪贴板;
3.可从录像提取卡组;
4.可点左上角卡图清除聊天、系统消息;
5.单机AI+ L8,自奏,炎兽卡组;
优化:
优化:
1.投降前增加确认(防误触);
1.咕且恢复长按删除确认;
2.点击列表响应不灵敏的问题;
2.延长0.2秒长按判断时间;
3.局域网联机有时无法加入房间的问题;
3.完善支持分辨率大于177*254的卡图;
4.长按删除不再做确认;
5.调整部分UI;
6.单机AI列表将报社卡组分为一类;
</pre>
</pre>
</body>
</body>
</html>
</html>
\ No newline at end of file
mobile/build.gradle
View file @
525fcd48
...
@@ -8,7 +8,7 @@ android {
...
@@ -8,7 +8,7 @@ android {
applicationId
"cn.garymb.ygomobile"
applicationId
"cn.garymb.ygomobile"
minSdkVersion
16
minSdkVersion
16
targetSdkVersion
28
targetSdkVersion
28
versionCode
3404006
04
versionCode
3404006
16
versionName
"3.4.4"
versionName
"3.4.4"
flavorDimensions
"versionCode"
flavorDimensions
"versionCode"
vectorDrawables
.
useSupportLibrary
=
true
vectorDrawables
.
useSupportLibrary
=
true
...
...
mobile/src/main/java/cn/garymb/ygomobile/Constants.java
View file @
525fcd48
...
@@ -152,7 +152,7 @@ public interface Constants {
...
@@ -152,7 +152,7 @@ public interface Constants {
/***
/***
* 长按删除
* 长按删除
*/
*/
long
LONG_PRESS_DRAG
=
7
00
;
long
LONG_PRESS_DRAG
=
9
00
;
/***
/***
* adb shell am start -n cn.garymb.ygomobile/cn.garymb.ygomobile.ui.home.MainActivity -a ygomobile.intent.action.DECK --es android.intent.extra.TEXT 青眼白龙.ydk
* adb shell am start -n cn.garymb.ygomobile/cn.garymb.ygomobile.ui.home.MainActivity -a ygomobile.intent.action.DECK --es android.intent.extra.TEXT 青眼白龙.ydk
* <p>
* <p>
...
...
mobile/src/main/java/cn/garymb/ygomobile/ui/cards/DeckManagerActivityImpl.java
View file @
525fcd48
...
@@ -176,15 +176,15 @@ class DeckManagerActivityImpl extends BaseCardsAcitivity implements RecyclerView
...
@@ -176,15 +176,15 @@ class DeckManagerActivityImpl extends BaseCardsAcitivity implements RecyclerView
if
(
deckItem
==
null
||
deckItem
.
getCardInfo
()
==
null
)
{
if
(
deckItem
==
null
||
deckItem
.
getCardInfo
()
==
null
)
{
return
;
return
;
}
}
//
DialogPlus dialogPlus = new DialogPlus(this);
DialogPlus
dialogPlus
=
new
DialogPlus
(
this
);
//
dialogPlus.setTitle(R.string.question);
dialogPlus
.
setTitle
(
R
.
string
.
question
);
//
dialogPlus.setMessage(getString(R.string.delete_card, deckItem.getCardInfo().Name));
dialogPlus
.
setMessage
(
getString
(
R
.
string
.
delete_card
,
deckItem
.
getCardInfo
().
Name
));
//
dialogPlus.setMessageGravity(Gravity.CENTER_HORIZONTAL);
dialogPlus
.
setMessageGravity
(
Gravity
.
CENTER_HORIZONTAL
);
//
dialogPlus.setLeftButtonListener((dlg, v) -> {
dialogPlus
.
setLeftButtonListener
((
dlg
,
v
)
->
{
//
dlg.dismiss();
dlg
.
dismiss
();
mDeckItemTouchHelper
.
remove
(
pos
);
mDeckItemTouchHelper
.
remove
(
pos
);
//
});
});
//
dialogPlus.show();
dialogPlus
.
show
();
}
else
{
}
else
{
mDeckAdapater
.
showHeadView
();
mDeckAdapater
.
showHeadView
();
}
}
...
...
mobile/src/main/res/drawable/ic_launcher3.png
View replaced file @
aa6c8c0a
View file @
525fcd48
134 KB
|
W:
|
H:
148 KB
|
W:
|
H:
2-up
Swipe
Onion skin
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