Right now renders using a GridLayout which means all columns are the same width.
No horizontal scrolling or becoming not-a-table for many columns, so big tables
will be a disaster. Does render and work though.
The strategy here is to actually make each cell an "item" in the RecyclerView
instead of each row being an item. Then the layout manager takes care of it.
This means that the end-of-row-ness is just because of column count, and not
actually enforced at all. It also means that as currently built if any row has
a missing field it'll mess up the whole thing.
No type directed rendering or anything yet, just dump it out.
Stephen Paul Weber
created
c0d8905
Allow copying result form fields to clipboard
Stephen Paul Weber
created
d963e8c
If we get send a form of type submit or cancel, ignore it
Click to expand commit body
These don't make any sense to send to us, but in practise biboumi does and
expects us to ignore it.
Spec says that actions must be specified if there are any. In practise, at
least biboumi violates this and sends back no actions at all but is in
"executing" state meaning it expects a next stage. So in this case we should do
something smarter than assuming we're all done. Put up a button for the
execute/default action.
Instead of a single "done" button, show all available actions in the footer,
each in a different color (generated the same as avatar backgrounds, etc) with
the action name translated if a translation is available.
The pseudo-action "close" is for when a command is already completed. In this
case, the execute() call will see that the session is already completed and it
will be removed without actually checking the action string at all.
Depending on the fragment lifecycle, onCreateView and onStart may both be called
before the backend is connected, and so there will be no conversation yet.
Instead, do the conversation-needing initialization here in reInit where we know
we have it.
If a JID advertises commands, list them.
This only works if the JID supports CAPS and is in our roster and we have
already fetched CAPS for the resource.
* tag '2.10.9': (25 commits)
version bump to 2.10.9 + changelog
set immutable flags for backup notifications
skip empty uris on attach
pulled translations from transifex
do not retrieve media attributes from encrypted files
make launch conversation and launch tor pending intents immutable
pulled translations from transifex
pulled translations from transifex
do not accept empty credentials as ice-restart
add immutable flag to pending alarm intents
add migration tutorial
Fix typo
try to detect if a container contains video or audio
request bluetooth connect permission
add permission checks to appRTCBluetoothManager
bump targetSdk to 32
ignore race condition after reject from notification
use threemas webrtc build (trial)
upgrade okhttp
remove null bytes from strings before creating sql statements in backup
...