From f72361a5741f119f9a910ae845ab171b83147f26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 30 Mar 2023 13:10:15 +0000 Subject: [PATCH 1/4] chore: update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 653207f2..b9bf6f05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v1.12.11 + +* fix: broken if statement [e484f67](https://github.com/builder555/PineSAM/commit/e484f67929eb198925df3e35f6c45edaff582d2c) + ## v1.12.10 * Use mkdocs as documentation software instead of GitHub wiki (#129) From 5636d31edea5a76f5de64e0e2be9591fe2ca6566 Mon Sep 17 00:00:00 2001 From: River M <97197236+River-Mochi@users.noreply.github.com> Date: Thu, 30 Mar 2023 21:52:49 -0700 Subject: [PATCH 2/4] add date to ironOS version add date info --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index b20b857a..36abd993 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -26,7 +26,7 @@ If applicable, add screenshots to help explain your problem. - OS: [e.g. Windows 11] - Browser: [e.g. chrome, safari] - PineSAM Version: [e.g. 1.0.8] - - IronOS build: [e.g. 2.20.EB5D5EA] + - IronOS build/date: [e.g. 2.20.EB5D5EA, 15-02-23] **Additional context** Add any other context about the problem here. From da954f98d9bfcbbde87308851cf5d6c0d103328f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 1 Apr 2023 12:08:28 +0000 Subject: [PATCH 3/4] chore: update changelog --- CHANGELOG.md | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9bf6f05..b33b8573 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,88 @@ # Changelog +## v1.12.13 + +* fix: instructions, docs, wiki (#144) + + +fix badge links + +* Update Readme.md + +* fix: updated instructions + +fix: closes issue https://github.com/builder555/PineSAM/issues/136 + +* fix: instructions + +fix: instructions + +* fix: links + +fix: links + +* Update Readme.md + +* fix: add work HUD reference image + +fix: add work HUD detailed reference image + +* fix: added working 128 firmware + +fix: added link to working 128 UUID firmware. old beta ironOS causes main_server terminal crash + +* Update Readme.md + +* fix: readme doc + +fix: readme doc + +* fix: typo readme + +fix: typo readme [5f461fd](https://github.com/builder555/PineSAM/commit/5f461fd8aee172f85f4690e821b0ae87bfe353ae) +* fix: error from wait=process, instruction docs (#149) + +fix badge links + +* Update Readme.md + +* fix: updated instructions + +fix: closes issue https://github.com/builder555/PineSAM/issues/136 + +* fix: instructions + +fix: instructions + +* fix: links + +fix: links + +* Update Readme.md + +* fix: add work HUD reference image + +fix: add work HUD detailed reference image + +* fix: added working 128 firmware + +fix: added link to working 128 UUID firmware. old beta ironOS causes main_server terminal crash + +* Update Readme.md + +* fix: readme doc + +fix: readme doc + +* fix: typo readme + +fix: typo readme + +* fix: wait-process error on windows + +fix: this closes ticket for https://github.com/builder555/PineSAM/issues/148 +fix of Wait-process causing error in terminal window start.ps1 [ed98d62](https://github.com/builder555/PineSAM/commit/ed98d6207deb6c9a4b36f1f91d30ed30a6771721) + ## v1.12.11 * fix: broken if statement [e484f67](https://github.com/builder555/PineSAM/commit/e484f67929eb198925df3e35f6c45edaff582d2c) From 1120bb2c496d4f78286f41fae85fd609cc72aadd Mon Sep 17 00:00:00 2001 From: MagicLike Date: Sat, 1 Apr 2023 23:39:13 +0200 Subject: [PATCH 4/4] Added concurrency to workflow --- .github/workflows/docs-deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml index 4a2c846b..ec301074 100644 --- a/.github/workflows/docs-deploy.yml +++ b/.github/workflows/docs-deploy.yml @@ -7,6 +7,9 @@ on: - '/docs' - '/mkdocs.yml' workflow_dispatch: +concurrency: + group: "docs" + cancel-in-progress: true jobs: deploy: runs-on: ubuntu-latest @@ -22,4 +25,4 @@ jobs: - run: pip install mkdocs-git-authors-plugin - run: pip install mkdocs-enumerate-headings-plugin - run: pip install mkdocs-glightbox - - run: mkdocs gh-deploy --force \ No newline at end of file + - run: mkdocs gh-deploy --force