Signed-off-by: Emi <emi@hexops.com>
This commit is contained in:
Emi 2025-02-25 22:35:05 -07:00
parent b14f8e69ee
commit aae6ab3afa
4 changed files with 6 additions and 6 deletions

2
.github/FUNDING.yml vendored
View file

@ -1 +1 @@
github: slimsag
github: emidoots

View file

@ -3,7 +3,7 @@ name: (dev) Release checklist
about: The checklist we follow to perform a Mach release
title: 'all: Mach 0.3 release checklist'
labels: all, zig-update
assignees: 'slimsag'
assignees: 'emidoots'
---

View file

@ -3,7 +3,7 @@ name: (dev) Zig version update
about: The process we follow to perform a Zig version update
title: 'all: nominate Zig YYYY.MM.0-mach'
labels: all, zig-update
assignees: 'slimsag'
assignees: 'emidoots'
---
@ -29,7 +29,7 @@ You may have been linked to this issue because you sent a pull request to update
* [ ] https://machengine.org/docs/zig-version has been updated
* [ ] In `machengine.org` repository `static/zig` folder, `wrench script nominate-zig-index-update finalize 2024.1.0-mach-wip` has been ran and the [`index.json`](https://machengine.org/zig/index.json) has had `-wip` removed and the `mach-latest` entry has been updated.
* [ ] The `**IN-PROGRESS**` warning in the _Nomination history_ has been removed.
* [ ] A [new issue](https://github.com/hexops/mach/issues/new?assignees=slimsag&labels=all%2C+zig-update&projects=&template=dev_zig_nomination.md&title=all%3A+nominate+Zig+YYYY.MM) has been filed for the next nomination.
* [ ] A [new issue](https://github.com/hexops/mach/issues/new?assignees=emidoots&labels=all%2C+zig-update&projects=&template=dev_zig_nomination.md&title=all%3A+nominate+Zig+YYYY.MM) has been filed for the next nomination.
* [ ] A #progress announcement has been made:
> We've just finalized nominating and updating to Zig 2024.1.0-mach. We encourage you to update your projects to that Zig version now. :)

View file

@ -215,7 +215,7 @@ pub fn initWindow(core: *Core, window_id: mach.ObjectID) !void {
}
pub fn tick(core: *Core, core_mod: mach.Mod(Core)) !void {
// TODO(core)(slimsag): consider execution order of mach.Core (e.g. creating a new window
// TODO(core)(emidoots): consider execution order of mach.Core (e.g. creating a new window
// during application execution, rendering to multiple windows, etc.) and how
// that relates to Platform.tick being responsible for both handling window updates
// (like title/size changes) and window creation, plus multi-threaded rendering.
@ -268,7 +268,7 @@ pub fn main(core: *Core, core_mod: mach.Mod(Core)) !void {
}
fn platform_update_callback(core: *Core, core_mod: mach.Mod(Core)) !bool {
// TODO(core)(slimsag): consider execution order of mach.Core (e.g. creating a new window
// TODO(core)(emidoots): consider execution order of mach.Core (e.g. creating a new window
// during application execution, rendering to multiple windows, etc.) and how
// that relates to Platform.tick being responsible for both handling window updates
// (like title/size changes) and window creation, plus multi-threaded rendering.