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
1f2f95ac
Commit
1f2f95ac
authored
Sep 30, 2020
by
fallenstardust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
3.7.7LOG-O
sync ocgcore update strings.conf
parent
e5772efc
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
39 additions
and
17 deletions
+39
-17
Classes/ocgcore/operations.cpp
Classes/ocgcore/operations.cpp
+12
-6
mobile/assets/changelog.html
mobile/assets/changelog.html
+9
-7
mobile/assets/data/conf/strings.conf
mobile/assets/data/conf/strings.conf
+7
-0
mobile/assets_en/data/conf/strings.conf
mobile/assets_en/data/conf/strings.conf
+9
-2
mobile/build.gradle
mobile/build.gradle
+2
-2
mobile/src/main/res/drawable-xhdpi/ic_launcher3.png
mobile/src/main/res/drawable-xhdpi/ic_launcher3.png
+0
-0
No files found.
Classes/ocgcore/operations.cpp
View file @
1f2f95ac
...
@@ -1039,13 +1039,16 @@ int32 field::swap_control(uint16 step, effect* reason_effect, uint8 reason_playe
...
@@ -1039,13 +1039,16 @@ int32 field::swap_control(uint16 step, effect* reason_effect, uint8 reason_playe
uint8
s1
=
pcard1
->
current
.
sequence
;
uint8
s1
=
pcard1
->
current
.
sequence
;
uint32
flag
;
uint32
flag
;
get_useable_count
(
NULL
,
p1
,
LOCATION_MZONE
,
reason_player
,
LOCATION_REASON_CONTROL
,
0xff
,
&
flag
);
get_useable_count
(
NULL
,
p1
,
LOCATION_MZONE
,
reason_player
,
LOCATION_REASON_CONTROL
,
0xff
,
&
flag
);
flag
=
(
flag
&
~
(
1
<<
s1
)
&
0xff
)
|
~
0x1f
;
if
(
reason_player
==
p1
)
flag
=
(
flag
&
~
(
1
<<
s1
)
&
0xff
)
|
~
0x1f
;
else
flag
=
((
flag
&
~
(
1
<<
s1
))
<<
16
&
0xff0000
)
|
~
0x1f0000
;
card
*
pcard2
=
*
targets2
->
it
;
card
*
pcard2
=
*
targets2
->
it
;
pduel
->
write_buffer8
(
MSG_HINT
);
pduel
->
write_buffer8
(
MSG_HINT
);
pduel
->
write_buffer8
(
HINT_SELECTMSG
);
pduel
->
write_buffer8
(
HINT_SELECTMSG
);
pduel
->
write_buffer8
(
p1
);
pduel
->
write_buffer8
(
reason_player
);
pduel
->
write_buffer32
(
pcard2
->
data
.
code
);
pduel
->
write_buffer32
(
pcard2
->
data
.
code
);
add_process
(
PROCESSOR_SELECT_PLACE
,
0
,
0
,
0
,
p1
,
flag
,
1
);
add_process
(
PROCESSOR_SELECT_PLACE
,
0
,
0
,
0
,
reason_player
,
flag
,
1
);
return
FALSE
;
return
FALSE
;
}
}
case
2
:
{
case
2
:
{
...
@@ -1055,13 +1058,16 @@ int32 field::swap_control(uint16 step, effect* reason_effect, uint8 reason_playe
...
@@ -1055,13 +1058,16 @@ int32 field::swap_control(uint16 step, effect* reason_effect, uint8 reason_playe
uint8
s2
=
pcard2
->
current
.
sequence
;
uint8
s2
=
pcard2
->
current
.
sequence
;
uint32
flag
;
uint32
flag
;
get_useable_count
(
NULL
,
p2
,
LOCATION_MZONE
,
reason_player
,
LOCATION_REASON_CONTROL
,
0xff
,
&
flag
);
get_useable_count
(
NULL
,
p2
,
LOCATION_MZONE
,
reason_player
,
LOCATION_REASON_CONTROL
,
0xff
,
&
flag
);
flag
=
(
flag
&
~
(
1
<<
s2
)
&
0xff
)
|
~
0x1f
;
if
(
reason_player
==
p2
)
flag
=
(
flag
&
~
(
1
<<
s2
)
&
0xff
)
|
~
0x1f
;
else
flag
=
((
flag
&
~
(
1
<<
s2
))
<<
16
&
0xff0000
)
|
~
0x1f0000
;
card
*
pcard1
=
*
targets1
->
it
;
card
*
pcard1
=
*
targets1
->
it
;
pduel
->
write_buffer8
(
MSG_HINT
);
pduel
->
write_buffer8
(
MSG_HINT
);
pduel
->
write_buffer8
(
HINT_SELECTMSG
);
pduel
->
write_buffer8
(
HINT_SELECTMSG
);
pduel
->
write_buffer8
(
p2
);
pduel
->
write_buffer8
(
reason_player
);
pduel
->
write_buffer32
(
pcard1
->
data
.
code
);
pduel
->
write_buffer32
(
pcard1
->
data
.
code
);
add_process
(
PROCESSOR_SELECT_PLACE
,
0
,
0
,
0
,
p2
,
flag
,
1
);
add_process
(
PROCESSOR_SELECT_PLACE
,
0
,
0
,
0
,
reason_player
,
flag
,
1
);
return
FALSE
;
return
FALSE
;
}
}
case
3
:
{
case
3
:
{
...
...
mobile/assets/changelog.html
View file @
1f2f95ac
...
@@ -16,18 +16,20 @@
...
@@ -16,18 +16,20 @@
特别感谢: 菜菜,尸体,废话多,大毛,龙道香姐,晓L,幻兽L 的支持与努力.
特别感谢: 菜菜,尸体,废话多,大毛,龙道香姐,晓L,幻兽L 的支持与努力.
</pre>
</pre>
<ul>
<ul>
<li
style=
"color:#ffff00"
>
3.7.
6
</li>
<li
style=
"color:#ffff00"
>
3.7.
7
</li>
</ul>
</ul>
<pre>
<pre>
更新:
更新:
1.更新ygo内核;
1.更新ygo内核;
2.新卡SR11+MP20+YO+VJ;
2.新卡DBGI+VJ;
3.2020.10.1OCG禁卡表;
4.2020.9TCG禁卡表
变更:
变更:
1.
恢复卡片选择窗口提示文字
;
1.
不再在初运行时申请权限
;
2.
微调UI
;
2.
只在需要使用相应权限时弹出申请
;
修复:
3.移除READ_PHONE_STATE权限请求;
1.部分手机无法备份还原卡组的问题;
修复:
2.部分手机选择头像卡背背景等无法显示预览图
的问题;
1.覆盖安装新版本会重置收藏夹记录
的问题;
</pre>
</pre>
<h3
style=
"color:#ff0000"
>
注意
</h3>
<h3
style=
"color:#ff0000"
>
注意
</h3>
<pre>
<pre>
...
...
mobile/assets/data/conf/strings.conf
View file @
1f2f95ac
...
@@ -1056,3 +1056,10 @@
...
@@ -1056,3 +1056,10 @@
!
setname
0
x14e
电脑堺 電脳堺
!
setname
0
x14e
电脑堺 電脳堺
!
setname
0
x114e
电脑堺门 電脳堺門
!
setname
0
x114e
电脑堺门 電脳堺門
!
setname
0
x14f
双天
!
setname
0
x14f
双天
!
setname
0
x150
大贤者 マギストス
#setname 0x151 双子 Twin
!
setname
0
x1151
直播☆双子
Live
☆
Twin
!
setname
0
x2151
邪恶★双子
Evil
★
Twin
!
setname
0
x152
姬丝基勒 キスキル
!
setname
0
x153
璃拉 リィラ
!
setname
0
x154
龙辉巧 ドライトロン
mobile/assets_en/data/conf/strings.conf
View file @
1f2f95ac
...
@@ -80,7 +80,7 @@
...
@@ -80,7 +80,7 @@
!
system
222
Activate
Trigger
Effect
?
!
system
222
Activate
Trigger
Effect
?
!
system
223
and
Ask
other
Trigger
Effect
activate
later
!
system
223
and
Ask
other
Trigger
Effect
activate
later
!
system
224
First
Special
Summoned
by
own
Condition
!
system
224
First
Special
Summoned
by
own
Condition
!
system
225
Overla
id
with
[%
ls
](%
d
)
!
system
225
Overla
yed
under
[%
ls
](%
d
)
!
system
500
Select
a
monster
to
tribute
!
system
500
Select
a
monster
to
tribute
!
system
501
Select
a
card
to
discard
!
system
501
Select
a
card
to
discard
!
system
502
Select
a
card
to
destroy
!
system
502
Select
a
card
to
destroy
...
@@ -1048,4 +1048,11 @@
...
@@ -1048,4 +1048,11 @@
!
setname
0
x14d
Tribrigade
!
setname
0
x14d
Tribrigade
!
setname
0
x14e
Datascape
!
setname
0
x14e
Datascape
!
setname
0
x114e
Datascape
Gate
!
setname
0
x114e
Datascape
Gate
!
setname
0
x14f
Souten
!
setname
0
x14f
Souten
\ No newline at end of file
!
setname
0
x150
Magistus
#setname 0x151 Twin
!
setname
0
x1151
Live
☆
Twin
!
setname
0
x2151
Evil
★
Twin
!
setname
0
x152
Kisikil
!
setname
0
x153
Lilla
!
setname
0
x154
Draitron
mobile/build.gradle
View file @
1f2f95ac
...
@@ -8,8 +8,8 @@ android {
...
@@ -8,8 +8,8 @@ android {
applicationId
"cn.garymb.ygomobile"
applicationId
"cn.garymb.ygomobile"
minSdkVersion
21
minSdkVersion
21
targetSdkVersion
29
targetSdkVersion
29
versionCode
370
6008
30
versionCode
370
7009
30
versionName
"3.7.
6
"
versionName
"3.7.
7
"
flavorDimensions
"versionCode"
flavorDimensions
"versionCode"
vectorDrawables
.
useSupportLibrary
=
true
vectorDrawables
.
useSupportLibrary
=
true
ndk
{
ndk
{
...
...
mobile/src/main/res/drawable-xhdpi/ic_launcher3.png
View replaced file @
e5772efc
View file @
1f2f95ac
133 KB
|
W:
|
H:
157 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