Skip to content

Commit a9e3936

Browse files
authored
Release 2.4.1 (#293)
* Removes issue done section and unnecessary green checkboxes for invalid address Fixes #183 Also fixes alignment of the update location button in the issue activity, which was previously overlapping the no calls message. * Update version number for release * Remove Firebase Analytics and increment version * Fix crash in Settings when reminders are enabled but notifications are not enabled registerForActivityResult must be called from onCreate or we get a crash. Fixes the crash and tests that the notifications dialog is shown. Leaves as TODO to tell the user they must go into settings to turn notifications on after notifications are disabled the first time. This could do with some polish but fixes the crash in #211 * Add string for remdiners setting when notifications disabled, rev version for release * Increment version for release * Whitespace * Fix voicemail/contact string swap in rep call activity, rev version * Update version number for release * Shorten snackbar string & rev version * Show long snackbar string, more lines, re-add disclosure, rev version * Disable state issues and uprev version for release * Update version for release * Fix crash due to private constructor, bump version
1 parent 21ba2cb commit a9e3936

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

5calls/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
applicationId "org.a5calls.android.a5calls"
1111
minSdkVersion 23
1212
targetSdkVersion 36
13-
versionCode 78
14-
versionName '2.4.0'
13+
versionCode 80
14+
versionName '2.4.1'
1515
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
1616
signingConfig signingConfigs.debug
1717
}

5calls/app/src/main/java/org/a5calls/android/a5calls/controller/TutorialActivity.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ public static StaticTutorialPageFragment newInstance(int layoutId) {
145145
return fragment;
146146
}
147147

148-
private StaticTutorialPageFragment() {}
148+
public StaticTutorialPageFragment() {
149+
// Required empty public constructor.
150+
}
149151

150152
@Nullable
151153
@Override

5calls/app/src/main/java/org/a5calls/android/a5calls/net/FiveCallsApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public void getIssues() {
167167
if (!TextUtils.isEmpty(state)) {
168168
urlBuilder.appendQueryParameter(GET_ISSUES_REQUEST_PARAM_STATE, state);
169169
}
170-
170+
171171
String url = urlBuilder.build().toString();
172172
buildIssuesRequest(url, mIssuesRequestListeners);
173173
}

0 commit comments

Comments
 (0)