Skip to content

Commit

Permalink
Add changes for v1.6.3-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nevenz committed Apr 8, 2018
1 parent 09a33ab commit 24497a0
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public WhatsNewChange(Context context, AttributeSet attrs) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.text_list_item, this, true);

TextView c = ((TextView) view.findViewById(R.id.content));
TextView c = view.findViewById(R.id.content);
c.setText(MiscUtils.fromHtml(content));
c.setMovementMethod(LinkMovementMethod.getInstance());
}
Expand Down
64 changes: 62 additions & 2 deletions app/src/main/res/layout/dialog_whats_new.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,56 @@
android:text="@string/whats_new_intro"/>


<TextView
style="@style/WhatsNewVersion"
android:text="v1.6.3"
tools:ignore="HardcodedText"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Search and order by created-at time (&lt;tt&gt;cr&lt;/tt&gt;)"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Option to hide metadata in note fragment"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="New quick-menu button for changing state"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Ignore system locale and use US (new option)"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Preset notebook on new note from widget"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Make file immediately visible when using MTP"/>

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

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Use new app logo"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Drawer, note view and bullets redesign"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Several performance improvements"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="New and updated translations"/>


<TextView
style="@style/WhatsNewVersion"
android:text="v1.6.2"
Expand All @@ -30,40 +80,48 @@
<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Remove Agenda and support &lt;tt&gt;ad.days&lt;/tt&gt; in any query"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Support grouping using parentheses in queries"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Support &lt;tt&gt;o.state&lt;/tt&gt;"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Support &lt;tt&gt;c.closed-time&lt;/tt&gt; and &lt;tt&gt;o.closed&lt;/tt&gt;"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Support &lt;tt&gt;eq&lt;/tt&gt;, &lt;tt&gt;ne&lt;/tt&gt;, &lt;tt&gt;lt&lt;/tt&gt;, &lt;tt&gt;le&lt;/tt&gt;, &lt;tt&gt;gt&lt;/tt&gt; and &lt;tt&gt;ge&lt;/tt&gt; in &lt;tt&gt;s&lt;/tt&gt;, &lt;tt&gt;d&lt;/tt&gt; and &lt;tt&gt;c&lt;/tt&gt; operators"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Support using past times in queries (e.g. &lt;tt&gt;s.gt.-2d&lt;/tt&gt;)"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Import and export saved searches"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Add app shortcuts for syncing and creating new notes"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Allow toggling &lt;tt&gt;DONE&lt;/tt&gt; state with the check mark button from quick-menu"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text="Use system's file browser for selecting directories"/>

<com.orgzly.android.ui.views.WhatsNewChange
style="@style/WhatsNewChange"
app:text='New translations from Orgzly&apos;s &lt;a href="https://crowdin.com/project/orgzly"&gt;localization project&lt;/a&gt;'/>




<TextView
style="@style/WhatsNewVersion"
android:text="v1.6.1"
Expand Down Expand Up @@ -101,6 +159,7 @@
style="@style/WhatsNewChange"
app:text="Various bug fixes and improvements"/>


<TextView
style="@style/WhatsNewVersion"
android:text="v1.6"
Expand Down Expand Up @@ -134,6 +193,7 @@
style="@style/WhatsNewChange"
app:text="Various bug fixes"/>


<TextView
style="@style/WhatsNewVersion"
android:text="v1.5.3"
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/layout/text_list_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
android:id="@+id/bullet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:text=""
android:textStyle="bold"
tools:ignore="HardcodedText"/>

<TextView
Expand Down

0 comments on commit 24497a0

Please sign in to comment.