Compare commits
3 Commits
c9beceab76
...
f00a959db3
Author | SHA1 | Date |
---|---|---|
Lykin | f00a959db3 | |
Lykin | aa98da31d6 | |
Lykin | 18ba04a5b1 |
|
@ -82,7 +82,7 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
CGO_ENABLED=1 wails build -platform ${{ matrix.platform }} \
|
CGO_ENABLED=1 wails build -platform ${{ matrix.platform }} \
|
||||||
-ldflags "-X main.version=${{ github.event.release.tag_name }} -X main.gaMeasurementID=${{ secrets.GA_MEASUREMENT_ID }} -X main.gaSecretKey=${{ secrets.MAC_GA_SECRET }}"
|
-ldflags "-X main.version=${{ steps.normalise_version.outputs.version }} -X main.gaMeasurementID=${{ secrets.GA_MEASUREMENT_ID }} -X main.gaSecretKey=${{ secrets.MAC_GA_SECRET }}"
|
||||||
|
|
||||||
# - name: Notarise macOS app + create dmg
|
# - name: Notarise macOS app + create dmg
|
||||||
# shell: bash
|
# shell: bash
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"chart.js": "^4.4.2",
|
"chart.js": "^4.4.2",
|
||||||
"dayjs": "^1.11.10",
|
"dayjs": "^1.11.10",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"monaco-editor": "^0.48.0",
|
"monaco-editor": "^0.47.0",
|
||||||
"pinia": "^2.1.7",
|
"pinia": "^2.1.7",
|
||||||
"sass": "^1.75.0",
|
"sass": "^1.75.0",
|
||||||
"vue": "^3.4.25",
|
"vue": "^3.4.25",
|
||||||
|
@ -1608,9 +1608,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/monaco-editor": {
|
"node_modules/monaco-editor": {
|
||||||
"version": "0.48.0",
|
"version": "0.47.0",
|
||||||
"resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.48.0.tgz",
|
"resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.47.0.tgz",
|
||||||
"integrity": "sha512-goSDElNqFfw7iDHMg8WDATkfcyeLTNpBHQpO8incK6p5qZt5G/1j41X0xdGzpIkGojGXM+QiRQyLjnfDVvrpwA=="
|
"integrity": "sha512-VabVvHvQ9QmMwXu4du008ZDuyLnHs9j7ThVFsiJoXSOQk18+LF89N4ADzPbFenm0W4V2bGHnFBztIRQTgBfxzw=="
|
||||||
},
|
},
|
||||||
"node_modules/ms": {
|
"node_modules/ms": {
|
||||||
"version": "2.1.2",
|
"version": "2.1.2",
|
||||||
|
@ -3537,9 +3537,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"monaco-editor": {
|
"monaco-editor": {
|
||||||
"version": "0.48.0",
|
"version": "0.47.0",
|
||||||
"resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.48.0.tgz",
|
"resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.47.0.tgz",
|
||||||
"integrity": "sha512-goSDElNqFfw7iDHMg8WDATkfcyeLTNpBHQpO8incK6p5qZt5G/1j41X0xdGzpIkGojGXM+QiRQyLjnfDVvrpwA=="
|
"integrity": "sha512-VabVvHvQ9QmMwXu4du008ZDuyLnHs9j7ThVFsiJoXSOQk18+LF89N4ADzPbFenm0W4V2bGHnFBztIRQTgBfxzw=="
|
||||||
},
|
},
|
||||||
"ms": {
|
"ms": {
|
||||||
"version": "2.1.2",
|
"version": "2.1.2",
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"chart.js": "^4.4.2",
|
"chart.js": "^4.4.2",
|
||||||
"dayjs": "^1.11.10",
|
"dayjs": "^1.11.10",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"monaco-editor": "^0.48.0",
|
"monaco-editor": "^0.47.0",
|
||||||
"pinia": "^2.1.7",
|
"pinia": "^2.1.7",
|
||||||
"sass": "^1.75.0",
|
"sass": "^1.75.0",
|
||||||
"vue": "^3.4.25",
|
"vue": "^3.4.25",
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
015d99ba38ab1210c611b0adecf20175
|
10008d9a0e71cb9e35bf046c83297d37
|
|
@ -356,7 +356,7 @@ const renderLabel = ({ option }) => {
|
||||||
if (option.label === '') {
|
if (option.label === '') {
|
||||||
// blank label name
|
// blank label name
|
||||||
return h('div', [
|
return h('div', [
|
||||||
h(NText, { italic: true, depth: 3 }, () => '[Empty]'),
|
h(NText, { italic: true, depth: 3 }, () => '[NO NAME]'),
|
||||||
h('span', () => ` (${option.keyCount || 0})`),
|
h('span', () => ` (${option.keyCount || 0})`),
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue