Skip to content

Commit 2b9c64c

Browse files
committed
Merge branch 'develop'
2 parents 8767eb5 + 8a866b7 commit 2b9c64c

File tree

5 files changed

+24
-14
lines changed

5 files changed

+24
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
New version: 27.0.1.0 (based on v27.0.1)
4+
5+
- No support preferences related changes.
6+
37
**2017-10-27**
48

59
New version: 27.0.0.0 (based on v27.0.0)

README.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ If you would like to support me, you may donate some small amount via PayPal.
1818
### 1. Add gradle dependency
1919
First, **remove** the unnecessary lines of preference-v7 and preference-v14 from your gradle file as the bugfix contains both of them:
2020
```gradle
21-
compile 'com.android.support:preference-v7:27.0.0'
22-
compile 'com.android.support:preference-v14:27.0.0'
21+
compile 'com.android.support:preference-v7:27.0.1'
22+
compile 'com.android.support:preference-v14:27.0.1'
2323
```
2424
And **add** this single line to your gradle file:
2525
```gradle
26-
compile 'com.takisoft.fix:preference-v7:27.0.0.0'
26+
compile 'com.takisoft.fix:preference-v7:27.0.1.0'
2727
```
2828
> Notice the versioning: the first three numbers are *always* the same as the latest official library while the last number is for own updates. I try to keep it up-to-date but if, for whatever reasons, I wouldn't notice the new support library versions, just issue a ticket.
2929
@@ -92,17 +92,17 @@ Now you can enjoy using the support preferences API without losing all your hair
9292
There are additional preferences not part of the official support library, but decided to add them to some extra libraries. You can add all of them to your project using
9393

9494
```gradle
95-
compile 'com.takisoft.fix:preference-v7-extras:27.0.0.0'
95+
compile 'com.takisoft.fix:preference-v7-extras:27.0.1.0'
9696
```
9797

9898
or one or more groups:
9999

100100
Preference | Dependency | Preview
101101
-|-|-
102-
[`RingtonePreference`](https://github.com/Gericop/Android-Support-Preference-V7-Fix/wiki/Preference-types#ringtonepreference) | `compile 'com.takisoft.fix:preference-v7-ringtone:27.0.0.0'` | ![API 15](https://raw.githubusercontent.com/Gericop/Android-Support-Preference-V7-Fix/master/images/ringtone_api26.png)
103-
[`DatePickerPreference`](https://github.com/Gericop/Android-Support-Preference-V7-Fix/wiki/Preference-types#datepickerpreference) | `compile 'com.takisoft.fix:preference-v7-datetimepicker:27.0.0.0'` | ![API 15](https://raw.githubusercontent.com/Gericop/Android-Support-Preference-V7-Fix/master/images/datepicker_api26.png)
104-
[`TimePickerPreference`](https://github.com/Gericop/Android-Support-Preference-V7-Fix/wiki/Preference-types#timepickerpreference) | `compile 'com.takisoft.fix:preference-v7-datetimepicker:27.0.0.0'` | ![API 15](https://raw.githubusercontent.com/Gericop/Android-Support-Preference-V7-Fix/master/images/timepicker_api26.png)
105-
[`ColorPickerPreference`](https://github.com/Gericop/Android-Support-Preference-V7-Fix/wiki/Preference-types#colorpickerpreference) | `compile 'com.takisoft.fix:preference-v7-colorpicker:27.0.0.0'` | ![API 15](https://raw.githubusercontent.com/Gericop/Android-Support-Preference-V7-Fix/master/images/colorpicker_api26_fixed.png)
102+
[`RingtonePreference`](https://github.com/Gericop/Android-Support-Preference-V7-Fix/wiki/Preference-types#ringtonepreference) | `compile 'com.takisoft.fix:preference-v7-ringtone:27.0.1.0'` | ![API 15](https://raw.githubusercontent.com/Gericop/Android-Support-Preference-V7-Fix/master/images/ringtone_api26.png)
103+
[`DatePickerPreference`](https://github.com/Gericop/Android-Support-Preference-V7-Fix/wiki/Preference-types#datepickerpreference) | `compile 'com.takisoft.fix:preference-v7-datetimepicker:27.0.1.0'` | ![API 15](https://raw.githubusercontent.com/Gericop/Android-Support-Preference-V7-Fix/master/images/datepicker_api26.png)
104+
[`TimePickerPreference`](https://github.com/Gericop/Android-Support-Preference-V7-Fix/wiki/Preference-types#timepickerpreference) | `compile 'com.takisoft.fix:preference-v7-datetimepicker:27.0.1.0'` | ![API 15](https://raw.githubusercontent.com/Gericop/Android-Support-Preference-V7-Fix/master/images/timepicker_api26.png)
105+
[`ColorPickerPreference`](https://github.com/Gericop/Android-Support-Preference-V7-Fix/wiki/Preference-types#colorpickerpreference) | `compile 'com.takisoft.fix:preference-v7-colorpicker:27.0.1.0'` | ![API 15](https://raw.githubusercontent.com/Gericop/Android-Support-Preference-V7-Fix/master/images/colorpicker_api26_fixed.png)
106106

107107
---
108108

@@ -148,7 +148,7 @@ The original implementation uses `?attr/textAppearanceSmall` as the message styl
148148
---
149149

150150
## Version
151-
The current stable version is **27.0.0.0**.
151+
The current stable version is **27.0.1.0**.
152152

153153
## Notes #
154154
This demo / bugfix is set to work on API level 14+.
@@ -167,6 +167,12 @@ API 15 | API 21 | API 26
167167

168168
### Changelog
169169

170+
**2017-11-13**
171+
172+
New version: 27.0.1.0 (based on v27.0.1)
173+
174+
- No support preferences related changes.
175+
170176
**2017-10-27**
171177

172178
New version: 27.0.0.0 (based on v27.0.0)

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2-
project.ext.buildToolsVersion = '27.0.0'
2+
project.ext.buildToolsVersion = '27.0.1'
33
project.ext.minSdkVersion = 14
44
project.ext.sdkVersion = 27
5-
project.ext.supportLibraryVersion = '27.0.0'
6-
project.ext.supportLibraryVersionPrefix = '27.0.0'
5+
project.ext.supportLibraryVersion = '27.0.1'
6+
project.ext.supportLibraryVersionPrefix = '27.0.1'
77
project.ext.supportLibraryVersionSuffix = ''
88
project.ext.fixLibraryVersion = '0'
99

preference-v7-colorpicker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ext {
4747
dependencies {
4848
implementation project(':preference-v7')
4949
implementation "com.android.support:appcompat-v7:${rootProject.supportLibraryVersion}"
50-
api 'com.takisoft.fix:colorpicker:1.0.0'
50+
api 'com.takisoft.fix:colorpicker:1.0.1'
5151
}
5252

5353
//apply from: 'https://raw.githubusercontent.com/numetriclabz/jcenter/master/installv.gradle'

preference-v7-datetimepicker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ext {
4444

4545
dependencies {
4646
implementation project(':preference-v7')
47-
api 'com.takisoft.fix:datetimepicker:1.0.3'
47+
api 'com.takisoft.fix:datetimepicker:1.0.4'
4848
}
4949

5050
//apply from: 'https://raw.githubusercontent.com/numetriclabz/jcenter/master/installv.gradle'

0 commit comments

Comments
 (0)