pikastech 3 лет назад
Родитель
Сommit
4d3bcac816

+ 1 - 1
port/linux/version_config.py

@@ -1,3 +1,3 @@
 MajorVersion  =   "1"
 MinorVersion  =   "11"
-MicroVersion  =   "2"
+MicroVersion  =   "3"

+ 2 - 2
src/PikaObj.c

@@ -819,7 +819,7 @@ enum shell_state obj_runChar(PikaObj* self, char inputChar) {
     char* rxBuff = (char*)obj_getBytes(self, "__shbuf");
     char* input_line = NULL;
     int is_in_block = obj_getInt(self, "__shinb");
-#if !(defined(__linux) || defined(_WIN32))
+#ifndef __linux
     __platform_printf("%c", inputChar);
 #endif
     if ((inputChar == '\b') || (inputChar == 127)) {
@@ -837,7 +837,7 @@ enum shell_state obj_runChar(PikaObj* self, char inputChar) {
         return SHELL_STATE_CONTINUE;
     }
     if ((inputChar == '\r') || (inputChar == '\n')) {
-#if !(defined(__linux) || defined(_WIN32))
+#ifndef __linux
         __platform_printf("\r\n");
 #endif
         /* still in block */

+ 2 - 2
src/PikaVersion.h

@@ -1,5 +1,5 @@
 #define PIKA_VERSION_MAJOR       1
 #define PIKA_VERSION_MINOR       11
-#define PIKA_VERSION_MICRO       2
+#define PIKA_VERSION_MICRO       3
 
-#define PIKA_EDIT_TIME      "2022/10/02 16:29:46"
+#define PIKA_EDIT_TIME      "2022/10/04 17:53:56"

+ 1 - 0
test/python/issue/issue_dict_update.py

@@ -4,3 +4,4 @@ nodes = {"type": "div", "attributes": {"class": "container", "style": {"width":
 print(nodes)
 inner = nodes['nodes'][2]['nodes'][0]['widgetName']
 PikaStdLib.MemChecker().max()
+PikaStdLib.MemChecker().now()

BIN
tools/pikaCompiler/rust-msc-latest-win10.exe