Skip to content

Commit 97353da

Browse files
committed
ZBR v1.5.6
1 parent 516f61a commit 97353da

11 files changed

Lines changed: 15 additions & 16 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to the ZBR project are documented here and in the [changelog](https://zbrlang.vercel.app/docs/changelog) website.
44

5+
## v1.5.6 - Android OS Metadata Support
6+
7+
### Core
8+
- **OS Metadata**: Updated `packages/zbr-linux-arm64/package.json` to explicitly include `android` in the `os` field, ensuring better compatibility and installation support for Android devices via Termux.
9+
510
## v1.5.5 - Binary Permissions Fix
611

712
### Core

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zbr"
3-
version = "1.5.5"
3+
version = "1.5.6"
44
edition = "2021"
55

66
[dependencies]

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ Head over to the [ZBR Webapp](https://zbr-webapp.vercel.app) for a zero-setup de
2121
npm i -g @zbrlang/zbr
2222
```
2323

24-
> Some devices need an extra step if the CLI doesn't work after install, run:
25-
> ```bash
26-
> npm config set ignore-scripts false
27-
> ```
28-
> and than reinstall ZBR using the first command.
29-
3024
2. **Initialize a new project:**
3125
```bash
3226
zbr init my-bot

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zbrlang/zbr",
3-
"version": "1.5.5",
3+
"version": "1.5.6",
44
"description": "ZBR CLI, A simple and powerful Discord bot scripting engine.",
55
"bin": {
66
"zbr": "./bin/cli.js"

packages/zbr-darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zbrlang/zbr-darwin-arm64",
3-
"version": "1.5.5",
3+
"version": "1.5.6",
44
"os": ["darwin"],
55
"cpu": ["arm64"],
66
"files": ["zbr-darwin-arm64"]

packages/zbr-darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zbrlang/zbr-darwin-x64",
3-
"version": "1.5.5",
3+
"version": "1.5.6",
44
"os": ["darwin"],
55
"cpu": ["x64"],
66
"files": ["zbr-darwin-x64"]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@zbrlang/zbr-linux-arm64",
3-
"version": "1.5.5",
4-
"os": ["linux"],
3+
"version": "1.5.6",
4+
"os": ["linux", "android"],
55
"cpu": ["arm64"],
66
"files": ["zbr-linux-arm64"]
77
}

packages/zbr-linux-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zbrlang/zbr-linux-x64",
3-
"version": "1.5.5",
3+
"version": "1.5.6",
44
"os": ["linux"],
55
"cpu": ["x64"],
66
"files": ["zbr-linux-x64"]

packages/zbr-windows-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zbrlang/zbr-windows-arm64",
3-
"version": "1.5.5",
3+
"version": "1.5.6",
44
"os": ["win32"],
55
"cpu": ["arm64"],
66
"files": ["zbr-windows-arm64.exe"]

0 commit comments

Comments
 (0)