site/blog: roadmap update + are-we-there-yet post#2694
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR adds a new roadmap-focused blog post, links it from the site news feed, and makes the blog build status output Windows-console friendly.
Changes:
- Adds the “Are we there yet?” roadmap blog post.
- Adds a news entry linking to the new blog post.
- Replaces a Unicode arrow in
build_blog.pyoutput with ASCII->.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
site/blog/build_blog.py |
Updates final build status print text to avoid an unencodable arrow. |
site/blog/_posts/are-we-there-yet.md |
Adds the new roadmap blog post content and metadata. |
site/_news/2026-05-16-roadmap-update-are-we-there-yet.md |
Adds the landing/news-feed entry for the post. |
Comments suppressed due to low confidence (1)
site/blog/_posts/are-we-there-yet.md:55
- This sentence has two grammatical omissions that make the roadmap note harder to read as public copy.
I gonna get few more things hooked up along the way, but Vulkan is for sure. We have DAS->GLSL macro, and we have LLVM. I just don't know when. There are basic bindings already.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| <!-- more --> | ||
|
|
||
| Like a good little shaman I've been praying the technical debt away. Prompts are new incantations. Prompts are new prayers. Mine been about quality gates, tests, tools, cleanup, refactor, tools, documentation, tutorials, integration, better syntax, and tools. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
New blog post + a one-liner news entry pointing at it from § 05 on the landing.
site/blog/_posts/are-we-there-yet.md— the post itself ("Are we there yet?" — roadmap notes on 0.6.3 / 0.6.4 / 0.7).site/_news/2026-05-16-roadmap-update-are-we-there-yet.md— news row,tag: blog, root-relativelink: /blog/are-we-there-yet.html(resolves on bothdaslang.ioand localpython -m http.serverpreviews).site/blog/build_blog.py— tangential one-char fix:→in the final print line is uncodable on Windows cp1252 console, so the build prints fine and then exits 1 on Windows-local runs. Replaced with->. Drop the commit if you'd rather keep this PR pure content.Verified locally with
python site/blog/build_blog.py --posts site/blog/_posts --news site/_news --template site/blog/template.html --site-url https://daslang.io --out site/+python -m http.server— landing § 05 picks up the new row, post renders, changelist links resolve.