termux-dev 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/assets/banner.svg CHANGED
@@ -25,7 +25,7 @@
25
25
 
26
26
  <!-- Tagline & Badge -->
27
27
  <text x="425" y="142" font-family="system-ui, -apple-system, sans-serif" font-size="14" font-weight="600" fill="#8b949e" text-anchor="middle" letter-spacing="3">
28
- THE TERMINAL-NATIVE AI CODING AGENT <tspan fill="#00f2fe" font-weight="bold">v1.2.0</tspan>
28
+ THE TERMINAL-NATIVE AI CODING AGENT <tspan fill="#00f2fe" font-weight="bold">v1.2.2</tspan>
29
29
  </text>
30
30
 
31
31
  <!-- Top Accent Line -->
package/dist/cli/index.js CHANGED
@@ -391,7 +391,7 @@ function drawLogo() {
391
391
  theme.colorFn(' █▀▀▄ █▀▀▀ █ █ █ █'),
392
392
  theme.colorFn(' █ █ █▀▀▀ ▀▄▀ ▀▄▀ '),
393
393
  theme.colorFn(' █▄▄▀ █▄▄▄ ▀ ▀ ▀ '),
394
- ' ' + theme.boldFn('v1.2.0'),
394
+ ' ' + theme.boldFn('v1.2.2'),
395
395
  ''
396
396
  ];
397
397
  for (const line of logo) {
@@ -406,7 +406,7 @@ function drawLogo() {
406
406
  indent + theme.colorFn('▀▀▀█▀▀▀ █▀▀▀ █▀▀█ █▄ ▄█ █ █ ▀▄ ▄▀ █▀▀▄ █▀▀▀ █ █'),
407
407
  indent + theme.colorFn(' █ █▀▀▀ █▄▄▀ █ █ █ █ █ █ ▀▀ █ █ █▀▀▀ █ █'),
408
408
  indent + theme.colorFn(' █ █▄▄▄ █ ▀▄ █ █ ▀▄▄▀ ▄▀ ▀▄ █▄▄▀ █▄▄▄ ▀▄▀ '),
409
- indent + theme.boldFn('v1.2.0'),
409
+ indent + theme.boldFn('v1.2.2'),
410
410
  ''
411
411
  ];
412
412
  for (const line of logo) {
@@ -685,7 +685,7 @@ export async function main() {
685
685
  const maxIterLabel = maxIter >= 9999 ? 'Unlimited' : `${maxIter} steps`;
686
686
  const currentTh = getCurrentTheme();
687
687
  const choice = await select({
688
- message: `${pc.bold('⚙️ Settings')} ${pc.dim(`(devx v1.2.0 • theme: ${currentTh.name})`)}`,
688
+ message: `${pc.bold('⚙️ Settings')} ${pc.dim(`(devx v1.2.2 • theme: ${currentTh.name})`)}`,
689
689
  choices: [
690
690
  {
691
691
  name: `🎨 Color Theme: ${currentTh.emoji} ${currentTh.name}`,
@@ -726,7 +726,7 @@ export async function main() {
726
726
  description: 'Limit how many tool steps (file edits, terminal commands) agent can do per request'
727
727
  },
728
728
  {
729
- name: `${currentTh.colorFn('✨ About devx')} ${pc.dim('(v1.2.0 by ApvCode)')}`,
729
+ name: `${currentTh.colorFn('✨ About devx')} ${pc.dim('(v1.2.2 by ApvCode)')}`,
730
730
  value: 'about',
731
731
  description: 'Terminal-Native AI Coding Agent created by ApvCode (https://github.com/apvcode/Termux-Dev)'
732
732
  },
@@ -742,7 +742,7 @@ export async function main() {
742
742
  continue;
743
743
  }
744
744
  if (choice === 'about') {
745
- p.note(`⚡ devx v1.2.0 — Terminal-Native AI Coding Agent\n` +
745
+ p.note(`⚡ devx v1.2.2 — Terminal-Native AI Coding Agent\n` +
746
746
  `🎨 Theme: ${currentTh.emoji} ${currentTh.name}\n` +
747
747
  `👤 Author: ApvCode (https://github.com/apvcode)\n` +
748
748
  `🌟 Repository: https://github.com/apvcode/Termux-Dev\n` +
@@ -139,7 +139,7 @@ function renderDirectoryHtml(dirPath, relPath, files, port) {
139
139
  ${parentLink}
140
140
  ${items || '<li style="padding: 20px; text-align: center; color: #6e7681;">No visible files in this directory</li>'}
141
141
  </ul>
142
- <div class="footer">devx v1.2.0 &bull; Terminal-Native AI Assistant</div>
142
+ <div class="footer">devx v1.2.2 &bull; Terminal-Native AI Assistant</div>
143
143
  </div>
144
144
  </body>
145
145
  </html>`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "termux-dev",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Ultra-fast, terminal-native AI coding assistant and agent built for Android Termux, Windows, macOS, and Linux.",
5
5
  "main": "dist/cli/index.js",
6
6
  "type": "module",