From aae6ab3afa8b9ff6ec9055209e6356004462b41f Mon Sep 17 00:00:00 2001 From: Emi Date: Tue, 25 Feb 2025 22:35:05 -0700 Subject: [PATCH] cleanup Signed-off-by: Emi --- .github/FUNDING.yml | 2 +- .github/ISSUE_TEMPLATE/dev_release.md | 2 +- .github/ISSUE_TEMPLATE/dev_zig_nomination.md | 4 ++-- src/Core.zig | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 99fd1066..f553e985 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1 @@ -github: slimsag +github: emidoots diff --git a/.github/ISSUE_TEMPLATE/dev_release.md b/.github/ISSUE_TEMPLATE/dev_release.md index 2360546f..ed5e4461 100644 --- a/.github/ISSUE_TEMPLATE/dev_release.md +++ b/.github/ISSUE_TEMPLATE/dev_release.md @@ -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' --- diff --git a/.github/ISSUE_TEMPLATE/dev_zig_nomination.md b/.github/ISSUE_TEMPLATE/dev_zig_nomination.md index 3a4c6f02..dac8c6f7 100644 --- a/.github/ISSUE_TEMPLATE/dev_zig_nomination.md +++ b/.github/ISSUE_TEMPLATE/dev_zig_nomination.md @@ -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. :) diff --git a/src/Core.zig b/src/Core.zig index 6c87365f..b361c407 100644 --- a/src/Core.zig +++ b/src/Core.zig @@ -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.