diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt | 3 | ||||
-rw-r--r-- | app/src/main/play/en-US/whatsnew | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt b/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt index 303ab70a..82548396 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/db/CookiesDb.kt @@ -84,7 +84,8 @@ object CookiesDb { @Parcelize @Table(database = CookiesDb::class, allFields = true, primaryKeyConflict = ConflictAction.REPLACE) data class CookieModel( - @PrimaryKey var id: Long = -1L, var name: String? = null, + @PrimaryKey var id: Long = -1L, + var name: String? = null, var cookie: String? = null ) : BaseModel(), Parcelable { diff --git a/app/src/main/play/en-US/whatsnew b/app/src/main/play/en-US/whatsnew index a9aab7e3..df5c33a5 100644 --- a/app/src/main/play/en-US/whatsnew +++ b/app/src/main/play/en-US/whatsnew @@ -3,4 +3,5 @@ v2.3.2 * Disable auto feed refresh by default and add setting to re-enable it * Update theme * Disable bugsnag completely when opting out of analytics -* Filter urls before sending to other apps
\ No newline at end of file +* Filter urls before sending to other apps +* Allow hiding main fab (see settings > newsfeed)
\ No newline at end of file |