Skip to content

Commit dedb949

Browse files
committed
release for zig 0.11.0 official
1 parent 6da6767 commit dedb949

File tree

7 files changed

+131
-107
lines changed

7 files changed

+131
-107
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
.DS_Store
12
zig-cache
23
zig-out

README.md

+29-6
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,19 @@ http://zig-zag-zoe.com
66

77
.. (running on a t4g-nano instance on AWS - Linux ARM64, with 512MB memory )
88

9-
** Uses Zig Master 0.11-dev **
9+
** Uses Latest Zig 0.11.0 official release **
10+
1011

1112
![screenshot](https://github.com/zigster64/zig-zag-zoe/blob/main/src/images/zzz-screenshot.jpg)
1213

1314
# Install
1415

16+
Get the latest Zig 0.11.0 release installed :
17+
18+
https://ziglang.org/download/
19+
20+
21+
1522
```
1623
git clone https://github.com/zigster64/zig-zag-zoe.git
1724
cd zig-zag-zoe
@@ -41,13 +48,29 @@ https://github.com/zigster64/zig-zag-zoe/wiki/Zig-Zag-Zoe-%E2%80%90-Zero-Wing-Ed
4148

4249
## Bugs
4350

44-
There is a bug where sometimes in normal mode ... usually after the previous player had bomb mode ... then clicking on a square
45-
seems to zap 1 other adjacent square. Maybe. Cant reproduce it yet.
51+
There are a few lingering bugs that I havent got around to fixing yet.
52+
53+
Audio support on iOS + Safari is a lost cause - can fix it, but it requires a lot of JS code, and I figure that is outside the
54+
scope of a nice clean Zig application that Im trying to build here.
55+
56+
There may also be a persistent bug where the CPU suddenly spikes to 100% and stays there - at least it does on AWS, but only
57+
after 2-3 days running. Dont know if its fixed yet, but still looking into that.
58+
59+
Would appreciate any feedback on how to debug that in a running docker container on AWS :)
60+
61+
Also appreciate any other thrashing / trying to break the application, as it all helps make the Zig http ecosystem much
62+
more robust. Thanks.
63+
64+
## Contributions
65+
66+
Yep, thats cool. Just go through the regular channels
67+
68+
- raise an issue
69+
- post a PR
4670

47-
I will either fix this bug, or leave it in there as a feature - rationale is that there might be some bomb residue laying around
48-
after someone set us up the bomb.
71+
If you have questions or RFCs - you can either post them as an issue here, or discuss on Zig discord.
4972

50-
Havent seen it happen lately, but then I havent changed anything to fix it either .... so who knows ?
73+
Dont be too sad if it takes > 48hr for me to respond though ... will do my best.
5174

5275
## More Modes and Gameplay ideas
5376

build.zig.zon

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
.dependencies = .{
66
.http = .{
7-
.url = "https://github.com/zigster64/http.zig/archive/refs/heads/broken-pipe.tar.gz",
8-
.hash = "12203f136f892bdb1f1c30b0525848fb63ea5877179099c677a73c441e3303d8bcb1",
7+
.url = "https://github.com/zigster64/http.zig/archive/refs/heads/master.tar.gz",
8+
.hash = "1220324588dbc8e814848ce497b559cfc264dd502fbf5d0100ce1b9df9db21dea539",
99
},
1010
},
1111
}

0 commit comments

Comments
 (0)