You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* release-2.5.10:
Bump versionCode and versionName
CI: simplify script and check for successful cache extraction
Revert "CI: use api 28 image to avoid re-download of build-tools"
Update Kotlin to 1.3.0 (#154)
Add Notifications management settings (API 26+) (#156)
RoutinesActivityCreate/Edit test: Solve autocorrect bug
RoutinesActivityCreate/Edit tests: add error messages to asserts
gitlab-ci: add generated DB file as an artifact (#153)
Merge PR #149 + changes (#151)
Merge PR #147 + changes (#152)
InstallDatabaseService: only vibrate once for progress notification
Use HH format instead of kk to display time (#148)
Update CONTRIBUTING.md
DBTest: Clean up exportation
Features/export db (#140)
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ Driessen](http://nvie.com/about/) on [this article](http://nvie.com/posts/a-succ
25
25
* The `develop` branch reflects the code of the latest delivered development changes for the next release.
26
26
* Furthermore, when a development version (almost) reflects the desired state of the new release, a release branch is created. Release branches are usually deployed through the *Google Play BETA channel* before they are made available to everyone
27
27
28
-
Create a topic branch from where you want to work. This may be usually the `master` or `release` branch for bug fixes or `develop` for adding new features. Please avoid working directly on the master branch.
28
+
Create a topic branch from where you want to work. This may be usually the `master` or `release` branch for bug fixes or `develop` for adding new features. **Please avoid working directly on the `master` branch, and do not submits pull requests with `master` as a target.**
29
29
30
30
## I would like to contribute, but I'm not a developer...
Copy file name to clipboardexpand all lines: Calendula/src/androidTest/java/es/usc/citius/servando/calendula/activities/RoutinesActivityCreateTest.java
Copy file name to clipboardexpand all lines: Calendula/src/main/java/es/usc/citius/servando/calendula/settings/notifications/NotificationPrefsContract.kt
Copy file name to clipboardexpand all lines: Calendula/src/main/java/es/usc/citius/servando/calendula/settings/notifications/NotificationPrefsFragment.kt
+24
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ import android.content.Intent
22
22
importandroid.content.SharedPreferences
23
23
importandroid.media.RingtoneManager
24
24
importandroid.net.Uri
25
+
importandroid.os.Build
25
26
importandroid.os.Bundle
26
27
importandroid.provider.Settings
27
28
importandroid.support.v7.preference.Preference
@@ -42,6 +43,7 @@ class NotificationPrefsFragment :
42
43
privateconstvalTAG="NotificationPrefsFragm"
43
44
}
44
45
46
+
privateval applicationPackageName:String by lazy { activity!!.packageName asString }
Copy file name to clipboardexpand all lines: Calendula/src/main/java/es/usc/citius/servando/calendula/settings/notifications/NotificationPrefsPresenter.kt
0 commit comments