Skip to content

Commit b750638

Browse files
author
Tanmoy
committed
Official Release v1.0.4.7 - Sanitized Universal Support Edition
1 parent ad82cd7 commit b750638

11 files changed

Lines changed: 68 additions & 17 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
<div align="center">
2020

21-
![version](https://img.shields.io/badge/version-v1.0.4.5-7c3aed?style=for-the-badge)
21+
![version](https://img.shields.io/badge/version-v1.0.4.6-7c3aed?style=for-the-badge)
2222
![runtime](https://img.shields.io/badge/runtime-Native_Rust_VM-f97316?style=for-the-badge&logo=rust&logoColor=white)
2323
![platform](https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux%20%7C%20Android-22c55e?style=for-the-badge)
2424
![license](https://img.shields.io/badge/license-MIT-3b82f6?style=for-the-badge)
@@ -115,19 +115,19 @@ TechScript is:
115115

116116
#### Option 1: One-Click Installer *(Recommended for Beginners)*
117117

118-
1. Go to the [📥 v1.0.4.5 Release Page](https://github.com/Tcode-Motion/techscript/releases/tag/v1.0.4.5)
119-
2. Download **[TechScript_v1.0.4.5_Setup.exe](https://github.com/Tcode-Motion/techscript/releases/download/v1.0.4.5/TechScript_v1.0.4.5_Setup.exe)**
118+
1. Go to the [📥 v1.0.4.6 Release Page](https://github.com/Tcode-Motion/techscript/releases/tag/v1.0.4.6)
119+
2. Download **[TechScript_v1.0.4.6_Setup.exe](https://github.com/Tcode-Motion/techscript/releases/download/v1.0.4.6/TechScript_v1.0.4.6_Setup.exe)**
120120
3. Double-click it — it will install everything automatically!
121121
4. Open **PowerShell** (`Win + X` → "Windows PowerShell") and type:
122122

123123
```
124124
tech version
125125
```
126126

127-
You should see: `TechScript v1.0.4.5` 🎉
127+
You should see: `TechScript v1.0.4.6` 🎉
128128

129129
**What the installer does automatically:**
130-
- ✅ Puts `tech.exe` (v1.0.4.5) on your computer
130+
- ✅ Puts `tech.exe` (v1.0.4.6) on your computer
131131
- ✅ Makes the `tech` command available everywhere in your terminal
132132
- ✅ Registers `.txs` files so they know they belong to TechScript
133133
- ✅ Installs the VS Code extension for syntax highlighting

build/lib/techscript/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""TechScript — A simple, friendly programming language."""
2-
__version__ = "1.0.1"
2+
__version__ = "1.0.4.7"

build/lib/techscript_wrapper/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import urllib.request
55
import subprocess
66

7-
VERSION = "1.0.4.5"
7+
VERSION = "1.0.4.7"
88
REPO = "Tcode-Motion/techscript"
99

1010
def download_binary():
-70.4 KB
Binary file not shown.
63.9 KB
Binary file not shown.
70.4 KB
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="techscript-lang",
8-
version="1.0.4.5",
8+
version="1.0.4.7",
99
author="Tanmoy",
1010
author_email="tanmoy@example.com",
1111
description="TechScript — A simple, friendly programming language (.txs)",

techscript/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""TechScript — A simple, friendly programming language."""
2-
__version__ = "1.0.4.5"
2+
__version__ = "1.0.4.7"
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
MANIFEST.in
2+
README.md
3+
setup.py
4+
docs/QUICKSTART.md
5+
docs/REFERENCE.md
6+
docs/STDLIB_REFERENCE.md
7+
docs/TERMUX.md
8+
docs/WEB_MODULE.md
9+
techscript/__init__.py
10+
techscript/__main__.py
11+
techscript/ast_nodes.py
12+
techscript/builtins.py
13+
techscript/cli.py
14+
techscript/environment.py
15+
techscript/errors.py
16+
techscript/interpreter.py
17+
techscript/lexer.py
18+
techscript/parser.py
19+
techscript/repl.py
20+
techscript/tokens.py
21+
techscript/transpiler.py
22+
techscript/web.py
23+
techscript_lang.egg-info/PKG-INFO
24+
techscript_lang.egg-info/SOURCES.txt
25+
techscript_lang.egg-info/dependency_links.txt
26+
techscript_lang.egg-info/entry_points.txt
27+
techscript_lang.egg-info/top_level.txt
28+
techscript_wrapper/__init__.py
29+
techscript_wrapper/__main__.py
30+
techscript_wrapper/examples/07_performance_test.txs
31+
techscript_wrapper/examples/08_math_module.txs
32+
techscript_wrapper/examples/09_string_ops.txs
33+
techscript_wrapper/examples/10_json_module.txs
34+
techscript_wrapper/examples/11_crypto_module.txs
35+
techscript_wrapper/examples/12_date_module.txs
36+
techscript_wrapper/examples/13_fs_module.txs
37+
techscript_wrapper/examples/14_os_module.txs
38+
techscript_wrapper/examples/15_random_module.txs
39+
techscript_wrapper/examples/16_control_flow_fix.txs
40+
techscript_wrapper/examples/17_inline_eval.txs
41+
techscript_wrapper/examples/animation_studio.txs
42+
techscript_wrapper/examples/calc.txs
43+
techscript_wrapper/examples/calculator.txs
44+
techscript_wrapper/examples/classes.txs
45+
techscript_wrapper/examples/fibonacci.txs
46+
techscript_wrapper/examples/fizzbuzz.txs
47+
techscript_wrapper/examples/guessing_game.txs
48+
techscript_wrapper/examples/hello.txs
49+
techscript_wrapper/examples/web_app.txs
50+
techscript_wrapper/examples/web_app_simple.txs
51+
techscript_wrapper/examples/web_complete.txs

techscript_lang.egg-info/PKG-INFO

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.4
22
Name: techscript-lang
3-
Version: 1.0.4.5
3+
Version: 1.0.4.7
44
Summary: TechScript — A simple, friendly programming language (.txs)
55
Home-page: https://github.com/Tcode-Motion/techscript
66
Author: Tanmoy
@@ -39,7 +39,7 @@ Dynamic: summary
3939

4040
<div align="center">
4141

42-
![version](https://img.shields.io/badge/version-v1.0.4.4-7c3aed?style=for-the-badge)
42+
![version](https://img.shields.io/badge/version-v1.0.4.6-7c3aed?style=for-the-badge)
4343
![runtime](https://img.shields.io/badge/runtime-Native_Rust_VM-f97316?style=for-the-badge&logo=rust&logoColor=white)
4444
![platform](https://img.shields.io/badge/platform-Windows%20%7C%20macOS%20%7C%20Linux%20%7C%20Android-22c55e?style=for-the-badge)
4545
![license](https://img.shields.io/badge/license-MIT-3b82f6?style=for-the-badge)
@@ -51,7 +51,7 @@ Dynamic: summary
5151
![deps](https://img.shields.io/badge/dependencies-NONE-00ff88?style=for-the-badge)
5252
![stdlib](https://img.shields.io/badge/stdlib-180%2B_functions-7c3aed?style=for-the-badge)
5353
![vscode](https://img.shields.io/badge/VS_Code-Extension_v1.0.3-007ACC?style=for-the-badge&logo=visualstudiocode&logoColor=white)
54-
[![Author](https://img.shields.io/badge/Made_by-Tcode--Motion-181717?style=for-the-badge&logo=github)](https://github.com/Tcode-Motion)
54+
[![Author](https://img.shields.io/badge/Made_by-Tcode--Motion-181717?style=for-the-badge&logo=github)](https://github.com/Tcode-Motion/techscript)
5555
[![Stars](https://img.shields.io/github/stars/Tcode-Motion/techscript?style=for-the-badge&color=yellow&label=⭐)](https://github.com/Tcode-Motion/techscript/stargazers)
5656

5757
</div>
@@ -136,19 +136,19 @@ TechScript is:
136136

137137
#### Option 1: One-Click Installer *(Recommended for Beginners)*
138138

139-
1. Go to the [📥 v1.0.4.4 Release Page](https://github.com/Tcode-Motion/techscript/releases/tag/v1.0.4.4)
140-
2. Download **[TechScript_v1.0.4.4_Setup.exe](https://github.com/Tcode-Motion/techscript/releases/download/v1.0.4.4/TechScript_v1.0.4.4_Setup.exe)**
139+
1. Go to the [📥 v1.0.4.6 Release Page](https://github.com/Tcode-Motion/techscript/releases/tag/v1.0.4.6)
140+
2. Download **[TechScript_v1.0.4.6_Setup.exe](https://github.com/Tcode-Motion/techscript/releases/download/v1.0.4.6/TechScript_v1.0.4.6_Setup.exe)**
141141
3. Double-click it — it will install everything automatically!
142142
4. Open **PowerShell** (`Win + X` → "Windows PowerShell") and type:
143143

144144
```
145145
tech version
146146
```
147147

148-
You should see: `TechScript v1.0.4.4` 🎉
148+
You should see: `TechScript v1.0.4.6` 🎉
149149

150150
**What the installer does automatically:**
151-
- ✅ Puts `tech.exe` (v1.0.4.4) on your computer
151+
- ✅ Puts `tech.exe` (v1.0.4.6) on your computer
152152
- ✅ Makes the `tech` command available everywhere in your terminal
153153
- ✅ Registers `.txs` files so they know they belong to TechScript
154154
- ✅ Installs the VS Code extension for syntax highlighting

0 commit comments

Comments
 (0)