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
0b010d98
Commit
0b010d98
authored
May 15, 2018
by
fallenstardust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TCG banlist
parent
a7905895
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
213 additions
and
24 deletions
+213
-24
mobile/assets/changelog.html
mobile/assets/changelog.html
+14
-2
mobile/assets/data/conf/lflist.conf
mobile/assets/data/conf/lflist.conf
+190
-13
mobile/build.gradle
mobile/build.gradle
+1
-1
mobile/src/core/AndroidManifest.xml
mobile/src/core/AndroidManifest.xml
+0
-6
mobile/src/mycard/AndroidManifest.xml
mobile/src/mycard/AndroidManifest.xml
+6
-0
mobile/src/mycard/java/cn/garymb/ygomobile/ui/online/MyCard.java
...src/mycard/java/cn/garymb/ygomobile/ui/online/MyCard.java
+2
-2
No files found.
mobile/assets/changelog.html
View file @
0b010d98
...
...
@@ -13,10 +13,22 @@
注意:如果您是通过付费购买或者付费获得下载渠道而获得本软件的话,您已经上当受骗。本软件——免费!
特别感谢: 菜菜,尸体,
晓L,废话多,幻兽L,龙道香姐
的支持与努力.
特别感谢: 菜菜,尸体,
废话多,,龙道香姐,晓L,幻兽L
的支持与努力.
</pre>
<ul>
<li
style=
"color:#ffff00"
>
3.2.0
</li>
<li
style=
"color:#ffff00"
>
3.2.1
</li>
</ul>
<pre>
更新:
1.更新ygo内核;
2.TCG2018.5.21禁卡表
3.新卡:CP18;
新增:
1.WINDBOT本地人机
</pre>
<ul>
<li
style=
"color:#ffffff"
>
3.2.0
</li>
</ul>
<pre>
更新:
...
...
mobile/assets/data/conf/lflist.conf
View file @
0b010d98
This diff is collapsed.
Click to expand it.
mobile/build.gradle
View file @
0b010d98
...
...
@@ -8,7 +8,7 @@ android {
applicationId
"cn.garymb.ygomobile"
minSdkVersion
16
targetSdkVersion
22
versionCode
3201051
4
versionCode
3201051
5
versionName
"3.2.1"
flavorDimensions
"versionCode"
vectorDrawables
.
useSupportLibrary
=
true
...
...
mobile/src/core/AndroidManifest.xml
View file @
0b010d98
...
...
@@ -9,12 +9,6 @@
android:launchMode=
"singleTop"
android:theme=
"@style/AppTheme.Translucent"
android:windowSoftInputMode=
"stateAlwaysHidden|adjustResize"
/>
<activity
android:name=
"cn.garymb.ygomobile.ui.online.mcchat.McchatActivity"
android:windowSoftInputMode=
"stateHidden|adjustResize"
android:label=
"@string/app_name"
/>
<activity
android:name=
"cn.garymb.ygomobile.ui.online.mcchat.SplashActivity"
/>
</application>
</manifest>
\ No newline at end of file
mobile/src/mycard/AndroidManifest.xml
View file @
0b010d98
...
...
@@ -10,6 +10,12 @@
android:launchMode=
"singleTop"
android:theme=
"@style/AppTheme.Mycard"
android:windowSoftInputMode=
"stateAlwaysHidden|adjustResize"
/>
<activity
android:name=
"cn.garymb.ygomobile.ui.online.mcchat.McchatActivity"
android:windowSoftInputMode=
"stateHidden|adjustResize"
android:label=
"@string/app_name"
/>
<activity
android:name=
"cn.garymb.ygomobile.ui.online.mcchat.SplashActivity"
/>
</application>
</manifest>
\ No newline at end of file
mobile/src/mycard/java/cn/garymb/ygomobile/ui/online/MyCard.java
View file @
0b010d98
...
...
@@ -67,8 +67,6 @@ public class MyCard {
mDefWebViewClient
=
new
DefWebViewClient
()
{
@Override
public
boolean
shouldOverrideUrlLoading
(
WebView
view
,
String
url
)
{
UserManagement
.
setUserName
(
mUser
.
username
);
UserManagement
.
setUserPassword
(
mUser
.
external_id
+
""
);
if
(
url
.
startsWith
(
return_sso_url
))
{
String
sso
=
Uri
.
parse
(
url
).
getQueryParameter
(
"sso"
);
String
data
=
new
String
(
Base64
.
decode
(
Uri
.
parse
(
url
).
getQueryParameter
(
"sso"
),
Base64
.
NO_WRAP
),
UTF_8
);
...
...
@@ -80,6 +78,8 @@ public class MyCard {
mUser
.
avatar_url
=
info
.
getQueryParameter
(
"avatar_url"
);
mUser
.
admin
=
info
.
getBooleanQueryParameter
(
"admin"
,
false
);
mUser
.
moderator
=
info
.
getBooleanQueryParameter
(
"moderator"
,
false
);
UserManagement
.
setUserName
(
mUser
.
username
);
UserManagement
.
setUserPassword
(
mUser
.
external_id
+
""
);
mUser
.
login
=
true
;
if
(
getMyCardListener
()
!=
null
)
{
getMyCardListener
().
onLogin
(
mUser
.
name
,
mUser
.
avatar_url
,
null
);
...
...
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