mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-22 04:20:17 +00:00
up
Update CHANGELOG.md
This commit is contained in:
parent
943b0bf7db
commit
8d16b1b4f2
@ -1,4 +1,4 @@
|
|||||||
## 0.8.0+1
|
## 0.8.0+2
|
||||||
|
|
||||||
+ add complete reflection (exec/eval/getattr/setattr/hasattr)
|
+ add complete reflection (exec/eval/getattr/setattr/hasattr)
|
||||||
+ fix a bug of raw string
|
+ fix a bug of raw string
|
||||||
|
@ -4,5 +4,6 @@ class PyOutput {
|
|||||||
PyOutput(this.stdout, this.stderr);
|
PyOutput(this.stdout, this.stderr);
|
||||||
|
|
||||||
PyOutput.fromJson(Map<String, dynamic> json)
|
PyOutput.fromJson(Map<String, dynamic> json)
|
||||||
: stdout = json['stdout'], stderr = json['stderr'];
|
: stdout = json['stdout'],
|
||||||
|
stderr = json['stderr'];
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
library pocketpy;
|
library pocketpy;
|
||||||
|
|
||||||
export 'common.dart';
|
export 'common.dart';
|
||||||
export 'no_web.dart' if (dart.library.html) 'web.dart';
|
export 'no_web.dart' if (dart.library.html) 'web.dart';
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: pocketpy
|
name: pocketpy
|
||||||
description: A lightweight Python interpreter for game engines.
|
description: A lightweight Python interpreter for game engines. It supports Android/iOS/Web.
|
||||||
version: 0.8.0+1
|
version: 0.8.0+2
|
||||||
homepage: https://pocketpy.dev
|
homepage: https://pocketpy.dev
|
||||||
repository: https://github.com/blueloveth/pocketpy
|
repository: https://github.com/blueloveth/pocketpy
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user