-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release: org.nypl.audiobook.android 2.0.0 Change: (Backwards incompatible) Take all color scheme information from the current Android theme
- Loading branch information
Showing
27 changed files
with
217 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<c:changelog project="org.nypl.audiobook.android" xmlns:c="urn:com.io7m.changelog:4.0"> | ||
<c:releases> | ||
<c:release date="2019-01-23T00:00:00+00:00" ticket-system="org.nypl.jira" version="1.0.0"> | ||
<c:changes/> | ||
</c:release> | ||
<c:release date="2019-04-19T10:19:14+00:00" ticket-system="org.nypl.jira" version="2.0.0"> | ||
<c:changes> | ||
<c:change compatible="false" date="2019-04-19T10:19:14+00:00" summary="Take all color scheme information from the current Android theme"/> | ||
</c:changes> | ||
</c:release> | ||
</c:releases> | ||
<c:ticket-systems> | ||
<c:ticket-system default="true" id="org.nypl.jira" url="https://jira.nypl.org/browse/"/> | ||
</c:ticket-systems> | ||
</c:changelog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
org.nypl.audiobook.android.tests.device/src/main/res/values/styles.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<resources> | ||
<color name="audiobooks_background">#ffffff</color> | ||
<color name="audiobooks_material_blue_primary">#2196f3</color> | ||
<color name="audiobooks_material_blue_primary_light">#6ec6ff</color> | ||
<color name="audiobooks_material_blue_primary_dark">#0069c0</color> | ||
|
||
<style name="AudioBooksWithActionBar" parent="Theme.AppCompat.Light.DarkActionBar"> | ||
<item name="colorPrimary">@color/audiobooks_material_blue_primary</item> | ||
<item name="colorPrimaryDark">@color/audiobooks_material_blue_primary_dark</item> | ||
<item name="colorAccent">@color/audiobooks_material_blue_primary_light</item> | ||
<item name="android:windowActionBar">true</item> | ||
<item name="android:actionBarStyle">@style/AudioBooksActionBar</item> | ||
<item name="android:windowBackground">@color/audiobooks_background</item> | ||
</style> | ||
|
||
<style name="AudioBooksActionBar" parent="Widget.AppCompat.Light.ActionBar.Solid.Inverse"> | ||
<item name="android:displayOptions">homeAsUp|showTitle</item> | ||
</style> | ||
|
||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
org.nypl.audiobook.android.tests.sandbox/src/main/res/values/styles.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<resources> | ||
<color name="audiobooks_background">#ffffff</color> | ||
<color name="audiobooks_material_blue_primary">#2196f3</color> | ||
<color name="audiobooks_material_blue_primary_light">#6ec6ff</color> | ||
<color name="audiobooks_material_blue_primary_dark">#0069c0</color> | ||
|
||
<style name="AudioBooksWithActionBar" parent="Theme.AppCompat.Light.DarkActionBar"> | ||
<item name="colorPrimary">@color/audiobooks_material_blue_primary</item> | ||
<item name="colorPrimaryDark">@color/audiobooks_material_blue_primary_dark</item> | ||
<item name="colorAccent">@color/audiobooks_material_blue_primary_light</item> | ||
<item name="android:windowActionBar">true</item> | ||
<item name="android:actionBarStyle">@style/AudioBooksActionBar</item> | ||
<item name="android:windowBackground">@color/audiobooks_background</item> | ||
</style> | ||
|
||
<style name="AudioBooksActionBar" parent="Widget.AppCompat.Light.ActionBar.Solid.Inverse"> | ||
<item name="android:displayOptions">homeAsUp|showTitle</item> | ||
</style> | ||
|
||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.