Compare commits

...

3 Commits

Author SHA1 Message Date
blueloveTH
3d52c0d21b remove website link 2024-10-30 14:59:07 +08:00
blueloveTH
2e4dde2a7a update version code 2024-10-30 14:57:57 +08:00
blueloveTH
ff664724c0 Update README.md 2024-10-30 14:57:16 +08:00
2 changed files with 4 additions and 9 deletions

View File

@ -16,18 +16,13 @@
<!-- 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.0" #define PK_VERSION "2.0.1"
#define PK_VERSION_MAJOR 2 #define PK_VERSION_MAJOR 2
#define PK_VERSION_MINOR 0 #define PK_VERSION_MINOR 0
#define PK_VERSION_PATCH 0 #define PK_VERSION_PATCH 1
/*************** feature settings ***************/ /*************** feature settings ***************/