[PR #3] [MERGED] v1.2.0 #4

Closed
opened 2026-02-28 00:49:05 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Termix-SSH/Mobile/pull/3
Author: @LukeGus
Created: 12/17/2025
Status: Merged
Merged: 12/17/2025
Merged by: @LukeGus

Base: mainHead: 1.2.0


📝 Commits (10+)

  • b42ff51 feat: Add landscape laayout, file manager, and server stats (squash)
  • 0fe9e2b fix: Improve UI issues
  • 623578b feat: Greatly improve UI consistency, improve UI for all components (local squash)
  • 8ee4177 feat: Improved file manager editor/styling
  • f69db49 fix: Run npm linter and improve styling/UI bugs
  • 3691c50 feat: Fix tab bar height issues, and bein fixing terminal kb dismissal
  • af9fd57 fix: Fix the snippets bar visibility and general issues with landscape styling
  • acddd26 chore: Format and clean up files
  • 553aa4b Update app.json
  • 5cf46f4 fix: Updated types

📊 Changes

68 files changed (+10784 additions, -2481 deletions)

View changed files

📝 README.md (+6 -4)
📝 app.json (+5 -4)
📝 app/(tabs)/_layout.tsx (+10 -0)
📝 app/(tabs)/hosts.tsx (+1 -1)
📝 app/(tabs)/sessions.tsx (+1 -1)
📝 app/(tabs)/settings.tsx (+1 -1)
📝 app/AppContext.tsx (+49 -0)
app/Tabs/Sessions/KeyboardKey.tsx (+0 -136)
app/Tabs/Sessions/Navigation/TabBar.tsx (+0 -250)
app/Tabs/Sessions/Sessions.tsx (+0 -593)
app/Tabs/Sessions/Terminal.tsx (+0 -749)
📝 app/_layout.tsx (+16 -4)
📝 app/authentication/LoginForm.tsx (+27 -5)
📝 app/authentication/ServerForm.tsx (+0 -0)
📝 app/authentication/UpdateRequired.tsx (+1 -1)
app/constants/designTokens.ts (+61 -0)
📝 app/contexts/KeyboardCustomizationContext.tsx (+1 -1)
📝 app/contexts/TerminalCustomizationContext.tsx (+29 -17)
📝 app/contexts/TerminalSessionsContext.tsx (+90 -44)
📝 app/main-axios.ts (+1186 -184)

...and 48 more files

📄 Description

Added support for file manager, server stats, tunnels, snippets, and new terminal/host customization

Update Log:

  • Added landscape support
  • Added file manager
    • View, edit, and copy/move files
  • Add server stats
    • Only support for CPU, RAM, and HDD widgets
  • Added SSH tunnels
    • View, start, stop tunnels
  • Added snippets to custom keyboard terminal (no command history)
    • With support for folders and executing with one click
  • TOTP support
  • “None” password option support
    • Enter password/ssh key at runtime
  • Synced terminal customization (theme, font, etc.)
  • Improved text selection

Bug Fixes:

  • HTTP hosts not loading
  • General keyboard issues

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Termix-SSH/Mobile/pull/3 **Author:** [@LukeGus](https://github.com/LukeGus) **Created:** 12/17/2025 **Status:** ✅ Merged **Merged:** 12/17/2025 **Merged by:** [@LukeGus](https://github.com/LukeGus) **Base:** `main` ← **Head:** `1.2.0` --- ### 📝 Commits (10+) - [`b42ff51`](https://github.com/Termix-SSH/Mobile/commit/b42ff51a09f149e69b29ee91d025eba7294f3f88) feat: Add landscape laayout, file manager, and server stats (squash) - [`0fe9e2b`](https://github.com/Termix-SSH/Mobile/commit/0fe9e2b987dc085c1be52934232da07c3f6033fb) fix: Improve UI issues - [`623578b`](https://github.com/Termix-SSH/Mobile/commit/623578ba1e3a9b3e0883e53a04bf3d50e61cec34) feat: Greatly improve UI consistency, improve UI for all components (local squash) - [`8ee4177`](https://github.com/Termix-SSH/Mobile/commit/8ee41770e082857f2ba16686e01e0bb90e9d928a) feat: Improved file manager editor/styling - [`f69db49`](https://github.com/Termix-SSH/Mobile/commit/f69db496079acd7d8fb150f37fb5546f4c2705b4) fix: Run npm linter and improve styling/UI bugs - [`3691c50`](https://github.com/Termix-SSH/Mobile/commit/3691c509d1bc59b8d50c8b6eee143d70dd282c80) feat: Fix tab bar height issues, and bein fixing terminal kb dismissal - [`af9fd57`](https://github.com/Termix-SSH/Mobile/commit/af9fd5774eeb87194e3f0ca05f803df9339b9e64) fix: Fix the snippets bar visibility and general issues with landscape styling - [`acddd26`](https://github.com/Termix-SSH/Mobile/commit/acddd261783d97f986060c83af07d1cb37ca8a88) chore: Format and clean up files - [`553aa4b`](https://github.com/Termix-SSH/Mobile/commit/553aa4b611c4facf56e76d4e80ef2fb070d64762) Update app.json - [`5cf46f4`](https://github.com/Termix-SSH/Mobile/commit/5cf46f4e96379629135658203a733880a0e72ea0) fix: Updated types ### 📊 Changes **68 files changed** (+10784 additions, -2481 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+6 -4) 📝 `app.json` (+5 -4) 📝 `app/(tabs)/_layout.tsx` (+10 -0) 📝 `app/(tabs)/hosts.tsx` (+1 -1) 📝 `app/(tabs)/sessions.tsx` (+1 -1) 📝 `app/(tabs)/settings.tsx` (+1 -1) 📝 `app/AppContext.tsx` (+49 -0) ➖ `app/Tabs/Sessions/KeyboardKey.tsx` (+0 -136) ➖ `app/Tabs/Sessions/Navigation/TabBar.tsx` (+0 -250) ➖ `app/Tabs/Sessions/Sessions.tsx` (+0 -593) ➖ `app/Tabs/Sessions/Terminal.tsx` (+0 -749) 📝 `app/_layout.tsx` (+16 -4) 📝 `app/authentication/LoginForm.tsx` (+27 -5) 📝 `app/authentication/ServerForm.tsx` (+0 -0) 📝 `app/authentication/UpdateRequired.tsx` (+1 -1) ➕ `app/constants/designTokens.ts` (+61 -0) 📝 `app/contexts/KeyboardCustomizationContext.tsx` (+1 -1) 📝 `app/contexts/TerminalCustomizationContext.tsx` (+29 -17) 📝 `app/contexts/TerminalSessionsContext.tsx` (+90 -44) 📝 `app/main-axios.ts` (+1186 -184) _...and 48 more files_ </details> ### 📄 Description Added support for file manager, server stats, tunnels, snippets, and new terminal/host customization Update Log: - Added landscape support - Added file manager - View, edit, and copy/move files - Add server stats - Only support for CPU, RAM, and HDD widgets - Added SSH tunnels - View, start, stop tunnels - Added snippets to custom keyboard terminal (no command history) - With support for folders and executing with one click - TOTP support - “None” password option support - Enter password/ssh key at runtime - Synced terminal customization (theme, font, etc.) - Improved text selection Bug Fixes: - HTTP hosts not loading - General keyboard issues --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-28 00:49:05 +03:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Mobile#4
No description provided.