v4.0.1 [ci-build]

This commit is contained in:
JannisX11 2021-10-15 18:10:54 +02:00
parent 320f402680
commit 389f233e2e
5 changed files with 5 additions and 3 deletions

View File

@ -25,7 +25,7 @@
<script>
if (typeof module === 'object') {window.module = module; module = undefined;}//jQuery Fix
const isApp = typeof require !== 'undefined';
const appVersion = '4.0.0';
const appVersion = '4.0.1';
if (localStorage.getItem('theme')) {

View File

@ -103,6 +103,7 @@ var codec = new Codec('project', {
}
for (var key in ModelProject.properties) {
if (ModelProject.properties[key].export == false) continue;
ModelProject.properties[key].copy(Project, model)
}

View File

@ -50,6 +50,7 @@ class Property {
if (typeof options.merge_validation == 'function') this.merge_validation = options.merge_validation;
if (options.condition) this.condition = options.condition;
if (options.exposed == false) this.exposed = false;
if (options.export == false) this.export = false;
if (options.label) this.label = options.label;
if (options.description) this.description = options.description;
if (options.options) this.options = options.options;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long