Compare commits

..

No commits in common. "3d52c0d21ba4a94c2a442bce045db054ee45b2d5" and "0ffea55fa0b18e591f1ac17a1e4436f2f3ec1bd2" have entirely different histories.

2 changed files with 9 additions and 4 deletions

View File

@ -16,13 +16,18 @@
<!-- Github Release --> <!-- Github Release -->
<a href="https://github.com/blueloveth/pocketpy/releases"> <a href="https://github.com/blueloveth/pocketpy/releases">
<img alt="GitHub release" src="https://img.shields.io/github/release/blueloveth/pocketpy.svg"></a> <img alt="GitHub release" src="https://img.shields.io/github/release/blueloveth/pocketpy.svg"></a>
<!-- docs -->
<a href="https://pocketpy.dev">
<img alt="Website" src="https://img.shields.io/website/https/pocketpy.dev.svg?down_color=red&down_message=offline&up_color=blue&up_message=online"></a>
<!-- Discord --> <!-- Discord -->
<a title="Discord" href="https://discord.gg/WWaq72GzXv" > <a title="Discord" href="https://discord.gg/WWaq72GzXv" >
<img src="https://img.shields.io/discord/1048978026131640390.svg" /></a> <img src="https://img.shields.io/discord/1048978026131640390.svg" /></a>
<!-- HelloGithub -->
<a href="https://hellogithub.com/repository/dd9c509d72a64caca03d99d5b1991a33" target="_blank"><img src="https://abroad.hellogithub.com/v1/widgets/recommend.svg?rid=dd9c509d72a64caca03d99d5b1991a33&claim_uid=jhOYmWGE75AL0Bp&theme=small" alt="FeaturedHelloGitHub" /></a>
</p> </p>
---
## This branch is in beta stage. Old implementation was moved to v1.x branch.
---
pkpy is a lightweight(~15K LOC) Python 3.x interpreter for game scripting, written in C11. pkpy is a lightweight(~15K LOC) Python 3.x interpreter for game scripting, written in C11.
It aims to be an alternative to lua for game scripting, with elegant syntax, powerful features and competitive performance. It aims to be an alternative to lua for game scripting, with elegant syntax, powerful features and competitive performance.

View File

@ -1,10 +1,10 @@
#pragma once #pragma once
// clang-format off // clang-format off
#define PK_VERSION "2.0.1" #define PK_VERSION "2.0.0"
#define PK_VERSION_MAJOR 2 #define PK_VERSION_MAJOR 2
#define PK_VERSION_MINOR 0 #define PK_VERSION_MINOR 0
#define PK_VERSION_PATCH 1 #define PK_VERSION_PATCH 0
/*************** feature settings ***************/ /*************** feature settings ***************/