Skip to content

Commit

Permalink
update for 1.8.2
Browse files Browse the repository at this point in the history
Signed-off-by: Jian Chang <aa65535@live.com>
  • Loading branch information
aa65535 committed Jan 24, 2021
1 parent 31ddfa4 commit c46a9f2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "com.aa65535.tabikaeruarchivemodifier"
minSdkVersion 14
targetSdkVersion 28
versionCode 56
versionName "2.5.1"
versionCode 57
versionName "2.5.2"
}
signingConfigs {
config {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ public interface Constants {

int[] ACHIEVE_FLAGS_IDS = new int[]{100000, 200000};

long COLLECT_FLAGS_BITS = 0x1f7fffe;
int COLLECT_FLAGS_BITS_LEN = 25;
long COLLECT_FLAGS_BITS = 0x7f7fffe;
int COLLECT_FLAGS_BITS_LEN = 27;

int[] COLLECT_FLAGS_IDS = new int[]{100000, 200000};

long SPECIALTY_FLAGS_BITS = 0xffffff7fffeL;
int SPECIALTY_FLAGS_BITS_LEN = 44;
long SPECIALTY_FLAGS_BITS = 0x3ffffff7fffeL;
int SPECIALTY_FLAGS_BITS_LEN = 46;

int[] SPECIALTY_FLAGS_IDS = new int[]{100000, 200000};
int[] SPECIALTY_FLAGS_IDS = new int[]{100000, 100001, 200000};

int[] ALL_ITEMS_ARRAY = new int[]{
// LunchBox
Expand All @@ -44,9 +44,10 @@ public interface Constants {
0x00000bb9, 0x00000bba, 0x00000bbb, 0x00000bbc, 0x00000bbd, 0x00000bbe, 0x00000bbf, 0x00000bc0,
0x00000bc1, 0x00000bc2, 0x00000bc3, 0x00000bc4, 0x00000bc5, 0x00000bc6, 0x00000bc7, 0x00000bc8,
0x00000bc9, 0x00000bca, 0x00000bcc, 0x00000bcd, 0x00000bce, 0x00000bcf, 0x00000bd0, 0x00000bd1,
0x00000bd2, 0x00000bd3,
0x00000fa0, 0x00000fa1, 0x00000fa2, 0x00000fa3, 0x00000fa4, 0x00000fa5, 0x00000fa6, 0x00000fa7,
0x00000fa8, 0x00000fa9, 0x00000faa, 0x00000fab, 0x00000fac, 0x00000fad, 0x00000fae, 0x00000faf,
0x00000fb0, 0x00000fb1, 0x00019258,
0x00000fb0, 0x00000fb1, 0x00019258, 0x00019640,
// NONE
0x80002328,
};
Expand Down

0 comments on commit c46a9f2

Please sign in to comment.