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

Convert Tabs to use database #4985

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0dbb136
Convert Tabs to use database
cooltey Sep 24, 2024
2d8a9ed
Unused import
cooltey Sep 24, 2024
391ebce
Merge branch 'main' into tabs-database
cooltey Sep 25, 2024
f4625ab
Update database version
cooltey Sep 25, 2024
e6a1417
Update database version
cooltey Sep 25, 2024
11711dc
Merge branch 'main' into tabs-database
cooltey Sep 26, 2024
92d3e1c
Fix error
cooltey Sep 26, 2024
c8a440e
Clear and reset
cooltey Sep 26, 2024
918f977
Merge branch 'main' into tabs-database
cooltey Sep 30, 2024
799a68d
Fix errors
cooltey Sep 30, 2024
c775870
Merge branch 'main' into tabs-database
cooltey Sep 30, 2024
a409ed6
Merge branch 'main' into tabs-database
cooltey Oct 8, 2024
519a4f6
Merge branch 'main' into tabs-database
cooltey Oct 10, 2024
14b756a
Merge branch 'main' into tabs-database
Williamrai Oct 11, 2024
9395b28
Merge branch 'main' into tabs-database
cooltey Oct 15, 2024
8685967
Merge branch 'main' into tabs-database
cooltey Oct 16, 2024
9372430
Merge branch 'main' into tabs-database
cooltey Oct 22, 2024
bc26a8e
Merge branch 'main' into tabs-database
dbrant Oct 25, 2024
e5bffe6
Merge branch 'main' into tabs-database
dbrant Nov 6, 2024
ae2271d
Merge branch 'main' into tabs-database
cooltey Nov 14, 2024
4e81396
Merge branch 'main' into tabs-database
cooltey Nov 15, 2024
3c77685
Merge branch 'main' into tabs-database
dbrant Nov 15, 2024
76e5800
Merge branch 'main' into tabs-database
cooltey Nov 18, 2024
1d5d688
Merge branch 'main' into tabs-database
cooltey Nov 20, 2024
365c170
Merge branch 'main' into tabs-database
cooltey Nov 22, 2024
28d3eeb
Merge branch 'main' into tabs-database
cooltey Jan 15, 2025
c280e52
Merge branch 'main' into tabs-database
cooltey Jan 17, 2025
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
36 changes: 34 additions & 2 deletions app/schemas/org.wikipedia.database.AppDatabase/26.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"formatVersion": 1,
"database": {
"version": 26,
"identityHash": "16a25d36f8cbc3a8743699b56a550c06",
"identityHash": "d042bcf4c06c8727f99ac4c827e5a691",
"entities": [
{
"tableName": "HistoryEntry",
Expand Down Expand Up @@ -536,12 +536,44 @@
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "Tab",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `backStack` TEXT NOT NULL, `backStackPosition` INTEGER NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "backStack",
"columnName": "backStack",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "backStackPosition",
"columnName": "backStackPosition",
"affinity": "INTEGER",
"notNull": true
}
],
"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, '16a25d36f8cbc3a8743699b56a550c06')"
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'd042bcf4c06c8727f99ac4c827e5a691')"
]
}
}
Loading
Loading