nanoshell 1.8.1 → 1.8.3

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # NanoShell ⚡ (`nanoshell@1.8.1`)
1
+ # NanoShell ⚡ (`nanoshell@1.8.2`)
2
2
 
3
3
  > **Created & Engineered by Suman Biswas** 👑
4
4
  > *Hyper-lightweight 17MB RAM, 120 FPS Native WebKit Desktop Application Framework & Runtime Engine*
@@ -38,7 +38,10 @@ npm run package
38
38
 
39
39
  ---
40
40
 
41
- ## 🆕 What's New in v1.8.1
41
+ ## 🆕 What's New in v1.8.2
42
+
43
+ ### ⚡ Silent Auto-Updates
44
+ - **Zero Confirmation Prompts**: Added `-y` flag to silent CLI auto-update checks so `npx` never pauses with `Ok to proceed? (y)`.
42
45
 
43
46
  ### 📦 Auto-Generated `package.json` for Scaffolded Apps
44
47
  - **Seamless `npm start` & `npm run package`**: Newly scaffolded projects automatically include a standard `package.json` preconfigured with `npm start`, `npm run build`, and `npm run package` scripts out of the box.
package/SKILL.md CHANGED
@@ -3,7 +3,7 @@ name: nanoshell-desktop-framework
3
3
  description: Build ultra-fast, 120 FPS, 17MB RAM native desktop applications using HTML, CSS, JS, and Zig with the NanoShell runtime engine (nanoshell) created by Suman Biswas. Includes Per-Monitor DPI V2 crisp scaling and Win32 direct windowing.
4
4
  ---
5
5
 
6
- # NanoShell Native Desktop Framework Skill Guide (`nanoshell@1.8.1`)
6
+ # NanoShell Native Desktop Framework Skill Guide (`nanoshell@1.8.2`)
7
7
 
8
8
  **Created & Engineered by Suman Biswas**
9
9
 
@@ -28,7 +28,7 @@ npm run package # Build binary and generate Windows Inno Setup i
28
28
 
29
29
  ---
30
30
 
31
- ## ⚡ v1.8.1 Engine Architecture & High-DPI Rules for AI Agents
31
+ ## ⚡ v1.8.2 Engine Architecture & High-DPI Rules for AI Agents
32
32
 
33
33
  1. **Pure Win32 Subsystem**: Runs on `.Windows` subsystem with zero background CMD console windows.
34
34
  2. **Per-Monitor DPI V2 Aware**: Integrates `DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2`. Window client sizes are automatically scaled physically (`physical_size = logical_size * dpi_scale`).
package/cli/index.js CHANGED
@@ -18,7 +18,7 @@ if (!process.env.NANOSHELL_NO_UPDATE_CHECK) {
18
18
 
19
19
  if (latestVersion && latestVersion !== pkg.version) {
20
20
  console.log(`\x1b[36m⚡ [NanoShell] Outdated npx cache detected (v${pkg.version}). Auto-updating to latest (v${latestVersion})...\x1b[0m\n`);
21
- const updateResult = spawnSync('npx', ['nanoshell@latest', ...process.argv.slice(2)], {
21
+ const updateResult = spawnSync('npx', ['-y', 'nanoshell@latest', ...process.argv.slice(2)], {
22
22
  stdio: 'inherit',
23
23
  shell: true,
24
24
  env: { ...process.env, NANOSHELL_NO_UPDATE_CHECK: '1' }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nanoshell",
3
- "version": "1.8.1",
3
+ "version": "1.8.3",
4
4
  "description": "Hyper-lightweight native desktop application framework. 17MB RAM, 120 FPS, pure Win32 DPI-aware windowing with WebKit rendering. No Electron. Created by Suman Biswas.",
5
5
  "main": "cli/index.js",
6
6
  "bin": {
Binary file