Skip to content

Commit aa56836

Browse files
committed
SmallJS: Release 1.8 !
Node: Some documentation updates. Examples: AI: Updated Google AI preferred models.
1 parent 2f01cea commit aa56836

3 files changed

Lines changed: 21 additions & 3 deletions

File tree

Compiler/src/Compiler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import * as fs from "fs";
99

1010
export class Compiler
1111
{
12-
static version = "1.7";
12+
static version = "1.8";
1313

1414
classCompiler = new ClassCompiler();
1515

Examples/AI/Server/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DEEPSEEK_API_KEY="<put your secret API key here>"
3232
# Google AI / Gemini
3333
# Look here for current models: https://deepmind.google/models/
3434
GOOGLEAI_BASE_URL="https://generativelanguage.googleapis.com"
35-
GOOGLEAI_MODELS="gemini-2.0-flash-lite gemini-2.0-flash gemma-3"
35+
GOOGLEAI_MODELS="gemini-2.5-flash-lite gemini-2.5-flash gemini-2.5-pro"
3636
GOOGLEAI_API_KEY="<put your secret API key here>"
3737

3838
# Anthropic / Claude

Node/Node.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,25 @@ Now start the project run the project and see that unit tests are performed succ
1212
The file `src/App.ts` (compiled to `out/App.js`) does application startup.
1313
It dynamically loads the compiled ST class NodeApp from `out/NodeApp.js` and call its start method.
1414

15-
## Database support
15+
## Node support
16+
17+
Node support classes are in the folder: '/Smalltalk/Node'.
18+
19+
### File support
20+
21+
Filesystem support classes are in the subfolder: 'File'.
22+
23+
### OS support
24+
25+
OS specific support classes are in the subfolder: 'OS'.
26+
27+
### Process support
28+
29+
Process support classes are in the subfolder: 'Process'.
30+
31+
### Database support
32+
33+
Process support classes are in the subfolder: 'Database'.
1634

1735
These databases are supported: Postgres, MariaDB and MySQL.
1836
To set them up look here: [../Database/Database.md](../Database/Database.md)

0 commit comments

Comments
 (0)