Skip to content
Snippets Groups Projects
Commit dd71bf11 authored by John Carlson's avatar John Carlson
Browse files

Release 2.4.10

parent e2420ca2
No related branches found
No related tags found
No related merge requests found
Pipeline #
Change Log
==========
 
Version 2.4.10
----------------------------
- Crash fixes related to fetching accounts
- Fix issue with deleting issues
- Load all the details of a pipeline without the user having to refresh
- Better potential to find the README of a project by loading all the files instead of the first 20
- Fix for files not loading properly when changing to a new branch or tag
Version 2.4.9
----------------------------
 
Loading
Loading
Loading
Loading
@@ -4,7 +4,7 @@ buildscript {
}
 
dependencies {
classpath 'io.fabric.tools:gradle:1.23.0'
classpath 'io.fabric.tools:gradle:1.24.1'
}
}
 
Loading
Loading
@@ -18,7 +18,7 @@ apply plugin: 'io.fabric'
 
def versionMajor = 2
def versionMinor = 4
def versionPatch = 9
def versionPatch = 10
def versionBuild = 0 // bump for dogfood builds, public betas, etc.
 
android {
Loading
Loading
@@ -101,11 +101,11 @@ ext {
supportLibVersion = '26.0.1'
retrofitVersion = '2.3.0'
okHttpVersion = '3.8.1'
butterknifeVersion = '8.7.0'
butterknifeVersion = '8.8.1'
parcelerVersion = '1.1.9'
reptarVersion = '2.5.1'
adapterLayout = '1.1.1'
materialDialogsVersion = '0.9.4.5'
materialDialogsVersion = '0.9.4.7'
leakCanaryVersion = '1.5'
addendumVersion = '1.4.0'
alakazamVersion = '1.0.1'
Loading
Loading
@@ -200,7 +200,7 @@ dependencies {
 
implementation 'com.github.alorma:diff-textview:1.3.0'
 
implementation 'com.wdullaer:materialdatetimepicker:3.2.2'
implementation 'com.wdullaer:materialdatetimepicker:3.3.0'
 
implementation 'com.github.novoda:simple-chrome-custom-tabs:0.1.5'
 
Loading
Loading
@@ -209,7 +209,7 @@ dependencies {
 
implementation 'de.hdodenhof:circleimageview:2.1.0'
 
implementation('com.vdurmont:emoji-java:3.2.0') {
implementation('com.vdurmont:emoji-java:3.3.0') {
exclude group: 'org.json', module: 'json'
}
 
Loading
Loading
Loading
Loading
@@ -63,7 +63,7 @@ class AddNewLabelActivity : BaseActivity(), ColorChooserDialog.ColorCallback {
// Pass AppCompatActivity which implements ColorCallback, along with the textTitle of the dialog
ColorChooserDialog.Builder(this, R.string.add_new_label_choose_color)
.preselect(chosenColor)
.show()
.show(this)
}
 
override fun onCreate(savedInstanceState: Bundle?) {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment