Skip to content

Commit dde4f1d

Browse files
committed
Release 1.7
1 parent 68541b6 commit dde4f1d

7 files changed

Lines changed: 13 additions & 16 deletions

File tree

Compiler/src/Compiler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import * as fs from "fs";
99

1010
export class Compiler
1111
{
12+
static version = "1.7";
13+
1214
classCompiler = new ClassCompiler();
1315

1416
modules: CompiledModule[] = [];
@@ -21,8 +23,6 @@ export class Compiler
2123
minimizeStartClassName: string = '';
2224
minimizedMethodCount = 0;
2325

24-
static version = "1.6.1";
25-
2626
start()
2727
{
2828
let args: string[] = process.argv.slice( 2 );

Examples/Electron/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ set -e
66
# Set working directory to script directory
77
cd "$(dirname "$0")"
88

9-
echo "Installing NPM packages for: Example Electron"
9+
echo "==== Installing NPM packages for: Example Electron"
1010
npm install

Examples/NWjs/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ set -e
66
# Set working directory to script directory
77
cd "$(dirname "$0")"
88

9-
echo "Installing NPM packages for: Example NWjs"
9+
echo "==== Installing NPM packages for: Example NWjs"
1010
npm install

Examples/NWjs/src/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// Invoke the start method on a new MyNwApp ST object.
22

3-
43
function startApp()
54
{
65
let moduleName: string = "./MyNwApp.js";

Examples/NodeGui/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ then
1515
exit 0;
1616
fi
1717

18-
echo "Installing NPM packages for: Example NodeGui"
18+
echo "==== Installing NPM packages for: Example NodeGui"
1919
npm install

Examples/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e
88
cd "$(dirname "$0")"
99

1010
./AI/Server/install.sh
11-
./Shop/Server/install.sh
1211
./Electron/install.sh
13-
./NWjs/install.sh
1412
./NodeGui/install.sh
13+
./NWjs/install.sh
14+
./Shop/Server/install.sh

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,16 @@
77
<a href="https://small-js.org" style="font-weight: bold;">small-js.org</a>
88
</p>
99

10-
## News - 25-MAY-2025
10+
## News - 18-AUG-2025
1111

12-
SmallJS v1.6.1 was released with:
13-
- Support for 5 AIs, now including Ollama that can run locally.
14-
- A client / server example chat app that now remembers the conversation context.
15-
- Other improvements on the examples, compiler and build system.
12+
SmallJS v1.7 was released with:
13+
NW.js support: A new framework that lets you develop multi-platform desktop apps with ease!.<br>
14+
The GUI of these apps is made with familiar HTML and CSS.<br>
15+
They take up less memory than Electron and are less complex to develop.<br>
1616

1717
More info here: https://small-js.org/News
1818

19-
Note: In release 1.6, sources where moved around a bit, so it's best to start from a fresh clone.
20-
21-
Have fun!
19+
Enjoy!
2220

2321
## Introducing SmallJS
2422

0 commit comments

Comments
 (0)