Skip to content

Commit e5bd594

Browse files
committed
Fix after merge
1 parent 8d4cf62 commit e5bd594

File tree

13 files changed

+36
-37
lines changed

13 files changed

+36
-37
lines changed

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ android {
1111
applicationId "tech.bigfig.roma"
1212
minSdkVersion 21
1313
targetSdkVersion 28
14-
versionCode 67
14+
versionCode 69
1515
versionName "6.1"
1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
vectorDrawables.useSupportLibrary = true
@@ -144,10 +144,10 @@ dependencies {
144144
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
145145

146146
//Firebase Push Messages
147-
implementation 'com.google.firebase:firebase-messaging:17.5.0'
147+
implementation 'com.google.firebase:firebase-messaging:17.6.0'
148148

149149
//WorkManager
150-
implementation "androidx.work:work-runtime:2.0.0"
151-
implementation "androidx.work:work-rxjava2:2.0.0"
150+
implementation "androidx.work:work-runtime:2.0.1"
151+
implementation "androidx.work:work-rxjava2:2.0.1"
152152
}
153153
apply plugin: 'com.google.gms.google-services'

app/schemas/tech.bigfig.roma.db.AppDatabase/14.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"formatVersion": 1,
33
"database": {
44
"version": 14,
5-
"identityHash": "b9ca62605345d229ced2bb0c1f2db79b",
5+
"identityHash": "8904c68e2a9fb5969da94ffd951e9301",
66
"entities": [
77
{
88
"tableName": "TootEntity",
@@ -74,7 +74,7 @@
7474
},
7575
{
7676
"tableName": "AccountEntity",
77-
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `domain` TEXT NOT NULL, `accessToken` TEXT NOT NULL, `isActive` INTEGER NOT NULL, `accountId` TEXT NOT NULL, `username` TEXT NOT NULL, `displayName` TEXT NOT NULL, `profilePictureUrl` TEXT NOT NULL, `notificationsEnabled` INTEGER NOT NULL, `notificationsMentioned` INTEGER NOT NULL, `notificationsFollowed` INTEGER NOT NULL, `notificationsReblogged` INTEGER NOT NULL, `notificationsFavorited` INTEGER NOT NULL, `notificationSound` INTEGER NOT NULL, `notificationVibration` INTEGER NOT NULL, `notificationLight` INTEGER NOT NULL, `defaultPostPrivacy` INTEGER NOT NULL, `defaultMediaSensitivity` INTEGER NOT NULL, `alwaysShowSensitiveMedia` INTEGER NOT NULL, `mediaPreviewEnabled` INTEGER NOT NULL, `lastNotificationId` TEXT NOT NULL, `activeNotifications` TEXT NOT NULL, `emojis` TEXT NOT NULL, `tabPreferences` TEXT NOT NULL, `notificationsFilter` TEXT NOT NULL)",
77+
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `domain` TEXT NOT NULL, `accessToken` TEXT NOT NULL, `isActive` INTEGER NOT NULL, `accountId` TEXT NOT NULL, `username` TEXT NOT NULL, `displayName` TEXT NOT NULL, `profilePictureUrl` TEXT NOT NULL, `notificationsEnabled` INTEGER NOT NULL, `notificationsMentioned` INTEGER NOT NULL, `notificationsFollowed` INTEGER NOT NULL, `notificationsReblogged` INTEGER NOT NULL, `notificationsFavourited` INTEGER NOT NULL, `notificationSound` INTEGER NOT NULL, `notificationVibration` INTEGER NOT NULL, `notificationLight` INTEGER NOT NULL, `defaultPostPrivacy` INTEGER NOT NULL, `defaultMediaSensitivity` INTEGER NOT NULL, `alwaysShowSensitiveMedia` INTEGER NOT NULL, `mediaPreviewEnabled` INTEGER NOT NULL, `lastNotificationId` TEXT NOT NULL, `activeNotifications` TEXT NOT NULL, `emojis` TEXT NOT NULL, `tabPreferences` TEXT NOT NULL, `notificationsFilter` TEXT NOT NULL)",
7878
"fields": [
7979
{
8080
"fieldPath": "id",
@@ -149,8 +149,8 @@
149149
"notNull": true
150150
},
151151
{
152-
"fieldPath": "notificationsFavorited",
153-
"columnName": "notificationsFavorited",
152+
"fieldPath": "notificationsFavourited",
153+
"columnName": "notificationsFavourited",
154154
"affinity": "INTEGER",
155155
"notNull": true
156156
},
@@ -656,7 +656,7 @@
656656
],
657657
"setupQueries": [
658658
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
659-
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, \"b9ca62605345d229ced2bb0c1f2db79b\")"
659+
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, \"8904c68e2a9fb5969da94ffd951e9301\")"
660660
]
661661
}
662662
}

app/src/main/java/tech/bigfig/roma/entity/Filter.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
/* Copyright 2018 Levi Bard
22
*
3-
* This file is a part of Tusky.
3+
* This file is a part of Roma.
44
*
55
* This program is free software; you can redistribute it and/or modify it under the terms of the
66
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
77
* License, or (at your option) any later version.
88
*
9-
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
9+
* Roma is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
1010
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
1111
* Public License for more details.
1212
*
13-
* You should have received a copy of the GNU General Public License along with Tusky; if not,
13+
* You should have received a copy of the GNU General Public License along with Roma; if not,
1414
* see <http://www.gnu.org/licenses>. */
1515

1616
package tech.bigfig.roma.entity

app/src/main/java/tech/bigfig/roma/util/AppBarLayoutNoEmptyScrollBehavior.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
/* Copyright 2019 Joel Pyska
22
*
3-
* This file is a part of Tusky.
3+
* This file is a part of Roma.
44
*
55
* This program is free software; you can redistribute it and/or modify it under the terms of the
66
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
77
* License, or (at your option) any later version.
88
*
9-
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
9+
* Roma is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
1010
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
1111
* Public License for more details.
1212
*
13-
* You should have received a copy of the GNU General Public License along with Tusky; if not,
13+
* You should have received a copy of the GNU General Public License along with Roma; if not,
1414
* see <http://www.gnu.org/licenses>. */
1515

16-
package com.keylesspalace.tusky.util
16+
package tech.bigfig.roma.util
1717

1818
import android.content.Context
1919
import android.util.AttributeSet

app/src/main/java/tech/bigfig/roma/util/NotificationTypeConverter.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
/* Copyright 2019 Joel Pyska
22
*
3-
* This file is a part of Tusky.
3+
* This file is a part of Roma.
44
*
55
* This program is free software; you can redistribute it and/or modify it under the terms of the
66
* GNU General Public License as published by the Free Software Foundation; either version 3 of the
77
* License, or (at your option) any later version.
88
*
9-
* Tusky is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
9+
* Roma is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
1010
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
1111
* Public License for more details.
1212
*
13-
* You should have received a copy of the GNU General Public License along with Tusky; if not,
13+
* You should have received a copy of the GNU General Public License along with Roma; if not,
1414
* see <http://www.gnu.org/licenses>. */
1515

16-
package com.keylesspalace.tusky.util
16+
package tech.bigfig.roma.util
1717

18-
import com.keylesspalace.tusky.entity.Notification
18+
import tech.bigfig.roma.entity.Notification
1919
import org.json.JSONArray
2020

2121
/**

app/src/main/res/layout-sw640dp/fragment_timeline_notifications.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
android:id="@+id/appBarOptions"
2121
android:layout_width="match_parent"
2222
android:layout_height="wrap_content"
23-
app:layout_behavior="com.keylesspalace.tusky.util.AppBarLayoutNoEmptyScrollBehavior"
23+
app:layout_behavior="tech.bigfig.roma.util.AppBarLayoutNoEmptyScrollBehavior"
2424
app:elevation="0dp">
2525

2626
<androidx.appcompat.widget.Toolbar
@@ -41,7 +41,7 @@
4141

4242
<Button
4343
android:id="@+id/buttonClear"
44-
style="@style/TuskyButton.TextButton"
44+
style="@style/RomaButton.TextButton"
4545
android:layout_width="0dp"
4646
android:layout_height="wrap_content"
4747
android:layout_weight="1"
@@ -50,7 +50,7 @@
5050

5151
<Button
5252
android:id="@+id/buttonFilter"
53-
style="@style/TuskyButton.TextButton"
53+
style="@style/RomaButton.TextButton"
5454
android:layout_width="0dp"
5555
android:layout_height="wrap_content"
5656
android:layout_weight="1"
@@ -91,7 +91,7 @@
9191
app:layout_constraintRight_toRightOf="parent"
9292
app:layout_constraintTop_toTopOf="parent" />
9393

94-
<com.keylesspalace.tusky.view.BackgroundMessageView
94+
<tech.bigfig.roma.view.BackgroundMessageView
9595
android:id="@+id/statusView"
9696
android:layout_width="wrap_content"
9797
android:layout_height="wrap_content"

app/src/main/res/layout/fragment_timeline_notifications.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
android:layout_width="match_parent"
1515
android:layout_height="wrap_content"
1616
app:elevation="0dp"
17-
app:layout_behavior="com.keylesspalace.tusky.util.AppBarLayoutNoEmptyScrollBehavior">
17+
app:layout_behavior="tech.bigfig.roma.util.AppBarLayoutNoEmptyScrollBehavior">
1818

1919
<androidx.appcompat.widget.Toolbar
2020
android:layout_width="match_parent"
@@ -34,7 +34,7 @@
3434

3535
<Button
3636
android:id="@+id/buttonClear"
37-
style="@style/TuskyButton.TextButton"
37+
style="@style/RomaButton.TextButton"
3838
android:layout_width="0dp"
3939
android:layout_height="wrap_content"
4040
android:layout_weight="1"
@@ -43,7 +43,7 @@
4343

4444
<Button
4545
android:id="@+id/buttonFilter"
46-
style="@style/TuskyButton.TextButton"
46+
style="@style/RomaButton.TextButton"
4747
android:layout_width="0dp"
4848
android:layout_height="wrap_content"
4949
android:layout_weight="1"
@@ -86,7 +86,7 @@
8686
app:layout_constraintRight_toRightOf="parent"
8787
app:layout_constraintTop_toTopOf="parent" />
8888

89-
<com.keylesspalace.tusky.view.BackgroundMessageView
89+
<tech.bigfig.roma.view.BackgroundMessageView
9090
android:id="@+id/statusView"
9191
android:layout_width="wrap_content"
9292
android:layout_height="wrap_content"

app/src/main/res/layout/item_account.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
app:layout_constraintBottom_toBottomOf="parent"
2020
app:layout_constraintTop_toTopOf="parent"/>
2121

22-
<com.keylesspalace.tusky.view.RoundedImageView
22+
<tech.bigfig.roma.view.RoundedImageView
2323
android:id="@+id/account_avatar_inset"
2424
android:layout_width="24dp"
2525
android:layout_height="24dp"

app/src/main/res/layout/item_status_detailed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
app:layout_constraintTop_toTopOf="parent"
2525
tools:src="@drawable/avatar_default" />
2626

27-
<com.keylesspalace.tusky.view.RoundedImageView
27+
<tech.bigfig.roma.view.RoundedImageView
2828
android:id="@+id/status_avatar_inset"
2929
android:layout_width="24dp"
3030
android:layout_height="24dp"

app/src/main/res/layout/notifications_filter.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
android:layout_height="wrap_content"/>
1010
<Button
1111
android:id="@+id/buttonApply"
12-
style="@style/TuskyButton.TextButton"
12+
style="@style/RomaButton.TextButton"
1313
android:layout_width="match_parent"
1414
android:layout_height="wrap_content"
1515
android:text="@string/filter_apply"

0 commit comments

Comments
 (0)