forked from mirrors/Fedilab
Dev release - 3.2.1
This commit is contained in:
parent
f8349503c9
commit
0b76f3a219
5 changed files with 11 additions and 4 deletions
|
@ -13,8 +13,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdk 21
|
minSdk 21
|
||||||
targetSdk 31
|
targetSdk 31
|
||||||
versionCode 405
|
versionCode 406
|
||||||
versionName "3.2.0"
|
versionName "3.2.1"
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
flavorDimensions "default"
|
flavorDimensions "default"
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
[
|
[
|
||||||
|
{
|
||||||
|
"version": "3.2.1",
|
||||||
|
"code": "406",
|
||||||
|
"note": "Added:\n- Settings to set all timelines at the top\n- Settings to display timelines in a list\n\nFixed:\n- Visibility issue when replying\n- Some theme issues when composing"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "3.2.0",
|
"version": "3.2.0",
|
||||||
"code": "405",
|
"code": "405",
|
||||||
|
|
|
@ -1119,6 +1119,8 @@ public class ComposeAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder
|
||||||
} else {
|
} else {
|
||||||
holder.binding.buttonEmojiOne.setVisibility(View.GONE);
|
holder.binding.buttonEmojiOne.setVisibility(View.GONE);
|
||||||
}
|
}
|
||||||
|
holder.binding.visibilityPanel.setBackgroundColor(ContextCompat.getColor(context, R.color.cyanea_primary_dark_reference));
|
||||||
|
holder.binding.attachmentChoicesPanel.setBackgroundColor(ContextCompat.getColor(context, R.color.cyanea_primary_dark_reference));
|
||||||
|
|
||||||
int newInputType = holder.binding.content.getInputType() & (holder.binding.content.getInputType() ^ InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE);
|
int newInputType = holder.binding.content.getInputType() & (holder.binding.content.getInputType() ^ InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE);
|
||||||
holder.binding.content.setInputType(newInputType);
|
holder.binding.content.setInputType(newInputType);
|
||||||
|
@ -1429,6 +1431,7 @@ public class ComposeAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
ArrayAdapter<CharSequence> pollduration = ArrayAdapter.createFromResource(context,
|
ArrayAdapter<CharSequence> pollduration = ArrayAdapter.createFromResource(context,
|
||||||
R.array.poll_duration, android.R.layout.simple_spinner_dropdown_item);
|
R.array.poll_duration, android.R.layout.simple_spinner_dropdown_item);
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="6dp"
|
android:layout_margin="6dp"
|
||||||
|
android:backgroundTint="@color/cyanea_primary_dark_reference"
|
||||||
app:cardElevation="2dp">
|
app:cardElevation="2dp">
|
||||||
|
|
||||||
<ScrollView
|
<ScrollView
|
||||||
|
|
|
@ -200,7 +200,6 @@
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="6dp"
|
android:layout_marginStart="6dp"
|
||||||
android:background="?backgroundColorLight"
|
|
||||||
android:elevation="2dp"
|
android:elevation="2dp"
|
||||||
android:visibility="gone"
|
android:visibility="gone"
|
||||||
app:constraint_referenced_ids="button_attach_image,button_attach_audio,button_attach_video,button_close_attachment_panel,button_poll,button_attach_manual"
|
app:constraint_referenced_ids="button_attach_image,button_attach_audio,button_attach_video,button_close_attachment_panel,button_poll,button_attach_manual"
|
||||||
|
@ -257,7 +256,6 @@
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="6dp"
|
android:layout_marginHorizontal="6dp"
|
||||||
android:layout_marginTop="6dp"
|
android:layout_marginTop="6dp"
|
||||||
android:background="?backgroundColorLight"
|
|
||||||
android:elevation="2dp"
|
android:elevation="2dp"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:padding="6dp"
|
android:padding="6dp"
|
||||||
|
|
Loading…
Reference in a new issue