Skip to content

Commit

Permalink
Bump versions: Gradle, deprecate jcenter, crank up local article limit
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsbraden committed May 9, 2021
1 parent 5e479b9 commit b6628a5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
jcenter() // <- Will be removed soon
mavenCentral() // <- added
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
classpath 'com.android.tools.build:gradle:4.2.0'
// NOTE: Do not place your application dependencies here; they belong in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
jcenter() // <- Will be removed soon
mavenCentral() // <- added
google()
}
// Enable the following lines to check for deprecated API usage:

// Enable the following lines to check for deprecated API usage:
// tasks.withType(JavaCompile) {
// options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
// }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-all.zip
2 changes: 1 addition & 1 deletion ttrssreader/src/main/java/org/ttrssreader/utils/Utils.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public class Utils {
/**
* The maximum number of articles to store.
*/
public static final int ARTICLE_LIMIT = 5000;
public static final int ARTICLE_LIMIT = 50000;

/**
* Vibrate-Time for vibration when end of list is reached
Expand Down

0 comments on commit b6628a5

Please sign in to comment.