Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,414 changes: 680 additions & 734 deletions client-v3/package-lock.json

Large diffs are not rendered by default.

50 changes: 25 additions & 25 deletions client-v3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client-v3",
"version": "0.35.0",
"version": "0.35.1",
"description": "DigiScript front end (Vue 3)",
"author": "DreamTeamProd",
"private": true,
Expand Down Expand Up @@ -34,56 +34,56 @@
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"bootstrap": "^5.3.8",
"bootstrap-vue-next": "^0.45.7",
"bootstrap-vue-next": "^1.0.1",
"bootswatch": "^5.3.8",
"contrast-color": "1.0.1",
"core-js": "^3.49.0",
"core-js": "^3.50.0",
"d3-hierarchy": "^3.1.2",
"d3-selection": "^3.0.0",
"d3-zoom": "^3.0.0",
"deep-object-diff": "1.1.9",
"dompurify": "^3.4.11",
"fuse.js": "^7.4.2",
"dompurify": "^3.4.14",
"fuse.js": "^7.5.0",
"lodash": "^4.18.1",
"loglevel": "^1.9.2",
"marked": "^18.0.5",
"marked": "^18.0.10",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"splitpanes": "^4.1.2",
"vue": "^3.5.39",
"vue": "^3.5.41",
"vue-multiselect": "^3.5.0",
"vue-router": "^5.1.0",
"vue-router": "^5.2.0",
"vue-toast-notification": "^3.1.3"
},
"devDependencies": {
"@emnapi/core": "1.11.2",
"@emnapi/runtime": "1.11.2",
"@emnapi/core": "1.11.3",
"@emnapi/runtime": "1.11.3",
"@eslint/js": "^10.0.1",
"@iconify-json/mdi": "^1.2.3",
"@types/lodash": "~4.17.24",
"@types/node": ">=22.12.0",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"@vitejs/plugin-vue": "^6.0.7",
"@vitest/ui": "^4.1.10",
"@types/lodash": "~4.17.25",
"@types/node": "^26.2.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/ui": "^4.1.11",
"@vue/test-utils": "^2.4.11",
"eslint": "^10.6.0",
"eslint": "^10.9.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.9.2",
"globals": "^17.7.0",
"eslint-plugin-vue": "^10.10.0",
"globals": "^17.11.0",
"jiti": "^2.7.0",
"jsdom": "^29.1.1",
"prettier": "^3.9.4",
"sass": "1.101.0",
"prettier": "^3.9.6",
"sass": "1.103.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"typescript-eslint": "^8.67.0",
"unplugin-icons": "^23.0.1",
"unplugin-vue-components": "^32.1.0",
"vite": "^8.1.4",
"vitest": "^4.1.10",
"vite": "^8.2.2",
"vitest": "^4.1.11",
"vue-eslint-parser": "^10.4.1",
"@playwright/test": "^1.61.1"
"@playwright/test": "^1.62.1"
},
"overrides": {
"glob": "^13.0.6"
Expand Down
2 changes: 1 addition & 1 deletion client-v3/src/components/config/ConfigLogs.vue
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</BFormGroup>

<BFormGroup label="Live:" label-cols="auto" class="mb-0">
<BFormCheckbox v-model="liveRefresh" switch />
<BFormCheckbox v-model="liveRefresh" :unchecked-value="false" switch />
</BFormGroup>

<BButton :disabled="loading || liveRefresh" size="sm" variant="secondary" @click="fetchLogs">
Expand Down
1 change: 1 addition & 0 deletions client-v3/src/components/config/ConfigSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
v-model="editSettings[String(key)]"
:name="`${key}-input`"
:disabled="!setting.can_edit"
:unchecked-value="false"
switch
/>
</BFormGroup>
Expand Down
2 changes: 1 addition & 1 deletion client-v3/src/components/config/ConfigUsers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
>
<BForm v-if="editFormState">
<BFormGroup label="User Type">
<BFormCheckbox v-model="editFormState.is_admin" switch>
<BFormCheckbox v-model="editFormState.is_admin" :unchecked-value="false" switch>
{{ editFormState.is_admin ? 'Admin' : 'Standard User' }}
</BFormCheckbox>
</BFormGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,11 @@
<BFormInvalidFeedback>This is a required field.</BFormInvalidFeedback>
</BFormGroup>
<BFormGroup label="Interval After" label-for="new-interval-input" label-cols="4">
<BFormCheckbox id="new-interval-input" v-model="newFormState.interval_after" />
<BFormCheckbox
id="new-interval-input"
v-model="newFormState.interval_after"
:unchecked-value="false"
/>
</BFormGroup>
<BFormGroup label="Previous Act" label-for="new-previous-act-input" label-cols="4">
<BFormSelect
Expand Down Expand Up @@ -104,7 +108,11 @@
<BFormInvalidFeedback>This is a required field.</BFormInvalidFeedback>
</BFormGroup>
<BFormGroup label="Interval After" label-for="edit-interval-input" label-cols="4">
<BFormCheckbox id="edit-interval-input" v-model="editFormState.interval_after" />
<BFormCheckbox
id="edit-interval-input"
v-model="editFormState.interval_after"
:unchecked-value="false"
/>
</BFormGroup>
<BFormGroup label="Previous Act" label-for="edit-previous-act-input" label-cols="4">
<BFormSelect
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,12 @@
/>
</BFormGroup>
<BFormGroup label="Text Colour" label-for="default-text-colour-input">
<BFormCheckbox v-model="defaultFormState.enableTextColour" switch class="mb-1">
<BFormCheckbox
v-model="defaultFormState.enableTextColour"
:unchecked-value="false"
switch
class="mb-1"
>
Override text colour
</BFormCheckbox>
<BFormInput
Expand Down Expand Up @@ -195,6 +200,7 @@
<BFormCheckbox
id="new-background-colour-enable"
v-model="newStyleFormState.enableBackgroundColour"
:unchecked-value="false"
switch
/>
</BFormGroup>
Expand Down Expand Up @@ -270,6 +276,7 @@
<BFormCheckbox
id="edit-background-colour-enable"
v-model="editStyleFormState.enableBackgroundColour"
:unchecked-value="false"
switch
/>
</BFormGroup>
Expand Down
5 changes: 5 additions & 0 deletions client-v3/src/components/user/settings/UserSettingsConfig.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
id="enable-autosave-input"
v-model="state.enable_script_auto_save"
name="enable-autosave-input"
:unchecked-value="false"
switch
/>
</BFormGroup>
Expand Down Expand Up @@ -43,6 +44,7 @@
id="cue-position-input"
v-model="state.cue_position_right"
name="cue-position-input"
:unchecked-value="false"
switch
/>
</BFormGroup>
Expand Down Expand Up @@ -90,6 +92,7 @@
id="character-mru-sort-input"
v-model="state.character_mru_sort"
name="character-mru-sort-input"
:unchecked-value="false"
switch
/>
</BFormGroup>
Expand All @@ -103,6 +106,7 @@
id="character-combined-dropdown-input"
v-model="state.character_combined_dropdown"
name="character-combined-dropdown-input"
:unchecked-value="false"
switch
/>
</BFormGroup>
Expand All @@ -116,6 +120,7 @@
id="show-current-cue-footer-input"
v-model="state.show_current_cue_footer"
name="show-current-cue-footer-input"
:unchecked-value="false"
switch
/>
</BFormGroup>
Expand Down
4 changes: 3 additions & 1 deletion client-v3/src/views/electron/ServerSelector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,9 @@
</BFormGroup>

<BFormGroup>
<BFormCheckbox v-model="manualForm.sslEnabled">Use SSL (HTTPS)</BFormCheckbox>
<BFormCheckbox v-model="manualForm.sslEnabled" :unchecked-value="false"
>Use SSL (HTTPS)</BFormCheckbox
>
</BFormGroup>

<BButton
Expand Down
Loading
Loading