Skip to content

Commit

Permalink
fix: add back candidate count to 15 and 250
Browse files Browse the repository at this point in the history
  • Loading branch information
plateaukao committed Jan 29, 2023
1 parent 66d06ba commit e77fc26
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions LimeStudio/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ android {

minSdkVersion 19
targetSdkVersion 33
versionCode 680
versionName '6.8.0'
versionCode 690
versionName '6.9.0'
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ public class LimeDB extends LimeSQLiteOpenHelper {

//Jeremy '11,8,5
//TODO: should set INITIAL_RESULT_LIMIT according to screen size.
private final static String INITIAL_RESULT_LIMIT = "5";
private final static String FINAL_RESULT_LIMIT = "10";
// private final static String INITIAL_RESULT_LIMIT = "5";
// private final static String FINAL_RESULT_LIMIT = "10";
// original value
//private final static String INITIAL_RESULT_LIMIT = "15";
//private final static String FINAL_RESULT_LIMIT = "210";
private final static String INITIAL_RESULT_LIMIT = "15";
private final static String FINAL_RESULT_LIMIT = "210";
private final static int INITIAL_RELATED_LIMIT = 5;
private final static int COMPOSING_CODE_LENGTH_LIMIT = 16; //Jeremy '12,5,30 changed from 12 to 16 because of improved performance using binary tree.
private final static int DUALCODE_COMPOSING_LIMIT = 16; //Jeremy '12,5,30 changed from 7 to 16 because of improved performance using binary tree.
Expand Down
6 changes: 3 additions & 3 deletions LimeStudio/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,17 @@
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath("com.android.tools.build:gradle:7.0.0")
}
}

allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
2 changes: 1 addition & 1 deletion LimeStudio/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sun May 09 01:43:48 CST 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

0 comments on commit e77fc26

Please sign in to comment.