release v0.2.2

This commit is contained in:
2025-11-19 08:57:05 +08:00
parent 2b0aae7911
commit d4837f0e08
3 changed files with 3 additions and 3 deletions

View File

@@ -422,7 +422,7 @@ def main():
| | |_| \_, |\__,_|_| |_||_||_|\___/|_| |_|___/|_||_|\___/ \__| | |
| | |__/ | |
|__|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|__|
(____) v0.2.1+ (____)
(____) v0.2.2 (____)
For technology exchange only. Use at your own risk.
GitHub: https://github.com/Lil-House/Pyarmor-Static-Unpack-1shot

View File

@@ -348,7 +348,7 @@ PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod)
// If destination is a:
// LOAD_CONST '__pyarmor_exit_N__'
// Then change JUMP_FORWARD to RETURN_VALUE
const char* code_bytes = code->code()->value();
auto code_bytes = (const unsigned char*)code->code()->value();
for (int i = 0; i < 10; i += 2) {
if (pos + offs + i + 1 >= code->code()->length())
break;

View File

@@ -23,7 +23,7 @@
#include "ASTree.h"
const char* VERSION = "v0.2.1+";
const char* VERSION = "v0.2.2";
#ifdef _WIN32