Skip to content

Commit

Permalink
Add changes for v1.8.6-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nevenz committed Jan 1, 2022
1 parent 656e910 commit e3bfceb
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
25 changes: 24 additions & 1 deletion app/src/main/res/layout/dialog_whats_new.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,33 @@
android:id="@+id/dialog_whats_new_intro"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/space_between_content_areas"
android:text="@string/whats_new_intro"/>



<TextView
style="@style/WhatsNewNotice"
android:text="@string/target_11_warning" />

<TextView
style="@style/WhatsNewVersion"
android:text="v1.8.6-beta.1"
tools:ignore="HardcodedText" />

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Target Android 11" />

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="New “System” color scheme" />

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="WebDAV sync fixes and digest authentication support" />



<TextView
style="@style/WhatsNewVersion"
android:text="v1.8.5"
Expand Down
8 changes: 8 additions & 0 deletions app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,14 @@
</style>


<style name="WhatsNewNotice">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textStyle">bold</item>
<item name="android:textSize">16sp</item>
<item name="android:layout_marginTop">16dp</item>
</style>

<style name="WhatsNewVersion">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,6 @@
<a href="https://crowdin.com/project/orgzly">translate</a>
the app on Crowdin.
]]></string>

<string name="target_11_warning">If you encounter any permission issues due to Android\'s new scoped storage please let us know.</string>
</resources>

0 comments on commit e3bfceb

Please sign in to comment.