Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style #82

Open
wants to merge 52 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
256679c
swap win tools for linux ones
Mar 25, 2021
24a9d65
update API params
vmavromatis Aug 23, 2021
8b1cb1b
Merge pull request #1 from vmavromatis/vmavromatis-patch-1
vmavromatis Aug 23, 2021
bb5f7d2
Update LoginController.java
vmavromatis Aug 28, 2021
41ed196
Update LoginController.java
hekci-imam Sep 17, 2021
e25b92c
Update XiaomiServiceEntry.java
Waffelo Sep 21, 2021
3b337ea
chore: add .idea to gitignore
francescotescari Oct 6, 2021
b51fa67
refactor: switch back to groovy
francescotescari Oct 6, 2021
e52b9e3
refactor: clean .idea dir
francescotescari Oct 6, 2021
573e041
feat: add google java format
francescotescari Oct 6, 2021
8753cb1
refactor: format files using gjf
francescotescari Oct 6, 2021
9cbee9e
refactor: remove .idea files
francescotescari Oct 6, 2021
f49a440
refactor: move tools to subdirs
francescotescari Oct 6, 2021
e6fea5d
feat: add shadowJar task
francescotescari Oct 8, 2021
7bf3de0
refactor: create dist tasks
francescotescari Oct 9, 2021
9df6e91
Merge branch 'linux'
Oct 10, 2021
c4fe5b2
Merge remote-tracking branch 'vixrt/refactor/distribution'
Oct 10, 2021
9b1681b
Merge remote-tracking branch 'Waffelo/master'
Oct 10, 2021
f104f32
chmod
Oct 17, 2021
1d056a3
.
Oct 17, 2021
ce6275b
Fix francescotescari/XiaoMiToolV2#37
ricardoboss Oct 31, 2021
aadcca1
fix login
WiseLord Mar 26, 2022
b8a9f57
captcha fix
Dav4555 Apr 9, 2022
f2d54c8
api fix
Dav4555 Apr 9, 2022
84b77b4
Update LoginController.java
Dav4555 Apr 9, 2022
f4b5088
Update LoginController.java
imkaransharma Apr 17, 2022
bdb52eb
patch captcha issue changing java version
serghidalg Jun 20, 2022
846ec0f
Create main.yml
Sep 18, 2022
09eaab4
Update main.yml
Sep 18, 2022
605aba6
Update main.yml
Sep 18, 2022
cd6a3ad
Update main.yml
Sep 18, 2022
475658d
Update main.yml
Sep 18, 2022
a20b49a
Update main.yml
Sep 18, 2022
87a7eff
Update main.yml
Sep 18, 2022
4e6a8a3
Delete main.yml
Sep 18, 2022
1dbc761
Merge branch 'master' of https://github.com/Dav4555/XiaoMiToolV2_urlf…
Sep 22, 2022
3db3f1b
Merge pull request #10 from vixrt/Dav4555-master
vixrt Sep 22, 2022
3f154fd
.
Sep 22, 2022
8cba7c3
Merge branch 'w1'
Sep 22, 2022
6c47e9f
merge
Sep 22, 2022
dc5b387
Merge branch 'w2'
Sep 22, 2022
d9d57c0
.
Sep 22, 2022
4b721fb
Merge remote-tracking branch 'refs/remotes/serghidalg/master'
Sep 22, 2022
76832f1
Merge branch 'w3'
Sep 22, 2022
eaa4de4
Merge remote-tracking branch 'refs/remotes/alibuber/vmavromatis-patch-1'
Sep 22, 2022
12608d2
Merge branch 'w4'
Sep 22, 2022
7e6af40
Merge remote-tracking branch 'ricardoboss/master'
Sep 22, 2022
c1b75e7
Merge pull request #7 from noone-64/master
vixrt Sep 22, 2022
f57ba72
Merge remote-tracking branch 'refs/remotes/vixrt/master'
Sep 22, 2022
a79f0fc
Merge branch 'w5'
Sep 22, 2022
e0f48b6
Merge pull request #13 from imkaransharma/patch-2
vixrt Sep 22, 2022
dadd108
Update test5.txt
Sep 22, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import java.util.Locale;

public class LoginController extends DefaultController {
private static final String LOGIN_URL = "https://account.xiaomi.com/pass/serviceLogin?sid=unlockApi&json=false&passive=true&hidden=false&_snsDefault=facebook&checkSafePhone=true&_locale=" + Locale.getDefault().getLanguage().toLowerCase();
private static final String LOGIN_URL = "https://account.xiaomi.com/pass/serviceLogin?sid=unlockApi&json=false&passive=true&hidden=false&_snsDefault=facebook&checkSafePhone=true&_locale=" + Locale.getDefault().getLanguage().toLowerCase();
private static boolean loggedIn = false;
private static Thread loginThread = null;
@FXML
Expand Down