From 633a1294035a4049c2bacca0dfaa6b6cd797ff52 Mon Sep 17 00:00:00 2001 From: Kane Rogers Date: Mon, 30 Nov 2020 14:54:57 +1100 Subject: [PATCH 1/3] Run all tasks asynchronously This should run all the tasks at the same time. If there are any updates to be done, cargo *may* block, but beyond that everything else should work fine. Shebang also added for Multiplatform support. --- run-all.sh | 46 ++++++++++++++++++++++++---------------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/run-all.sh b/run-all.sh index 2b6b5fb8..411dee60 100755 --- a/run-all.sh +++ b/run-all.sh @@ -1,24 +1,26 @@ +#!/bin/bash # todo: figure out how to do this asynchronously -cargo run --bin tutorial1-window; -cargo run --bin tutorial2-swapchain; -cargo run --bin tutorial2-challenge; -cargo run --bin tutorial3-pipeline; -cargo run --bin tutorial3-challenge; -cargo run --bin tutorial4-buffer; -cargo run --bin tutorial4-challenge; -cargo run --bin tutorial5-textures; -cargo run --bin tutorial5-challenge; -cargo run --bin tutorial6-uniforms; -cargo run --bin tutorial6-challenge; -cargo run --bin tutorial7-instancing; -cargo run --bin tutorial7-challenge; -cargo run --bin tutorial8-depth; -cargo run --bin tutorial8-challenge; -cargo run --bin tutorial9-models; -cargo run --bin tutorial10-lighting; -cargo run --bin tutorial11-normals; -cargo run --bin tutorial12-camera; -cargo run --bin tutorial13-threading; -cargo run --bin windowless -cargo run --bin gifs \ No newline at end of file + +cargo run --bin tutorial1-window & +cargo run --bin tutorial2-swapchain & +cargo run --bin tutorial2-challenge & +cargo run --bin tutorial3-pipeline & +cargo run --bin tutorial3-challenge & +cargo run --bin tutorial4-buffer & +cargo run --bin tutorial4-challenge & +cargo run --bin tutorial5-textures & +cargo run --bin tutorial5-challenge & +cargo run --bin tutorial6-uniforms & +cargo run --bin tutorial6-challenge & +cargo run --bin tutorial7-instancing & +cargo run --bin tutorial7-challenge & +cargo run --bin tutorial8-depth & +cargo run --bin tutorial8-challenge & +cargo run --bin tutorial9-models & +cargo run --bin tutorial10-lighting & +cargo run --bin tutorial11-normals & +cargo run --bin tutorial12-camera & +cargo run --bin tutorial13-threading & +cargo run --bin windowless & +cargo run --bin gifs From 344cecc1e48f78eca9d2ef3c977e965ddc0e31fc Mon Sep 17 00:00:00 2001 From: Kane Rogers Date: Mon, 30 Nov 2020 14:55:41 +1100 Subject: [PATCH 2/3] Remove unnecessary comment --- run-all.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/run-all.sh b/run-all.sh index 411dee60..69ad360b 100755 --- a/run-all.sh +++ b/run-all.sh @@ -1,6 +1,4 @@ #!/bin/bash -# todo: figure out how to do this asynchronously - cargo run --bin tutorial1-window & cargo run --bin tutorial2-swapchain & From 907d50aaeaff8219f93c3f23e7fa2e8f44fda6d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 12 Dec 2020 14:30:32 +0000 Subject: [PATCH 3/3] Bump ini from 1.3.5 to 1.3.8 Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.8. - [Release notes](https://github.com/isaacs/ini/releases) - [Commits](https://github.com/isaacs/ini/compare/v1.3.5...v1.3.8) Signed-off-by: dependabot[bot] --- package-lock.json | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 87d736fe..b53a9be7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4874,12 +4874,6 @@ "dev": true, "optional": true }, - "ini": { - "version": "1.3.5", - "bundled": true, - "dev": true, - "optional": true - }, "is-fullwidth-code-point": { "version": "1.0.0", "bundled": true, @@ -5845,9 +5839,9 @@ "dev": true }, "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, "internal-ip": {