Skip to content

Commit 3c20eaa

Browse files
chore: update vizops and metaplus
1 parent 42f1d54 commit 3c20eaa

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

build.zig.zon

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
.{
2-
.name = "phantom",
3-
.version = "0.1.0",
4-
.paths = .{"."},
5-
.dependencies = .{
6-
.vizops = .{
7-
.url = "https://github.com/MidstallSoftware/vizops/archive/626d6bbf78fe7d192d0dea77abb7d99d272f7039.tar.gz",
8-
.hash = "1220f1f74b130449d782e38792cbe5d6b519ff706dd4f260f8cb0ced10a1f03f8eab",
2+
.name = "phantom",
3+
.version = "0.1.0",
4+
.paths = .{"."},
5+
.dependencies = .{
6+
.vizops = .{
7+
.url = "https://github.com/MidstallSoftware/vizops/archive/cb7a23d02c3030056a59ff0cd856d95221e8da06.tar.gz",
8+
.hash = "1220813b3d22d110b409ec8619fc1da2bc2ba2e71eb37b6a921ad228b485135793be",
9+
},
10+
.metaplus = .{
11+
.url = "https://github.com/MidstallSoftware/meta-plus/archive/9f8c3828e3c4445b80185dd24eeb61d0386b23dc.tar.gz",
12+
.hash = "122057d6a6bd7ba8b95fe67d91f584c4c0140ca26e8bea09b92f63b649dff470bf56",
13+
},
14+
.@"any+" = .{
15+
.url = "https://github.com/MidstallSoftware/any-plus/archive/15e70210f0525fa619bfed533c1205ff57ac2100.tar.gz",
16+
.hash = "12209b041a839e89ece510c07dbe62ad53b045ff0e6c44645cd1a3ea38f3b42905b9",
17+
},
918
},
10-
.metaplus = .{
11-
.url = "https://github.com/MidstallSoftware/meta-plus/archive/7a99d69a1d965e9598d9602ba4488babab50a6bf.tar.gz",
12-
.hash = "122050a89efcff9674d40e4ba9f3bde81716cd982082a4725de3524318e2d9d69837",
13-
},
14-
.@"any+" = .{
15-
.url = "https://github.com/MidstallSoftware/any-plus/archive/15e70210f0525fa619bfed533c1205ff57ac2100.tar.gz",
16-
.hash = "12209b041a839e89ece510c07dbe62ad53b045ff0e6c44645cd1a3ea38f3b42905b9",
17-
},
18-
},
1919
}

src/phantom/scene/nodes/text.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ pub fn NodeText(comptime Impl: type) type {
169169
var output = std.ArrayList(u8).init(self.node.allocator);
170170
errdefer output.deinit();
171171

172-
try output.writer().print("{{ .font = {}, .text = \"{s}\" }}", .{ self.options.font, self.options.view.bytes });
172+
try output.writer().print("{{ .font = {}, .text = \"{s}\" }}", .{ self.options.font, std.unicode.fmtUtf8(self.options.view.bytes) });
173173
return output;
174174
}
175175
};

0 commit comments

Comments
 (0)