Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f103e9e065 | ||
|
|
6a1052d437 | ||
|
|
7e028b09d4 | ||
|
|
f6e801defc | ||
|
|
90f2088265 |
@@ -16,13 +16,31 @@ jobs:
|
||||
run: |
|
||||
set -eu
|
||||
|
||||
install_packages() {
|
||||
if command -v apt-get >/dev/null 2>&1; then
|
||||
apt-get update
|
||||
apt-get install -y "$@"
|
||||
elif command -v apk >/dev/null 2>&1; then
|
||||
apk add --no-cache "$@"
|
||||
elif command -v dnf >/dev/null 2>&1; then
|
||||
dnf install -y "$@"
|
||||
else
|
||||
echo "No supported package manager found." >&2
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
if ! command -v git >/dev/null 2>&1 || ! command -v curl >/dev/null 2>&1 || ! command -v unzip >/dev/null 2>&1; then
|
||||
apt-get update
|
||||
apt-get install -y git curl unzip
|
||||
install_packages git curl unzip
|
||||
fi
|
||||
if ! command -v java >/dev/null 2>&1; then
|
||||
apt-get update
|
||||
apt-get install -y openjdk-17-jdk-headless
|
||||
if command -v apk >/dev/null 2>&1; then
|
||||
install_packages openjdk17-jdk
|
||||
elif command -v dnf >/dev/null 2>&1; then
|
||||
install_packages java-17-openjdk-devel
|
||||
else
|
||||
install_packages openjdk-17-jdk-headless
|
||||
fi
|
||||
fi
|
||||
java -version
|
||||
|
||||
|
||||
@@ -66,7 +66,7 @@ public final class MainActivity extends Activity {
|
||||
private static final int MAX_TERMINAL_COLS = 140;
|
||||
private static final int MIN_TERMINAL_ROWS = 8;
|
||||
private static final int MAX_TERMINAL_ROWS = 80;
|
||||
private static final int TERMINAL_KEYS_HEIGHT_DP = 54;
|
||||
private static final int TERMINAL_KEYS_HEIGHT_DP = 34;
|
||||
private static final int STATUS_NORMAL = 0;
|
||||
private static final int STATUS_BUSY = 1;
|
||||
private static final int STATUS_SUCCESS = 2;
|
||||
@@ -126,6 +126,7 @@ public final class MainActivity extends Activity {
|
||||
private TextView terminalMetaText;
|
||||
private ScrollView terminalScroll;
|
||||
private EditText inputField;
|
||||
private final Button[] terminalAccessoryTabButtons = new Button[4];
|
||||
private View terminalAccessoryBar;
|
||||
private View terminalComposerBar;
|
||||
private LinearLayout terminalGroupRow;
|
||||
@@ -2067,7 +2068,32 @@ public final class MainActivity extends Activity {
|
||||
|
||||
LinearLayout row = new LinearLayout(this);
|
||||
row.setOrientation(LinearLayout.HORIZONTAL);
|
||||
row.setGravity(Gravity.BOTTOM);
|
||||
row.setGravity(Gravity.CENTER_VERTICAL);
|
||||
|
||||
LinearLayout tabGrid = new LinearLayout(this);
|
||||
tabGrid.setOrientation(LinearLayout.VERTICAL);
|
||||
LinearLayout firstTabRow = terminalKeyRow();
|
||||
LinearLayout secondTabRow = terminalKeyRow();
|
||||
addAccessoryTab(firstTabRow, "Edit", 0);
|
||||
addAccessoryTab(firstTabRow, "Ctrl", 1);
|
||||
addAccessoryTab(secondTabRow, "Nav", 2);
|
||||
addAccessoryTab(secondTabRow, "Sym", 3);
|
||||
tabGrid.addView(firstTabRow, new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
0,
|
||||
1
|
||||
));
|
||||
LinearLayout.LayoutParams secondTabParams = new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
0,
|
||||
1
|
||||
);
|
||||
secondTabParams.topMargin = dp(3);
|
||||
tabGrid.addView(secondTabRow, secondTabParams);
|
||||
row.addView(tabGrid, new LinearLayout.LayoutParams(
|
||||
dp(72),
|
||||
ViewGroup.LayoutParams.MATCH_PARENT
|
||||
));
|
||||
|
||||
inputField = new EditText(this);
|
||||
inputField.setTextColor(COLOR_TEXT);
|
||||
@@ -2100,9 +2126,6 @@ public final class MainActivity extends Activity {
|
||||
}
|
||||
return false;
|
||||
});
|
||||
Button image = composerButton("Img", view -> pickImageForSession(activeSessionName));
|
||||
image.setContentDescription("Upload image");
|
||||
row.addView(image, new LinearLayout.LayoutParams(dp(38), dp(38)));
|
||||
LinearLayout.LayoutParams inputParams = new LinearLayout.LayoutParams(
|
||||
0,
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT,
|
||||
@@ -2111,9 +2134,29 @@ public final class MainActivity extends Activity {
|
||||
inputParams.leftMargin = dp(5);
|
||||
inputParams.rightMargin = dp(5);
|
||||
row.addView(inputField, inputParams);
|
||||
|
||||
LinearLayout actions = new LinearLayout(this);
|
||||
actions.setOrientation(LinearLayout.VERTICAL);
|
||||
Button send = composerPrimaryButton("Send", view -> sendLine());
|
||||
send.setContentDescription("Send input");
|
||||
row.addView(send, new LinearLayout.LayoutParams(dp(48), dp(38)));
|
||||
actions.addView(send, new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
0,
|
||||
1
|
||||
));
|
||||
Button image = composerButton("Img", view -> pickImageForSession(activeSessionName));
|
||||
image.setContentDescription("Upload image");
|
||||
LinearLayout.LayoutParams imageParams = new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
0,
|
||||
1
|
||||
);
|
||||
imageParams.topMargin = dp(3);
|
||||
actions.addView(image, imageParams);
|
||||
row.addView(actions, new LinearLayout.LayoutParams(
|
||||
dp(48),
|
||||
ViewGroup.LayoutParams.MATCH_PARENT
|
||||
));
|
||||
bar.addView(row, matchWrap());
|
||||
return bar;
|
||||
}
|
||||
@@ -2679,20 +2722,9 @@ public final class MainActivity extends Activity {
|
||||
private LinearLayout createAccessoryBar() {
|
||||
LinearLayout panel = new LinearLayout(this);
|
||||
panel.setOrientation(LinearLayout.VERTICAL);
|
||||
panel.setPadding(dp(6), dp(3), dp(6), dp(3));
|
||||
panel.setPadding(dp(4), dp(3), dp(4), dp(3));
|
||||
panel.setBackgroundColor(COLOR_PANEL);
|
||||
|
||||
LinearLayout tabs = terminalKeyRow();
|
||||
tabs.setGravity(Gravity.CENTER_VERTICAL);
|
||||
addAccessoryTab(tabs, "Edit", 0);
|
||||
addAccessoryTab(tabs, "Ctrl", 1);
|
||||
addAccessoryTab(tabs, "Nav", 2);
|
||||
addAccessoryTab(tabs, "Sym", 3);
|
||||
panel.addView(tabs, new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
dp(18)
|
||||
));
|
||||
|
||||
HorizontalScrollView keyScroller = new HorizontalScrollView(this);
|
||||
keyScroller.setHorizontalScrollBarEnabled(false);
|
||||
keyScroller.setFillViewport(true);
|
||||
@@ -2702,13 +2734,10 @@ public final class MainActivity extends Activity {
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT,
|
||||
ViewGroup.LayoutParams.MATCH_PARENT
|
||||
));
|
||||
LinearLayout.LayoutParams keyParams = new LinearLayout.LayoutParams(
|
||||
panel.addView(keyScroller, new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
0,
|
||||
1
|
||||
);
|
||||
keyParams.topMargin = dp(2);
|
||||
panel.addView(keyScroller, keyParams);
|
||||
ViewGroup.LayoutParams.MATCH_PARENT
|
||||
));
|
||||
return panel;
|
||||
}
|
||||
|
||||
@@ -2744,8 +2773,6 @@ public final class MainActivity extends Activity {
|
||||
addSoftKey(row, "End", "\u001b[F");
|
||||
addSoftKey(row, "Pg↑", "\u001b[5~");
|
||||
addSoftKey(row, "Pg↓", "\u001b[6~");
|
||||
addComposerButton(row, "Prev", () -> setTerminalKeyPage(terminalKeyPage - 1));
|
||||
addComposerButton(row, "Next", () -> setTerminalKeyPage(terminalKeyPage + 1));
|
||||
addSoftKey(row, "Clear", "\u000c");
|
||||
addSoftKey(row, "Detach", "\u0002d");
|
||||
break;
|
||||
@@ -2771,12 +2798,12 @@ public final class MainActivity extends Activity {
|
||||
addSoftKey(row, "↓", "\u001b[B");
|
||||
addSoftKey(row, "Esc", "\u001b");
|
||||
addSoftKey(row, "Tab", "\t");
|
||||
addSoftKey(row, "Enter", TERMINAL_ENTER);
|
||||
addSoftKey(row, "↵", TERMINAL_ENTER);
|
||||
addSoftButton(row, "Paste", view -> pasteClipboard());
|
||||
addComposerButton(row, "⌫", this::backspaceComposerText);
|
||||
addTextKey(row, "NL", "\n");
|
||||
addComposerButton(row, "Bottom", this::scrollTerminalBottom);
|
||||
addComposerButton(row, "Select", () -> {
|
||||
addComposerButton(row, "Bot", this::scrollTerminalBottom);
|
||||
addComposerButton(row, "Sel", () -> {
|
||||
terminalSelectionEnabled = !terminalSelectionEnabled;
|
||||
if (terminalText != null) {
|
||||
terminalText.setTextIsSelectable(terminalSelectionEnabled);
|
||||
@@ -3053,6 +3080,7 @@ public final class MainActivity extends Activity {
|
||||
|
||||
private void setTerminalKeyPage(int page) {
|
||||
terminalKeyPage = (page + 4) % 4;
|
||||
updateAccessoryTabs();
|
||||
if (activeSessionName != null) {
|
||||
renderTerminalControlsOnly();
|
||||
}
|
||||
@@ -3222,8 +3250,8 @@ public final class MainActivity extends Activity {
|
||||
Button button = toolbarButton(label, listener);
|
||||
button.setTextSize(10);
|
||||
button.setPadding(dp(5), 0, dp(5), 0);
|
||||
button.setMinWidth(0);
|
||||
button.setMinimumWidth(0);
|
||||
button.setMinWidth(dp(38));
|
||||
button.setMinimumWidth(dp(38));
|
||||
button.setMinHeight(0);
|
||||
button.setMinimumHeight(0);
|
||||
return button;
|
||||
@@ -3309,9 +3337,9 @@ public final class MainActivity extends Activity {
|
||||
private void addSoftButton(LinearLayout row, String label, View.OnClickListener listener) {
|
||||
Button button = toolbarButton(label, listener);
|
||||
button.setTextSize(isArrowLabel(label) ? 14 : 9);
|
||||
button.setPadding(dp(5), 0, dp(5), 0);
|
||||
button.setMinWidth(0);
|
||||
button.setMinimumWidth(0);
|
||||
button.setPadding(dp(2), 0, dp(2), 0);
|
||||
button.setMinWidth(dp(24));
|
||||
button.setMinimumWidth(dp(24));
|
||||
button.setMinHeight(0);
|
||||
button.setMinimumHeight(0);
|
||||
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
|
||||
@@ -3319,31 +3347,45 @@ public final class MainActivity extends Activity {
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
0
|
||||
);
|
||||
params.leftMargin = dp(1);
|
||||
params.rightMargin = dp(1);
|
||||
row.addView(button, params);
|
||||
}
|
||||
|
||||
private void addAccessoryTab(LinearLayout row, String label, int page) {
|
||||
Button button = toolbarButton(label, view -> setTerminalKeyPage(page));
|
||||
boolean selected = terminalKeyPage == page;
|
||||
button.setTextSize(8);
|
||||
button.setPadding(dp(7), 0, dp(7), 0);
|
||||
button.setPadding(dp(3), 0, dp(3), 0);
|
||||
button.setMinWidth(0);
|
||||
button.setMinimumWidth(0);
|
||||
button.setMinHeight(0);
|
||||
button.setMinimumHeight(0);
|
||||
terminalAccessoryTabButtons[page] = button;
|
||||
styleAccessoryTab(button, terminalKeyPage == page);
|
||||
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
|
||||
0,
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
1
|
||||
);
|
||||
if (row.getChildCount() > 0) {
|
||||
params.leftMargin = dp(3);
|
||||
}
|
||||
row.addView(button, params);
|
||||
}
|
||||
|
||||
private void updateAccessoryTabs() {
|
||||
for (int page = 0; page < terminalAccessoryTabButtons.length; page++) {
|
||||
Button button = terminalAccessoryTabButtons[page];
|
||||
if (button != null) {
|
||||
styleAccessoryTab(button, terminalKeyPage == page);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void styleAccessoryTab(Button button, boolean selected) {
|
||||
button.setTextColor(selected ? Color.rgb(14, 38, 24) : COLOR_TEXT_MUTED);
|
||||
button.setBackground(selected
|
||||
? rounded(COLOR_ACCENT, 7, COLOR_ACCENT, 1)
|
||||
: rounded(COLOR_CARD_ALT, 7, COLOR_BORDER_SOFT, 1));
|
||||
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(
|
||||
ViewGroup.LayoutParams.WRAP_CONTENT,
|
||||
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||
0
|
||||
);
|
||||
params.rightMargin = dp(2);
|
||||
row.addView(button, params);
|
||||
? rounded(COLOR_ACCENT, 6, COLOR_ACCENT, 1)
|
||||
: rounded(COLOR_CARD_ALT, 6, COLOR_BORDER_SOFT, 1));
|
||||
}
|
||||
|
||||
private boolean isArrowLabel(String label) {
|
||||
@@ -3653,9 +3695,14 @@ public final class MainActivity extends Activity {
|
||||
throw new IllegalStateException("Cannot open selected image");
|
||||
}
|
||||
String response = api.uploadImage(sessionName, readAllBytes(input));
|
||||
String imagePath = new JSONObject(response).optString("absolutePath", "").trim();
|
||||
if (imagePath.isEmpty()) {
|
||||
throw new IllegalStateException("Upload response did not include absolutePath");
|
||||
}
|
||||
runOnUiThread(() -> {
|
||||
progressBar.setVisibility(View.GONE);
|
||||
showTextDialog("Image upload", response);
|
||||
insertComposerPath(imagePath);
|
||||
setStatus("Image path inserted");
|
||||
});
|
||||
} catch (Exception error) {
|
||||
runOnUiThread(() -> {
|
||||
@@ -3677,6 +3724,21 @@ public final class MainActivity extends Activity {
|
||||
return output.toByteArray();
|
||||
}
|
||||
|
||||
private void insertComposerPath(String path) {
|
||||
if (inputField == null) {
|
||||
return;
|
||||
}
|
||||
int start = Math.max(0, inputField.getSelectionStart());
|
||||
int end = Math.max(0, inputField.getSelectionEnd());
|
||||
int from = Math.min(start, end);
|
||||
int to = Math.max(start, end);
|
||||
CharSequence current = inputField.getText();
|
||||
String prefix = from > 0 && !Character.isWhitespace(current.charAt(from - 1)) ? " " : "";
|
||||
String suffix = to < current.length() && Character.isWhitespace(current.charAt(to)) ? "" : " ";
|
||||
inputField.getText().replace(from, to, prefix + path + suffix);
|
||||
inputField.requestFocus();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onBackPressed() {
|
||||
if (activeSessionName != null) {
|
||||
|
||||
@@ -14,6 +14,7 @@ import java.util.List;
|
||||
final class TerminalScreenBuffer {
|
||||
private static final int DEFAULT_FG = 0xffe6ebf2;
|
||||
private static final int DEFAULT_BG = Color.TRANSPARENT;
|
||||
private static final int TERMINAL_BG = 0xff0b0e13;
|
||||
|
||||
private int cols;
|
||||
private int rows;
|
||||
@@ -27,6 +28,7 @@ final class TerminalScreenBuffer {
|
||||
private int fg = DEFAULT_FG;
|
||||
private int bg = DEFAULT_BG;
|
||||
private boolean bold;
|
||||
private boolean dim;
|
||||
|
||||
TerminalScreenBuffer(int cols, int rows) {
|
||||
resize(cols, rows);
|
||||
@@ -74,6 +76,7 @@ final class TerminalScreenBuffer {
|
||||
fg = DEFAULT_FG;
|
||||
bg = DEFAULT_BG;
|
||||
bold = false;
|
||||
dim = false;
|
||||
}
|
||||
|
||||
void write(String text) {
|
||||
@@ -257,10 +260,14 @@ final class TerminalScreenBuffer {
|
||||
fg = DEFAULT_FG;
|
||||
bg = DEFAULT_BG;
|
||||
bold = false;
|
||||
dim = false;
|
||||
} else if (value == 1) {
|
||||
bold = true;
|
||||
} else if (value == 2) {
|
||||
dim = true;
|
||||
} else if (value == 22) {
|
||||
bold = false;
|
||||
dim = false;
|
||||
} else if (value == 39) {
|
||||
fg = DEFAULT_FG;
|
||||
} else if (value == 49) {
|
||||
@@ -302,7 +309,7 @@ final class TerminalScreenBuffer {
|
||||
wrapPending = false;
|
||||
newLine();
|
||||
}
|
||||
cells[cursorRow][cursorCol].set(value, fg, bg, bold);
|
||||
cells[cursorRow][cursorCol].set(value, fg, bg, bold, dim);
|
||||
if (cursorCol == cols - 1) {
|
||||
wrapPending = true;
|
||||
} else {
|
||||
@@ -453,15 +460,19 @@ final class TerminalScreenBuffer {
|
||||
int fgColor = first.fg;
|
||||
int bgColor = first.bg;
|
||||
boolean isBold = first.bold;
|
||||
boolean isDim = first.dim;
|
||||
while (col < cols) {
|
||||
Cell cell = cells[row][col];
|
||||
if (cell.fg != fgColor || cell.bg != bgColor || cell.bold != isBold) {
|
||||
if (cell.fg != fgColor || cell.bg != bgColor || cell.bold != isBold || cell.dim != isDim) {
|
||||
break;
|
||||
}
|
||||
output.append(cell.value);
|
||||
col++;
|
||||
}
|
||||
int end = output.length();
|
||||
if (isDim) {
|
||||
fgColor = blendColor(fgColor, bgColor == DEFAULT_BG ? TERMINAL_BG : bgColor, 0.55f);
|
||||
}
|
||||
output.setSpan(new ForegroundColorSpan(fgColor), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
if (bgColor != DEFAULT_BG) {
|
||||
output.setSpan(new BackgroundColorSpan(bgColor), start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
||||
@@ -613,6 +624,15 @@ final class TerminalScreenBuffer {
|
||||
return value == 0 ? 0 : 55 + value * 40;
|
||||
}
|
||||
|
||||
private static int blendColor(int foreground, int background, float foregroundRatio) {
|
||||
float backgroundRatio = 1f - foregroundRatio;
|
||||
return Color.rgb(
|
||||
Math.round(Color.red(foreground) * foregroundRatio + Color.red(background) * backgroundRatio),
|
||||
Math.round(Color.green(foreground) * foregroundRatio + Color.green(background) * backgroundRatio),
|
||||
Math.round(Color.blue(foreground) * foregroundRatio + Color.blue(background) * backgroundRatio)
|
||||
);
|
||||
}
|
||||
|
||||
private static int clamp(int value, int min, int max) {
|
||||
return Math.max(min, Math.min(max, value));
|
||||
}
|
||||
@@ -622,19 +642,22 @@ final class TerminalScreenBuffer {
|
||||
int fg = DEFAULT_FG;
|
||||
int bg = DEFAULT_BG;
|
||||
boolean bold;
|
||||
boolean dim;
|
||||
|
||||
void clear() {
|
||||
value = ' ';
|
||||
fg = DEFAULT_FG;
|
||||
bg = DEFAULT_BG;
|
||||
bold = false;
|
||||
dim = false;
|
||||
}
|
||||
|
||||
void set(char nextValue, int nextFg, int nextBg, boolean nextBold) {
|
||||
void set(char nextValue, int nextFg, int nextBg, boolean nextBold, boolean nextDim) {
|
||||
value = nextValue;
|
||||
fg = nextFg;
|
||||
bg = nextBg;
|
||||
bold = nextBold;
|
||||
dim = nextDim;
|
||||
}
|
||||
|
||||
void copyFrom(Cell other) {
|
||||
@@ -642,6 +665,7 @@ final class TerminalScreenBuffer {
|
||||
fg = other.fg;
|
||||
bg = other.bg;
|
||||
bold = other.bold;
|
||||
dim = other.dim;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user