From 55579c26cf81c55756a0df8dbc5fe200e8521b4f Mon Sep 17 00:00:00 2001 From: "Mike A." Date: Tue, 3 Sep 2024 22:55:51 +0200 Subject: [PATCH 1/9] project: Disable output file configuration box --- src/views/project/src/components/EDATargetGeneral.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/views/project/src/components/EDATargetGeneral.vue b/src/views/project/src/components/EDATargetGeneral.vue index c9a797e..8d088af 100644 --- a/src/views/project/src/components/EDATargetGeneral.vue +++ b/src/views/project/src/components/EDATargetGeneral.vue @@ -160,12 +160,14 @@ export default defineComponent({ Name + +
From 99b83c10ec18e608e5fb53b0a5f704dfa205e28a Mon Sep 17 00:00:00 2001 From: "Mike A." Date: Wed, 4 Sep 2024 20:05:25 +0200 Subject: [PATCH 2/9] project: Make checkboxes reflect real value --- package-lock.json | 5 +- package.json | 2 +- .../src/components/EDATargetCheckbox.vue | 50 ++++++++++++++----- 3 files changed, 40 insertions(+), 17 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9a84e58..8e8f224 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ "@vscode/codicons": "^0.0.35", "@vscode/webview-ui-toolkit": "^1.3.1", "digitaljs": "github:EDAcation/digitaljs#next", - "edacation": "^0.3.7", + "edacation": "github:EDAcation/edacation", "nextpnr-viewer": "^0.6.1", "os-browserify": "^0.3.0", "path-browserify": "^1.0.1", @@ -2202,8 +2202,7 @@ }, "node_modules/edacation": { "version": "0.3.7", - "resolved": "https://registry.npmjs.org/edacation/-/edacation-0.3.7.tgz", - "integrity": "sha512-CcKVrjmL8eucXp02/uqwRM+wUCa01nLsskAcPZnw9q+F+LvT+fLDEfMO1kBuuu2HEdlJy7hPlTJwyo10rFiMtw==", + "resolved": "git+ssh://git@github.com/EDAcation/edacation.git#c7f021a6d993c427c5a9535ca3fa93622193568b", "dependencies": { "string-args-parser": "^1.0.4", "yargs": "^17.7.2", diff --git a/package.json b/package.json index ce880d9..59fe6c7 100644 --- a/package.json +++ b/package.json @@ -404,7 +404,7 @@ "@vscode/codicons": "^0.0.35", "@vscode/webview-ui-toolkit": "^1.3.1", "digitaljs": "github:EDAcation/digitaljs#next", - "edacation": "^0.3.7", + "edacation": "github:EDAcation/edacation", "nextpnr-viewer": "^0.6.1", "os-browserify": "^0.3.0", "path-browserify": "^1.0.1", diff --git a/src/views/project/src/components/EDATargetCheckbox.vue b/src/views/project/src/components/EDATargetCheckbox.vue index db28514..3bce56d 100644 --- a/src/views/project/src/components/EDATargetCheckbox.vue +++ b/src/views/project/src/components/EDATargetCheckbox.vue @@ -1,13 +1,17 @@