0.1.6 - more hotfixes

This commit is contained in:
Elvanos 2021-04-29 03:44:29 +02:00
parent f3ddcabc38
commit 36abdc6b56
8 changed files with 22 additions and 25 deletions

View file

@ -40,14 +40,14 @@ export default class BaseClass extends Vue {
} }
/** /**
* Async wait for XY miliseconds * Async wait for XY miliseconds
*/ */
sleep (ms:number) { sleep (ms:number) {
return new Promise(resolve => setTimeout(resolve, ms)) return new Promise(resolve => setTimeout(resolve, ms))
} }
/** /**
* Strip all tags from a string * Strip all tags from a string
*/ */
stripTags (input: string) { stripTags (input: string) {
return (input) ? input.replace(/<[^>]+>/g, "") : input return (input) ? input.replace(/<[^>]+>/g, "") : input

View file

@ -1103,12 +1103,12 @@ export default class ObjectTree extends BaseClass {
$shadowColorOutline: #000; $shadowColorOutline: #000;
$shadowColorSurround: #000; $shadowColorSurround: #000;
filter: drop-shadow(0 0 4px #000); filter: drop-shadow(0 0 1px #000);
text-shadow: text-shadow:
-2px -2px 0 $shadowColorSurround, //-2px -2px 0 $shadowColorSurround,
2px -2px 0 $shadowColorSurround, //2px -2px 0 $shadowColorSurround,
-2px 2px 0 $shadowColorSurround, // -2px 2px 0 $shadowColorSurround,
2px 2px 0 $shadowColorSurround, //2px 2px 0 $shadowColorSurround,
-1px -1px 0 $shadowColorOutline, -1px -1px 0 $shadowColorOutline,
1px -1px 0 $shadowColorOutline, 1px -1px 0 $shadowColorOutline,
-1px 1px 0 $shadowColorOutline, -1px 1px 0 $shadowColorOutline,

View file

@ -501,12 +501,12 @@ export default class TopTabs extends BaseClass {
$shadowColorOutline: #000; $shadowColorOutline: #000;
$shadowColorSurround: #000; $shadowColorSurround: #000;
filter: drop-shadow(0 0 4px #000); filter: drop-shadow(0 0 1px #000);
text-shadow: text-shadow:
-2px -2px 0 $shadowColorSurround, //-2px -2px 0 $shadowColorSurround,
2px -2px 0 $shadowColorSurround, //2px -2px 0 $shadowColorSurround,
-2px 2px 0 $shadowColorSurround, //-2px 2px 0 $shadowColorSurround,
2px 2px 0 $shadowColorSurround, //2px 2px 0 $shadowColorSurround,
-1px -1px 0 $shadowColorOutline, -1px -1px 0 $shadowColorOutline,
1px -1px 0 $shadowColorOutline, 1px -1px 0 $shadowColorOutline,
-1px 1px 0 $shadowColorOutline, -1px 1px 0 $shadowColorOutline,

View file

@ -257,6 +257,7 @@
v-on="itemEvents" v-on="itemEvents"
:key="opt.id" :key="opt.id"
:style="`background-color: ${opt.bgColor}`" :style="`background-color: ${opt.bgColor}`"
:title="(disabledIDList.includes(opt._id)) ? 'This option is unavailable for selection as it is already paired to another.': ''"
> >
<q-item-section avatar> <q-item-section avatar>
<q-icon <q-icon
@ -287,9 +288,6 @@
</q-chip> </q-chip>
</q-item-label> </q-item-label>
</q-item-section> </q-item-section>
<q-tooltip v-if='opt.disable'>
This option is unavailable for selection as it is already paired to another.
</q-tooltip>
<q-menu <q-menu
touch-position touch-position
context-menu context-menu

View file

@ -255,6 +255,7 @@
v-on="itemEvents" v-on="itemEvents"
:key="opt.id" :key="opt.id"
:style="`background-color: ${opt.bgColor}`" :style="`background-color: ${opt.bgColor}`"
:title="(disabledIDList.includes(opt._id)) ? 'This option is unavailable for selection as it is already paired to another.': ''"
> >
<q-item-section avatar> <q-item-section avatar>
<q-icon <q-icon
@ -285,9 +286,6 @@
</q-chip> </q-chip>
</q-item-label> </q-item-label>
</q-item-section> </q-item-section>
<q-tooltip v-if='opt.disable'>
This option is unavailable for selection as it is already paired to another.
</q-tooltip>
<q-menu <q-menu
touch-position touch-position

View file

@ -219,13 +219,13 @@ a {
$shadowColorOutline: #000; $shadowColorOutline: #000;
$shadowColorSurround: #000; $shadowColorSurround: #000;
filter: drop-shadow(0 0 4px #000); filter: drop-shadow(0 0 1px #000);
font-weight: 500; font-weight: 500;
text-shadow: text-shadow:
-2px -2px 0 $shadowColorSurround, //-2px -2px 0 $shadowColorSurround,
2px -2px 0 $shadowColorSurround, //2px -2px 0 $shadowColorSurround,
-2px 2px 0 $shadowColorSurround, //-2px 2px 0 $shadowColorSurround,
2px 2px 0 $shadowColorSurround, //2px 2px 0 $shadowColorSurround,
-1px -1px 0 $shadowColorOutline, -1px -1px 0 $shadowColorOutline,
1px -1px 0 $shadowColorOutline, 1px -1px 0 $shadowColorOutline,
-1px 1px 0 $shadowColorOutline, -1px 1px 0 $shadowColorOutline,

View file

@ -23,6 +23,7 @@
- Added debounce timers for all input fields across the whole document to massively improve performance when updating temporary document data across the app - Added debounce timers for all input fields across the whole document to massively improve performance when updating temporary document data across the app
- Fixed a bug that was re-triggering edit mode on document save without any actual edits - Fixed a bug that was re-triggering edit mode on document save without any actual edits
- Fixed a bug that was causing improperly filled in URLs in the text editor field to glitch out the whole app and require a restart - Fixed a bug that was causing improperly filled in URLs in the text editor field to glitch out the whole app and require a restart
- Revamped how tooltips work in already paired documents in single-to-single and many-to-single relationships
### New features ### New features
@ -33,7 +34,7 @@
### QoL adjustments ### QoL adjustments
- None this time, sorry :( - Adjusted the `Accessibility - Text shadow` option looks to look better
## 0.1.5a ## 0.1.5a

View file

@ -16,7 +16,7 @@
unelevated unelevated
to="/" to="/"
label="Go Home" label="Go Home"
no-caps no-capsw
/> />
</div> </div>
</div> </div>