Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abook_check
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
fec89e5f
Commit
fec89e5f
authored
Apr 28, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'version/アプリバージョン情報変更' into 'features/1.3.100'
アプリバージョン情報変更 1.3.000 to 1.3.100 See merge request
!134
parents
f175c17c
ff7bd81e
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
13 additions
and
11 deletions
+13
-11
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/CommunicationDBConnector.java
+1
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/DatabaseVersions.java
+2
-0
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/MShopMember.java
+1
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/RChatRoomShopMember.java
+1
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/RCollaborationMember.java
+1
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/RShopMemberGroup.java
+1
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TChatMessage.java
+1
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TChatRoom.java
+1
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TCollaboration.java
+1
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TCollaborationDetail.java
+1
-1
gradle.properties
+2
-2
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/CommunicationDBConnector.java
View file @
fec89e5f
...
...
@@ -19,7 +19,7 @@ import jp.agentec.abook.abv.bl.common.db.SQLiteDatabase;
public
class
CommunicationDBConnector
{
private
static
volatile
CommunicationDBConnector
dbConnector
=
null
;
public
static
final
String
DatabaseName
=
"ABVJE_COMM"
;
public
static
final
int
DatabaseVersion
=
DatabaseVersions
.
Ver1_3_
0
00
;
public
static
final
int
DatabaseVersion
=
DatabaseVersions
.
Ver1_3_
1
00
;
protected
SQLiteDatabase
db
=
null
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/DatabaseVersions.java
View file @
fec89e5f
...
...
@@ -13,5 +13,7 @@ public class DatabaseVersions {
// コミュニケーション(1.3.000)
public
static
final
int
Ver1_3_000
=
30
;
// コミュニケーション(1.3.100)
public
static
final
int
Ver1_3_100
=
31
;
}
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/MShopMember.java
View file @
fec89e5f
...
...
@@ -34,7 +34,7 @@ public class MShopMember extends SQLiteTableScript {
@Override
public
List
<
String
>
getUpgradeScript
(
int
oldVersion
,
int
newVersion
)
{
List
<
String
>
ddl
=
new
ArrayList
<
String
>();
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
0
00
)
{
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
1
00
)
{
ddl
.
addAll
(
getCreateScript
(
newVersion
));
}
return
ddl
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/RChatRoomShopMember.java
View file @
fec89e5f
...
...
@@ -25,7 +25,7 @@ public class RChatRoomShopMember extends SQLiteTableScript {
@Override
public
List
<
String
>
getUpgradeScript
(
int
oldVersion
,
int
newVersion
)
{
List
<
String
>
ddl
=
new
ArrayList
<
String
>();
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
0
00
)
{
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
1
00
)
{
ddl
.
addAll
(
getCreateScript
(
newVersion
));
}
return
ddl
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/RCollaborationMember.java
View file @
fec89e5f
...
...
@@ -31,7 +31,7 @@ public class RCollaborationMember extends SQLiteTableScript {
@Override
public
List
<
String
>
getUpgradeScript
(
int
oldVersion
,
int
newVersion
)
{
List
<
String
>
ddl
=
new
ArrayList
<
String
>();
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
0
00
)
{
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
1
00
)
{
ddl
.
addAll
(
getCreateScript
(
newVersion
));
}
return
ddl
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/RShopMemberGroup.java
View file @
fec89e5f
...
...
@@ -31,7 +31,7 @@ public class RShopMemberGroup extends SQLiteTableScript {
@Override
public
List
<
String
>
getUpgradeScript
(
int
oldVersion
,
int
newVersion
)
{
List
<
String
>
ddl
=
new
ArrayList
<
String
>();
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
0
00
)
{
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
1
00
)
{
ddl
.
addAll
(
getCreateScript
(
newVersion
));
}
return
ddl
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TChatMessage.java
View file @
fec89e5f
...
...
@@ -39,7 +39,7 @@ public class TChatMessage extends SQLiteTableScript {
@Override
public
List
<
String
>
getUpgradeScript
(
int
oldVersion
,
int
newVersion
)
{
List
<
String
>
ddl
=
new
ArrayList
<
String
>();
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
0
00
)
{
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
1
00
)
{
ddl
.
addAll
(
getCreateScript
(
newVersion
));
}
return
ddl
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TChatRoom.java
View file @
fec89e5f
...
...
@@ -35,7 +35,7 @@ public class TChatRoom extends SQLiteTableScript {
@Override
public
List
<
String
>
getUpgradeScript
(
int
oldVersion
,
int
newVersion
)
{
List
<
String
>
ddl
=
new
ArrayList
<
String
>();
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
0
00
)
{
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
1
00
)
{
ddl
.
addAll
(
getCreateScript
(
newVersion
));
}
return
ddl
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TCollaboration.java
View file @
fec89e5f
...
...
@@ -30,7 +30,7 @@ public class TCollaboration extends SQLiteTableScript {
@Override
public
List
<
String
>
getUpgradeScript
(
int
oldVersion
,
int
newVersion
)
{
List
<
String
>
ddl
=
new
ArrayList
<
String
>();
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
0
00
)
{
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
1
00
)
{
ddl
.
addAll
(
getCreateScript
(
newVersion
));
}
return
ddl
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TCollaborationDetail.java
View file @
fec89e5f
...
...
@@ -33,7 +33,7 @@ public class TCollaborationDetail extends SQLiteTableScript {
@Override
public
List
<
String
>
getUpgradeScript
(
int
oldVersion
,
int
newVersion
)
{
List
<
String
>
ddl
=
new
ArrayList
<
String
>();
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
0
00
)
{
if
(
oldVersion
<
DatabaseVersions
.
Ver1_3_
1
00
)
{
ddl
.
addAll
(
getCreateScript
(
newVersion
));
}
return
ddl
;
...
...
gradle.properties
View file @
fec89e5f
...
...
@@ -86,8 +86,8 @@ is_check_invalid_passward_limit=true
repeat_default
=
true
#Setting Info(設定画面のABookについての設定情報)
version_name
=
1.3.
0
00
release_date
=
2021/04/2
7
version_name
=
1.3.
1
00
release_date
=
2021/04/2
8
copy_right
=
2016 AGENTEC Co.,Ltd. All rights reserved.
hope_page
=
http://www.agentec.jp
contact_email
=
abook-appsupport@agentec.jp
...
...
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