diff options
| author | Lena <lena@omega> | 2026-08-16 00:00:00 +0000 |
|---|---|---|
| committer | Lena <lena@omega> | 2026-08-16 00:00:00 +0000 |
| commit | 0890d139e5fa501561e469aca7854791a936fcb6 (patch) | |
| tree | 58c6002cfb9f9b198a5013941ba01147aed1bc9a /app/src/main/res/layout/activity_remote.xml | |
| parent | 6c0e672432dc466214c0838db378e8269d090ab4 (diff) | |
| download | rsend-0890d139e5fa501561e469aca7854791a936fcb6.tar.gz | |
app: support multiple named remotes
Let each folder select a named SSH endpoint and migrate the published
0.1.x configuration without discarding its folders or host pin.
Diffstat (limited to 'app/src/main/res/layout/activity_remote.xml')
| -rw-r--r-- | app/src/main/res/layout/activity_remote.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_remote.xml b/app/src/main/res/layout/activity_remote.xml index 2c3ba4b..ab7690c 100644 --- a/app/src/main/res/layout/activity_remote.xml +++ b/app/src/main/res/layout/activity_remote.xml @@ -28,6 +28,22 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:textAppearance="@style/TextAppearance.Rsend.Caption" + android:text="Name" /> + + <EditText + android:id="@+id/name" + style="@style/Widget.Rsend.EditText" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="4dp" + android:inputType="text" + android:hint="nas" /> + + <TextView + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/space_m" + android:textAppearance="@style/TextAppearance.Rsend.Caption" android:text="Host" /> <EditText @@ -95,6 +111,14 @@ android:text="Save" /> </LinearLayout> + <Button + android:id="@+id/removeRemote" + style="@style/Widget.Rsend.Button.Secondary" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="@dimen/space_s" + android:text="Remove" /> + <TextView android:id="@+id/status" android:layout_width="match_parent" |