-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from Eynnzerr/feat_v10103
feat: version v1.1.3
- Loading branch information
Showing
319 changed files
with
1,816 additions
and
154 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
202 changes: 202 additions & 0 deletions
202
app/schemas/com.eynnzerr.yuukatalk.data.database.source.YuukaTalkDatabase/3.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
{ | ||
"formatVersion": 1, | ||
"database": { | ||
"version": 3, | ||
"identityHash": "2468fabaac18fffa10da98afb9d87857", | ||
"entities": [ | ||
{ | ||
"tableName": "momotalk_project", | ||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL, `talkHistory` TEXT NOT NULL, `studentList` TEXT NOT NULL, `currentStudent` TEXT NOT NULL DEFAULT '', `isFirstTalking` INTEGER NOT NULL DEFAULT true, `createdDate` TEXT NOT NULL DEFAULT 'empty', `modifiedDate` TEXT NOT NULL DEFAULT 'empty', `folderId` INTEGER, FOREIGN KEY(`folderId`) REFERENCES `momotalk_folder`(`id`) ON UPDATE NO ACTION ON DELETE SET NULL )", | ||
"fields": [ | ||
{ | ||
"fieldPath": "id", | ||
"columnName": "id", | ||
"affinity": "INTEGER", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "name", | ||
"columnName": "name", | ||
"affinity": "TEXT", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "talkHistory", | ||
"columnName": "talkHistory", | ||
"affinity": "TEXT", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "studentList", | ||
"columnName": "studentList", | ||
"affinity": "TEXT", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "currentStudent", | ||
"columnName": "currentStudent", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "''" | ||
}, | ||
{ | ||
"fieldPath": "isFirstTalking", | ||
"columnName": "isFirstTalking", | ||
"affinity": "INTEGER", | ||
"notNull": true, | ||
"defaultValue": "true" | ||
}, | ||
{ | ||
"fieldPath": "createdDate", | ||
"columnName": "createdDate", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "'empty'" | ||
}, | ||
{ | ||
"fieldPath": "modifiedDate", | ||
"columnName": "modifiedDate", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "'empty'" | ||
}, | ||
{ | ||
"fieldPath": "folderId", | ||
"columnName": "folderId", | ||
"affinity": "INTEGER", | ||
"notNull": false | ||
} | ||
], | ||
"primaryKey": { | ||
"autoGenerate": true, | ||
"columnNames": [ | ||
"id" | ||
] | ||
}, | ||
"indices": [ | ||
{ | ||
"name": "index_momotalk_project_folderId", | ||
"unique": false, | ||
"columnNames": [ | ||
"folderId" | ||
], | ||
"orders": [], | ||
"createSql": "CREATE INDEX IF NOT EXISTS `index_momotalk_project_folderId` ON `${TABLE_NAME}` (`folderId`)" | ||
} | ||
], | ||
"foreignKeys": [ | ||
{ | ||
"table": "momotalk_folder", | ||
"onDelete": "SET NULL", | ||
"onUpdate": "NO ACTION", | ||
"columns": [ | ||
"folderId" | ||
], | ||
"referencedColumns": [ | ||
"id" | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
"tableName": "momotalk_character", | ||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`name` TEXT NOT NULL, `nameRoma` TEXT NOT NULL DEFAULT '', `school` TEXT NOT NULL DEFAULT '', `isAsset` INTEGER NOT NULL, `avatarPath` TEXT NOT NULL DEFAULT '', `emojiPath` TEXT NOT NULL DEFAULT '', `currentAvatar` TEXT NOT NULL DEFAULT '', PRIMARY KEY(`name`))", | ||
"fields": [ | ||
{ | ||
"fieldPath": "name", | ||
"columnName": "name", | ||
"affinity": "TEXT", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "nameRoma", | ||
"columnName": "nameRoma", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "''" | ||
}, | ||
{ | ||
"fieldPath": "school", | ||
"columnName": "school", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "''" | ||
}, | ||
{ | ||
"fieldPath": "isAsset", | ||
"columnName": "isAsset", | ||
"affinity": "INTEGER", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "avatarPath", | ||
"columnName": "avatarPath", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "''" | ||
}, | ||
{ | ||
"fieldPath": "emojiPath", | ||
"columnName": "emojiPath", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "''" | ||
}, | ||
{ | ||
"fieldPath": "currentAvatar", | ||
"columnName": "currentAvatar", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "''" | ||
} | ||
], | ||
"primaryKey": { | ||
"autoGenerate": false, | ||
"columnNames": [ | ||
"name" | ||
] | ||
}, | ||
"indices": [], | ||
"foreignKeys": [] | ||
}, | ||
{ | ||
"tableName": "momotalk_folder", | ||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `name` TEXT NOT NULL, `createdDate` TEXT NOT NULL DEFAULT 'empty')", | ||
"fields": [ | ||
{ | ||
"fieldPath": "id", | ||
"columnName": "id", | ||
"affinity": "INTEGER", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "name", | ||
"columnName": "name", | ||
"affinity": "TEXT", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "createdDate", | ||
"columnName": "createdDate", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "'empty'" | ||
} | ||
], | ||
"primaryKey": { | ||
"autoGenerate": true, | ||
"columnNames": [ | ||
"id" | ||
] | ||
}, | ||
"indices": [], | ||
"foreignKeys": [] | ||
} | ||
], | ||
"views": [], | ||
"setupQueries": [ | ||
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)", | ||
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '2468fabaac18fffa10da98afb9d87857')" | ||
] | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+4.65 KB
app/src/main/assets/Valkyrie/Anzenkyoku/Kirino/avatar/CH0262_L2D.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+12.5 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/avatar/CH0260.webp
Binary file not shown.
Binary file added
BIN
+23.5 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/avatar/CH0260_BG.webp
Binary file not shown.
Binary file added
BIN
+4.98 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/avatar/CH0260_L2D.webp
Binary file not shown.
Binary file added
BIN
+35.4 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.1.webp
Binary file not shown.
Binary file added
BIN
+35.4 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.10.webp
Binary file not shown.
Binary file added
BIN
+35.2 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.11.webp
Binary file not shown.
Binary file added
BIN
+35.3 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.12.webp
Binary file not shown.
Binary file added
BIN
+35.3 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.13.webp
Binary file not shown.
Binary file added
BIN
+35.8 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.14.webp
Binary file not shown.
Binary file added
BIN
+35.4 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.15.webp
Binary file not shown.
Binary file added
BIN
+35.2 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.16.webp
Binary file not shown.
Binary file added
BIN
+35.7 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.17.webp
Binary file not shown.
Binary file added
BIN
+35.3 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.18.webp
Binary file not shown.
Binary file added
BIN
+35.3 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.19.webp
Binary file not shown.
Binary file added
BIN
+35.3 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.2.webp
Binary file not shown.
Binary file added
BIN
+35.2 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.20.webp
Binary file not shown.
Binary file added
BIN
+35.4 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.21.webp
Binary file not shown.
Binary file added
BIN
+36.4 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.22.webp
Binary file not shown.
Binary file added
BIN
+36.3 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.23.webp
Binary file not shown.
Binary file added
BIN
+36.4 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.24.webp
Binary file not shown.
Binary file added
BIN
+36 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.25.webp
Binary file not shown.
Binary file added
BIN
+36 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.26.webp
Binary file not shown.
Binary file added
BIN
+34.9 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.27.webp
Binary file not shown.
Binary file added
BIN
+34.9 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.28.webp
Binary file not shown.
Binary file added
BIN
+35.3 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.29.webp
Binary file not shown.
Binary file added
BIN
+35.4 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.3.webp
Binary file not shown.
Binary file added
BIN
+35 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.4.webp
Binary file not shown.
Binary file added
BIN
+35.1 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.5.webp
Binary file not shown.
Binary file added
BIN
+35.3 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.6.webp
Binary file not shown.
Binary file added
BIN
+35 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.7.webp
Binary file not shown.
Binary file added
BIN
+35.3 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.8.webp
Binary file not shown.
Binary file added
BIN
+35.4 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Kanna/emoji/CH0260.9.webp
Binary file not shown.
Binary file added
BIN
+8.37 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Konoka/avatar/avatar_0.webp
Binary file not shown.
Binary file added
BIN
+12.2 KB
app/src/main/assets/Valkyrie/PublicPeaceBureau/Konoka/avatar/avatar_1.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.