Skip to content

Commit e88fec7

Browse files
committed
changelogs/165.txt
1 parent d630a3b commit e88fec7

File tree

24 files changed

+25
-32
lines changed

24 files changed

+25
-32
lines changed

.idea/kotlinc.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ android {
4646
applicationId "com.github.jameshnsears.quoteunquote"
4747

4848
// changelog version | min sdk | target sdk
49-
versionCode 1632434
49+
versionCode 1652434
5050
// semantic versioning
51-
versionName "4.35.0"
51+
versionName "4.36.0"
5252

5353
vectorDrawables.useSupportLibrary = true
5454

@@ -107,11 +107,12 @@ android {
107107
}
108108

109109
compileOptions {
110-
sourceCompatibility JavaVersion.VERSION_11
111-
targetCompatibility JavaVersion.VERSION_11
110+
sourceCompatibility JavaVersion.VERSION_17
111+
targetCompatibility JavaVersion.VERSION_17
112112
}
113+
113114
kotlinOptions {
114-
jvmTarget = '11'
115+
jvmTarget = 17
115116
}
116117

117118
flavorDimensions 'Version'
@@ -218,7 +219,7 @@ dependencies {
218219
implementation 'androidx.cardview:cardview:1.0.0'
219220
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
220221
implementation 'androidx.core:core-ktx:1.10.1'
221-
implementation 'androidx.databinding:databinding-runtime:8.1.0'
222+
implementation 'androidx.databinding:databinding-runtime:8.1.1'
222223
implementation 'androidx.multidex:multidex:2.0.1'
223224
implementation 'androidx.room:room-guava:2.5.2'
224225
implementation 'androidx.room:room-runtime:2.5.2'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"formatVersion": 1,
33
"database": {
4-
"version": 40,
4+
"version": 41,
55
"identityHash": "4576f076a1896260b13b26d1a0d40a61",
66
"entities": [
77
{

app/src/main/assets/quotations.db.dev

6.99 MB
Binary file not shown.
28 KB
Binary file not shown.

app/src/main/java/com/github/jameshnsears/quoteunquote/cloud/transfer/backup/TransferBackupSettings.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import com.github.jameshnsears.quoteunquote.configure.fragment.appearance.Appear
1010
import com.github.jameshnsears.quoteunquote.configure.fragment.notifications.NotificationsPreferences
1111
import com.github.jameshnsears.quoteunquote.configure.fragment.quotations.QuotationsPreferences
1212
import com.github.jameshnsears.quoteunquote.utils.ContentSelection
13-
import timber.log.Timber
1413

1514
// Settings are set on demand in the UI
1615
open class TransferBackupSettings(val context: Context) {
@@ -45,7 +44,6 @@ open class TransferBackupSettings(val context: Context) {
4544
ContentSelection.AUTHOR -> author = true
4645
ContentSelection.FAVOURITES -> favourites = true
4746
ContentSelection.SEARCH -> search = true
48-
else -> Timber.e("unknown contentSelection")
4947
}
5048

5149
return Quotations(

app/src/main/java/com/github/jameshnsears/quoteunquote/configure/fragment/quotations/tabs/filter/QuotationsFilterFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ private void setDisposableCardAllCount() {
505505
disposableObserverAllExclusion = new DisposableObserver<Integer>() {
506506
@Override
507507
public void onNext(@NonNull final Integer value) {
508-
Timber.d("value=%d", value.intValue());
508+
Timber.d("value=%d", value);
509509
if (value != 0) {
510510
fragmentQuotationsTabFilterBinding.radioButtonAll.setText(
511511
getResources().getString(R.string.fragment_quotations_selection_all, value));

app/src/main/java/com/github/jameshnsears/quoteunquote/database/quotation/AbstractQuotationDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
import com.github.jameshnsears.quoteunquote.BuildConfig;
1212

13-
@Database(entities = {QuotationEntity.class}, version = 40)
13+
@Database(entities = {QuotationEntity.class}, version = 41)
1414
public abstract class AbstractQuotationDatabase extends RoomDatabase {
1515
@Nullable
1616
public static AbstractQuotationDatabase quotationDatabase;
Loading

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,6 @@
3333
android:layout_height="wrap_content"
3434
android:orientation="vertical">
3535

36-
<TextView
37-
android:layout_width="match_parent"
38-
android:layout_height="wrap_content"
39-
android:paddingVertical="5dp"
40-
android:text="@string/fragment_appearance_toolbar_buttons"
41-
android:textSize="20sp"
42-
android:textStyle="bold" />
43-
4436
<LinearLayout
4537
android:layout_width="match_parent"
4638
android:layout_height="wrap_content"

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
android:layout_width="match_parent"
44
android:layout_height="match_parent"
55
android:orientation="vertical"
6+
android:padding="20dp"
67
tools:viewBindingIgnore="true">
78

89
<LinearLayout

app/src/main/res/values-v24/strings.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@
140140
<string name="fragment_appearance_follow_system_theme">Follow system theme</string>
141141
<string name="fragment_appearance_follow_system_theme_info">Forces App Widget to use Black &amp; White colours</string>
142142
<string name="fragment_appearance_toolbar_colour_dialog_title">Buttons Colour</string>
143-
<string name="fragment_appearance_toolbar_buttons">Buttons</string>
144143
<string name="fragment_appearance_toolbar_first">First, clears Previous</string>
145144
<string name="fragment_appearance_toolbar_previous">Previous</string>>
146145
<string name="fragment_appearance_toolbar_favourite">Favourite, toggle</string>
@@ -199,6 +198,6 @@
199198
<string name="preview_description">Discover high quality Quotations!\nImport Affirmations!</string>
200199
<string name="preview_quotation">Nothing matters very much and very few things matter at all.\n</string>
201200
<string name="preview_author"><u>Arthur Balfour\n</u></string>
202-
<string name="preview_position">\u2316 1/20313\u0020</string>
201+
<string name="preview_position">\u2316 1/20310\u0020</string>
203202

204203
</resources>

app/src/main/res/values-v27/strings.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@
140140
<string name="fragment_appearance_follow_system_theme">Follow system theme</string>
141141
<string name="fragment_appearance_follow_system_theme_info">Forces App Widget to use Black &amp; White colours</string>
142142
<string name="fragment_appearance_toolbar_colour_dialog_title">Buttons Colour</string>
143-
<string name="fragment_appearance_toolbar_buttons">Buttons</string>
144143
<string name="fragment_appearance_toolbar_first">First, clears Previous</string>
145144
<string name="fragment_appearance_toolbar_previous">Previous</string>>
146145
<string name="fragment_appearance_toolbar_favourite">Favourite, toggle</string>
@@ -199,6 +198,6 @@
199198
<string name="preview_description">Discover high quality Quotations!\nImport Affirmations!</string>
200199
<string name="preview_quotation">Nothing matters very much and very few things matter at all.\n</string>
201200
<string name="preview_author"><u>Arthur Balfour\n</u></string>
202-
<string name="preview_position">\u2316 1/20313\u0020</string>
201+
<string name="preview_position">\u2316 1/20310\u0020</string>
203202

204203
</resources>

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ buildscript {
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:8.1.0'
12+
classpath 'com.android.tools.build:gradle:8.1.1'
1313
classpath 'com.google.gms:google-services:4.3.15'
1414
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.8'
1515
classpath 'io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.23.1'
1616
classpath 'org.jacoco:org.jacoco.core:0.8.10'
17-
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0'
17+
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10'
1818
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.3.0.3225'
1919
classpath 'com.diffplug.spotless:spotless-plugin-gradle:6.20.0'
2020

Loading
Loading

fastlane/metadata/android/en-US/changelogs/161.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
&bull; Update quotations database
2+
&bull; JDK 17 support
3+
&bull; Update Google Play Store video
4+
&bull; Bump dependencies
Loading
Loading
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun Aug 13 14:37:03 BST 2023
1+
#Tue Aug 22 09:16:58 BST 2023
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

images/screenshots.xcf

-1.02 KB
Binary file not shown.

0 commit comments

Comments
 (0)