-
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is the last nightly before the 3.0.0 release Expect bugs (do not report yet) Might require app data clear or reinstall The built-in image editor is currently disabled as is facing a major re-work Includes, but not limited to: - Settings for auto-hide search/navigation bar - Switched from coil to sketch for image loading - Switched from zoomable to zoomimage/sketch for image subsampling - Reduced unecessary recompositions - Added total 'Images & Videos' counter at the bottom of the Album screen - Added total Album media size after counter (eg: 1011 items (628.20MB)) - Improved Album sorting UI - Improvements to Vault (now limited to Images only) - Improvements to Ignored Albums * New Setup UI for creating new Ignored Albums * Added wildcard patterns (Regex) for hiding multiple albums at once * Added visibility option for hiding the albums (and it's medie content) either only in timeline, album screens or both * Added more information about the created Ignored Albums - Re-arranged Settings screen - Updated major dependecies - Added avif support - Improved video player Signed-off-by: IacobIonut01 <[email protected]>
- Loading branch information
1 parent
dc02965
commit 1c2fcf3
Showing
168 changed files
with
7,982 additions
and
2,236 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
com.github.panpf.sketch.Sketch | ||
com.github.panpf.sketch.PlatformContext | ||
com.github.panpf.sketch.drawable.DrawableEqualizer | ||
com.github.panpf.sketch.request.Image | ||
com.github.panpf.sketch.request.ImageOptions | ||
com.github.panpf.sketch.request.ImageRequest | ||
com.github.panpf.sketch.request.ImageResult | ||
com.github.panpf.sketch.state.ColorDrawableStateImage | ||
com.github.panpf.sketch.state.CurrentStateImage | ||
com.github.panpf.sketch.state.DrawableStateImage | ||
com.github.panpf.sketch.state.ErrorStateImage | ||
com.github.panpf.sketch.state.MemoryCacheStateImage | ||
com.github.panpf.sketch.state.IconAnimatableStateImage | ||
com.github.panpf.sketch.state.IconStateImage | ||
com.github.panpf.sketch.state.StateImage | ||
com.github.panpf.sketch.state.ThumbnailMemoryCacheStateImage | ||
com.github.panpf.sketch.util.ColorFetcher | ||
com.github.panpf.sketch.util.Equalizer | ||
com.github.panpf.sketch.util.IntColor | ||
com.github.panpf.sketch.util.Size |
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
80 changes: 80 additions & 0 deletions
80
app/schemas/com.dot.gallery.feature_node.data.data_source.InternalDatabase/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,80 @@ | ||
{ | ||
"formatVersion": 1, | ||
"database": { | ||
"version": 3, | ||
"identityHash": "b923fda23747db68de4db23fb2360ff8", | ||
"entities": [ | ||
{ | ||
"tableName": "pinned_table", | ||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, PRIMARY KEY(`id`))", | ||
"fields": [ | ||
{ | ||
"fieldPath": "id", | ||
"columnName": "id", | ||
"affinity": "INTEGER", | ||
"notNull": true | ||
} | ||
], | ||
"primaryKey": { | ||
"autoGenerate": false, | ||
"columnNames": [ | ||
"id" | ||
] | ||
}, | ||
"indices": [], | ||
"foreignKeys": [] | ||
}, | ||
{ | ||
"tableName": "blacklist", | ||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `label` TEXT NOT NULL, `wildcard` TEXT, `location` INTEGER NOT NULL DEFAULT 0, `matchedAlbums` TEXT NOT NULL DEFAULT '[]', PRIMARY KEY(`id`))", | ||
"fields": [ | ||
{ | ||
"fieldPath": "id", | ||
"columnName": "id", | ||
"affinity": "INTEGER", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "label", | ||
"columnName": "label", | ||
"affinity": "TEXT", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "wildcard", | ||
"columnName": "wildcard", | ||
"affinity": "TEXT", | ||
"notNull": false | ||
}, | ||
{ | ||
"fieldPath": "location", | ||
"columnName": "location", | ||
"affinity": "INTEGER", | ||
"notNull": true, | ||
"defaultValue": "0" | ||
}, | ||
{ | ||
"fieldPath": "matchedAlbums", | ||
"columnName": "matchedAlbums", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "'[]'" | ||
} | ||
], | ||
"primaryKey": { | ||
"autoGenerate": false, | ||
"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, 'b923fda23747db68de4db23fb2360ff8')" | ||
] | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
app/schemas/com.dot.gallery.feature_node.data.data_source.InternalDatabase/4.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,80 @@ | ||
{ | ||
"formatVersion": 1, | ||
"database": { | ||
"version": 4, | ||
"identityHash": "b923fda23747db68de4db23fb2360ff8", | ||
"entities": [ | ||
{ | ||
"tableName": "pinned_table", | ||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, PRIMARY KEY(`id`))", | ||
"fields": [ | ||
{ | ||
"fieldPath": "id", | ||
"columnName": "id", | ||
"affinity": "INTEGER", | ||
"notNull": true | ||
} | ||
], | ||
"primaryKey": { | ||
"autoGenerate": false, | ||
"columnNames": [ | ||
"id" | ||
] | ||
}, | ||
"indices": [], | ||
"foreignKeys": [] | ||
}, | ||
{ | ||
"tableName": "blacklist", | ||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `label` TEXT NOT NULL, `wildcard` TEXT, `location` INTEGER NOT NULL DEFAULT 0, `matchedAlbums` TEXT NOT NULL DEFAULT '[]', PRIMARY KEY(`id`))", | ||
"fields": [ | ||
{ | ||
"fieldPath": "id", | ||
"columnName": "id", | ||
"affinity": "INTEGER", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "label", | ||
"columnName": "label", | ||
"affinity": "TEXT", | ||
"notNull": true | ||
}, | ||
{ | ||
"fieldPath": "wildcard", | ||
"columnName": "wildcard", | ||
"affinity": "TEXT", | ||
"notNull": false | ||
}, | ||
{ | ||
"fieldPath": "location", | ||
"columnName": "location", | ||
"affinity": "INTEGER", | ||
"notNull": true, | ||
"defaultValue": "0" | ||
}, | ||
{ | ||
"fieldPath": "matchedAlbums", | ||
"columnName": "matchedAlbums", | ||
"affinity": "TEXT", | ||
"notNull": true, | ||
"defaultValue": "'[]'" | ||
} | ||
], | ||
"primaryKey": { | ||
"autoGenerate": false, | ||
"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, 'b923fda23747db68de4db23fb2360ff8')" | ||
] | ||
} | ||
} |
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.