0.1.6 - RC-1

This commit is contained in:
Elvanos 2021-04-27 23:27:49 +02:00
parent 255a9044f6
commit 020a71d27e
8 changed files with 8 additions and 8 deletions

View file

@ -759,7 +759,6 @@ export default class ObjectTree extends BaseClass {
treeObject.forEach(cat => this.recursivelyFreezeChildren(cat.children))
// @ts-ignore
this.hierarchicalTree = treeObject
console.log(treeObject)
}
recursivelyFreezeChildren (children: {children: []}) {

View file

@ -31,7 +31,7 @@
v-if="editMode"
v-model.number="localInput"
type="text"
@keyup="signalInput"
@keydown="signalInput"
:outlined="!isDarkMode"
:filled="isDarkMode"
dense

View file

@ -87,7 +87,7 @@
class="grow-1"
:class="`listField_input${index}_${inputDataBluePrint.id}`"
dense
@keyup="signalInput"
@keydown="signalInput"
:outlined="!isDarkMode"
:filled="isDarkMode"
>

View file

@ -410,7 +410,7 @@
label="Note"
v-model="singleNote.value"
dense
@keyup="signalInput"
@keydown="signalInput"
:outlined="!isDarkMode"
:filled="isDarkMode"
>

View file

@ -27,7 +27,7 @@
v-if="editMode"
v-model.number="localInput"
type="number"
@keyup="signalInput"
@keydown="signalInput"
:outlined="!isDarkMode"
:filled="isDarkMode"
dense

View file

@ -361,7 +361,7 @@
label="Note"
v-model="inputNote.value"
dense
@keyup="signalInput"
@keydown="signalInput"
:outlined="!isDarkMode"
:filled="isDarkMode"
>

View file

@ -26,7 +26,7 @@
<q-input
v-if="editMode"
v-model="localInput"
@keyup="signalInput"
@keydown="signalInput"
:outlined="!isDarkMode"
:filled="isDarkMode"
dense

View file

@ -7,7 +7,7 @@
### Known issues
- Overusing Tags currently causes app crashes on some PCs. If you suffer from this issue, reduce the number of tags in your project below 10.
- Overusing Tags currently causes app crashes on some PCs. If you suffer from this issue, reduce the number of tags or objects paired underneath them.
### Bugfixes & Optimizations
@ -19,6 +19,7 @@
- Hopefully finally fixed the new project creation bugs that have been plaguing the app for last 3 releases
- Fixed app starting in mutliple windows when ran multiple times.
- FIxed more typos across the app
- Fixed a bug that was re-triggering edit mode on document save without any actual edits
### New features