stella-coder 5.3.0 → 5.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stella-coder",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
4
4
  "private": false,
5
5
  "description": "Stella Coder 5.0 — AI coding agent with Telegram bot, huge context, TDD, Git ecosystem, presentations, computer control, smart home, Office automation, and antivirus",
6
6
  "main": "stella-cli/index.mjs",
@@ -319,7 +319,7 @@ function render(){
319
319
  initGame();
320
320
  </script></body></html>`
321
321
 
322
- const 2048_GAME = `
322
+ const GAME_2048 = `
323
323
  <!DOCTYPE html><html><head><meta charset="UTF-8"><title>2048</title>
324
324
  <style>
325
325
  *{margin:0;padding:0;box-sizing:border-box}
@@ -651,7 +651,7 @@ export class GameEngine {
651
651
  }
652
652
 
653
653
  async play2048() {
654
- return saveAndOpen(2048_GAME, "2048")
654
+ return saveAndOpen(GAME_2048, "2048")
655
655
  }
656
656
 
657
657
  async playFlappyBird() {