99</p >
1010
1111<p align =" center " >
12- <img src =" https://img.shields.io/badge/version-v1.0.1 -7c3aed?style=flat-square " >
13- <img src =" https://img.shields.io/badge/python-3.10%2B-blue ?style=flat-square " >
14- <img src =" https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux-green?style=flat-square " >
15- <img src =" https://img.shields.io/badge/license-MIT-orange ?style=flat-square " >
12+ <img src =" https://img.shields.io/badge/version-v1.0.2 -7c3aed?style=flat-square " >
13+ <img src =" https://img.shields.io/badge/runtime-Native_Rust_VM-orange ?style=flat-square " >
14+ <img src =" https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux%20%7C%20Android -green?style=flat-square " >
15+ <img src =" https://img.shields.io/badge/license-MIT-blue ?style=flat-square " >
1616</p >
1717
1818---
@@ -36,10 +36,10 @@ say f"Hello, {name}!"
3636That's it. ** No semicolons. No brackets. No confusing symbols.** Just simple words that make sense.
3737
3838TechScript is:
39- - 🟢 ** A programming language** — you can write code that runs on your computer
39+ - 🟢 ** A programming language** — you can write code that runs on your computer natively
4040- 🌐 ** A web builder** — you can build full websites with it (no HTML or CSS needed!)
41- - 🐍 ** Powered by Python ** — works on any computer that has Python installed
42- - 📦 ** One command** — ` tech run yourfile.txs ` and your program runs instantly
41+ - 🦀 ** Powered by Native Rust ** — blazing fast compilation, completely independent of Python
42+ - 📦 ** One command** — ` tech run yourfile.txs ` and your program runs instantly into bytecodes
4343
4444---
4545
@@ -68,70 +68,63 @@ TechScript is:
6868### Option 1: One-Click Installer (Recommended for Beginners)
6969
70701 . Go to the [ 📥 Releases page] ( ../../releases/latest )
71- 2 . Download ** ` TechScript-Setup .exe` **
71+ 2 . Download ** ` setup .exe` **
72723 . Double-click it — it will install everything automatically!
73734 . Open ** PowerShell** (press ` Win + X ` → "Windows PowerShell") and type:
7474
7575```
7676tech version
7777```
7878
79- You should see: ` TechScript v1.0.1 ` 🎉
79+ You should see: ` TechScript v1.0.2 ` 🎉
8080
8181** What the installer does automatically:**
8282- ✅ Puts ` tech.exe ` on your computer
8383- ✅ Makes the ` tech ` command available everywhere in your terminal
8484- ✅ Registers ` .txs ` files so they know they belong to TechScript
8585- ✅ Installs the VS Code extension for syntax highlighting
8686
87- ### Option 2: Using pip (If you already have Python )
87+ ### Option 2: Using pip (Cross-Platform Wrapper )
8888
8989``` powershell
90- pip install techscript
90+ pip install techscript-lang
9191```
9292
9393---
9494
95- ## 🐧 Install on Linux (Ubuntu, Kali, Arch, etc. )
95+ ## 🐧 Install on Linux (Ubuntu, Kali, Debian, Arch )
9696
9797### Super Simple — Just paste this in your terminal:
9898
9999``` bash
100- curl -fsSL https://raw.githubusercontent.com/Tcode-Moti/TechScript /main/scripts/install.sh | bash
100+ curl -fsSL https://raw.githubusercontent.com/Tcode-Motion/techscript /main/scripts/install.sh | bash
101101```
102102
103- ** Or manually:**
104-
103+ ** Using APT (Debian/Ubuntu):**
105104``` bash
106- # Step 1: Make sure Python 3.10+ is installed
107- python3 --version
108-
109- # Step 2: Install TechScript
110- pip3 install techscript
111-
112- # Step 3: Test it
113- tech version
105+ sudo apt update
106+ sudo apt install techscript
114107```
115108
116109---
117110
118111## 🍎 Install on macOS
119112
120113``` bash
121- # If you have Homebrew and Python :
122- pip3 install techscript
114+ # Using Homebrew:
115+ brew install tcode-motion/techscript/ techscript
123116
124117# OR use the one-line installer:
125- curl -fsSL https://raw.githubusercontent.com/Tcode-Moti/TechScript /main/scripts/install.sh | bash
118+ curl -fsSL https://raw.githubusercontent.com/Tcode-Motion/techscript /main/scripts/install.sh | bash
126119```
127120
128121---
129122
130123## 📱 Install on Android (Termux)
131124
125+ Using the built-in PKG manager:
132126``` bash
133- pkg install python
134- pip install techscript
127+ pkg install techscript
135128tech version
136129```
137130
@@ -425,24 +418,17 @@ After installing, all your `.txs` files will have the dragon icon and coloured s
425418
426419---
427420
428- ## ✨ v1.0.1 Changelog — What's New vs v1.0.0
421+ ## ✨ v1.0.2 Changelog
429422
430- | Feature | v1.0.0 | v1.0.1 |
423+ | Feature | v1.0.1 | v1.0.2 |
431424| ---| ---| ---|
432- | Basic scripting (say, make, loops) | ✅ | ✅ |
433- | Functions, classes, error handling | ✅ | ✅ |
434- | 80+ built-in functions | ✅ | ✅ |
435- | VS Code extension (syntax + icons) | ✅ | ✅ Updated to v1.0.2 |
436- | ` use web ` — Build websites | ❌ | ✅ ** NEW** |
437- | No HTML/CSS/JS needed | ❌ | ✅ ** NEW** |
438- | Browser opens automatically | ❌ | ✅ ** NEW** |
439- | Auto port selection (no conflicts) | ❌ | ✅ ** NEW** |
440- | Windows one-click Setup.exe | ❌ | ✅ ** NEW** |
441- | Mac/Linux one-line install script | ❌ | ✅ ** NEW** |
442- | Auto PATH setup | ❌ | ✅ ** NEW** |
443- | Reactive counter demo | ❌ | ✅ ** NEW** |
444- | Live API fetch example | ❌ | ✅ ** NEW** |
445- | Contact form example | ❌ | ✅ ** NEW** |
425+ | Runtime Engine | Python Interpreted | ✅ ** Native Rust VM** |
426+ | Execution Speed | Standard | ✅ ** Blazing Fast Bytecode** |
427+ | Try/Rescue Blocks | ❌ | ✅ ** NEW Stack Unwinding** |
428+ | Division by Zero Errors | Immediate Crash | ✅ ** Safely Trapped** |
429+ | VS Code extension | ✅ | ✅ Updated |
430+ | Windows Executable | ` tech.exe ` | ✅ ` techscriptv1.0.2.exe ` |
431+ | Native ` setup.exe ` Bundle | ❌ | ✅ ** NEW** |
446432
447433---
448434
@@ -460,12 +446,10 @@ After installing, all your `.txs` files will have the dragon icon and coloured s
460446
461447| Platform | Status | Install Method |
462448| ---| ---| ---|
463- | ** Windows 10/11** | ✅ Fully supported | ` TechScript-Setup.exe ` or pip |
464- | ** macOS** | ✅ Fully supported | ` install.sh ` or pip |
465- | ** Linux** (Ubuntu, Kali, Arch) | ✅ Fully supported | ` install.sh ` or pip |
466- | ** Android (Termux)** | ✅ Works | pip |
467-
468- ** Minimum requirement:** Python 3.10 or newer.
449+ | ** Windows 10/11** | ✅ Fully supported | ` setup.exe ` or ` pip ` |
450+ | ** macOS** | ✅ Fully supported | ` install.sh ` or ` brew ` |
451+ | ** Linux** (Ubuntu, Kali, Arch) | ✅ Fully supported | ` install.sh ` or ` apt ` |
452+ | ** Android (Termux)** | ✅ Works | ` pkg install techscript ` |
469453
470454---
471455
0 commit comments