pull/131/head
Ben Hansen 4 years ago
parent 12569be5de
commit 8608460977

4
.gitignore vendored

@ -7,4 +7,6 @@ target/
output/
/trace
trace.zip
trace.zip
secrets.txt

@ -0,0 +1,15 @@
language: node_js
node_js:
- lts/*
install:
- npm ci # yarn install
script:
- npm run docs:build # yarn docs:build
deploy:
provider: pages
skip_cleanup: true
local_dir: docs/.vuepress/dist
github_token: $GITHUB_TOKEN # A token generated on GitHub allowing Travis to push code on you repository. Set in the Travis settings page of your repository, as a secure variable
keep_history: true
on:
branch: master

@ -6,17 +6,17 @@ School is starting to ramp up, so I haven't had as much time to work on the site
* The tutorial now handles `SwapChainError` properly
* I'm now using bytemuck's derive feature on all buffer data structs.
* The [instancing tutorial](/beginner/tutorial7-instancing) now uses vertex buffers instead of storage buffers.
* The [instancing tutorial](../beginner/tutorial7-instancing) now uses vertex buffers instead of storage buffers.
* `build.rs` now updates when individual shaders are changed, not whenever `/src` is changed.
* Had some help from Github user @kanerogers to clean up the [texturing tutorial](/beginner/tutorial5-textures).
* I made a [compute pipeline showcase](/showcase/compute) that computes the tangent and bitangent for each vertex in a model.
* I made a [imgui showcase](/showcase/imgui-demo). It's very basic, but it should be a good starting point.
* Had some help from Github user @kanerogers to clean up the [texturing tutorial](../beginner/tutorial5-textures).
* I made a [compute pipeline showcase](../showcase/compute) that computes the tangent and bitangent for each vertex in a model.
* I made a [imgui showcase](../showcase/imgui-demo). It's very basic, but it should be a good starting point.
Now in the headline I mentioned a "Content Freeze". Wgpu is still a moving target. The migration from `0.4` to `0.5` was lot of work. The same goes for `0.5` to `0.6`. I'm expected the next migration to be just as much work. As such, I won't be added much content until the API becomes a bit more stable. That being said, I still plan on resolving any issues with the content.
One more thing. This is actually quite awkward for me (especially since I'll be slowing down development), but I've started a [patreon](https://www.patreon.com/sotrh). My job doesn't give me a ton of hours, so things are a bit tight. You are by no means obligated to donate, but I would appreciate it.
You can find out more about contributing to this project on the [introduction page](/#contribution-and-support)
You can find out more about contributing to this project on the [introduction page](../#contribution-and-support)
## 0.6
@ -24,7 +24,7 @@ This took me way too long. The changes weren't difficult, but I had to do a lot
## Added Pong Showcase
[See it here](/showcase/pong/)
[See it here](../showcase/pong/)
## Normal mapping

Loading…
Cancel
Save