Skip to content

Commit

Permalink
Gallery: 3.0.0-30033 Release
Browse files Browse the repository at this point in the history
Signed-off-by: IacobIonut01 <[email protected]>
  • Loading branch information
IacobIonut01 committed Sep 1, 2024
1 parent 48c8e8b commit c64faa6
Show file tree
Hide file tree
Showing 182 changed files with 7,017 additions and 5,260 deletions.
16 changes: 13 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {
applicationId = "com.dot.gallery"
minSdk = 30
targetSdk = 35
versionCode = 30024
versionCode = 30033
versionName = "3.0.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -132,7 +132,6 @@ dependencies {

// Compose
implementation(libs.compose.activity)
implementation(platform(libs.compose.bom))
implementation(libs.compose.ui)
implementation(libs.compose.ui.graphics)
implementation(libs.compose.ui.tooling.preview)
Expand All @@ -144,6 +143,9 @@ dependencies {
// Compose - Material3
implementation(libs.compose.material3)
implementation(libs.compose.material3.window.size)
implementation(libs.androidx.adaptive)
implementation(libs.androidx.adaptive.layout)
implementation(libs.androidx.adaptive.navigation)

// Compose - Accompanists
implementation(libs.accompanist.permissions)
Expand All @@ -162,6 +164,8 @@ dependencies {
// Dagger - Hilt
implementation(libs.androidx.hilt.navigation.compose)
implementation(libs.dagger.hilt)
implementation(libs.androidx.hilt.common)
implementation(libs.androidx.hilt.work)
ksp(libs.dagger.hilt.compiler)
ksp(libs.androidx.hilt.compiler)

Expand Down Expand Up @@ -221,10 +225,16 @@ dependencies {
// Composables - Core
implementation(libs.core)

// Worker
implementation(libs.androidx.work.runtime.ktx)

// Composable - Scrollbar
implementation(libs.lazycolumnscrollbar)


// Tests
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.test.ext.junit)
androidTestImplementation(platform(libs.compose.bom))
debugImplementation(libs.compose.ui.tooling)
debugRuntimeOnly(libs.compose.ui.test.manifest)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"formatVersion": 1,
"database": {
"version": 4,
"identityHash": "b923fda23747db68de4db23fb2360ff8",
"identityHash": "d11e7f0b804e55f9526cc63d181876a1",
"entities": [
{
"tableName": "pinned_table",
Expand Down Expand Up @@ -69,12 +69,142 @@
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "media",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `label` TEXT NOT NULL, `uri` TEXT NOT NULL, `path` TEXT NOT NULL, `relativePath` TEXT NOT NULL, `albumID` INTEGER NOT NULL, `albumLabel` TEXT NOT NULL, `timestamp` INTEGER NOT NULL, `expiryTimestamp` INTEGER, `takenTimestamp` INTEGER, `fullDate` TEXT NOT NULL, `mimeType` TEXT NOT NULL, `favorite` INTEGER NOT NULL, `trashed` INTEGER NOT NULL, `size` INTEGER NOT NULL, `duration` TEXT, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "label",
"columnName": "label",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "uri",
"columnName": "uri",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "path",
"columnName": "path",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "relativePath",
"columnName": "relativePath",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "albumID",
"columnName": "albumID",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "albumLabel",
"columnName": "albumLabel",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "timestamp",
"columnName": "timestamp",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "expiryTimestamp",
"columnName": "expiryTimestamp",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "takenTimestamp",
"columnName": "takenTimestamp",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "fullDate",
"columnName": "fullDate",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "mimeType",
"columnName": "mimeType",
"affinity": "TEXT",
"notNull": true
},
{
"fieldPath": "favorite",
"columnName": "favorite",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "trashed",
"columnName": "trashed",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "size",
"columnName": "size",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "duration",
"columnName": "duration",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "media_version",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`version` TEXT NOT NULL, PRIMARY KEY(`version`))",
"fields": [
{
"fieldPath": "version",
"columnName": "version",
"affinity": "TEXT",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": false,
"columnNames": [
"version"
]
},
"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, 'b923fda23747db68de4db23fb2360ff8')"
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'd11e7f0b804e55f9526cc63d181876a1')"
]
}
}
Loading

0 comments on commit c64faa6

Please sign in to comment.