浏览代码

up

Update CHANGELOG.md
blueloveTH 3 年之前
父节点
当前提交
8d16b1b4f2
共有 4 个文件被更改,包括 7 次插入5 次删除
  1. 1 1
      plugins/flutter/CHANGELOG.md
  2. 2 1
      plugins/flutter/lib/common.dart
  3. 2 1
      plugins/flutter/lib/pocketpy.dart
  4. 2 2
      plugins/flutter/pubspec.yaml

+ 1 - 1
plugins/flutter/CHANGELOG.md

@@ -1,4 +1,4 @@
-## 0.8.0+1
+## 0.8.0+2
 
 + add complete reflection (exec/eval/getattr/setattr/hasattr)
 + fix a bug of raw string

+ 2 - 1
plugins/flutter/lib/common.dart

@@ -4,5 +4,6 @@ class PyOutput {
   PyOutput(this.stdout, this.stderr);
 
   PyOutput.fromJson(Map<String, dynamic> json)
-    : stdout = json['stdout'], stderr = json['stderr'];
+      : stdout = json['stdout'],
+        stderr = json['stderr'];
 }

+ 2 - 1
plugins/flutter/lib/pocketpy.dart

@@ -1,3 +1,4 @@
 library pocketpy;
+
 export 'common.dart';
-export 'no_web.dart' if (dart.library.html) 'web.dart';
+export 'no_web.dart' if (dart.library.html) 'web.dart';

+ 2 - 2
plugins/flutter/pubspec.yaml

@@ -1,6 +1,6 @@
 name: pocketpy
-description: A lightweight Python interpreter for game engines.
-version: 0.8.0+1
+description: A lightweight Python interpreter for game engines. It supports Android/iOS/Web.
+version: 0.8.0+2
 homepage: https://pocketpy.dev
 repository: https://github.com/blueloveth/pocketpy