diff --git a/angular-app/package-lock.json b/angular-app/package-lock.json index 45bccd95..301f093f 100644 --- a/angular-app/package-lock.json +++ b/angular-app/package-lock.json @@ -1,12 +1,12 @@ { "name": "jasmarty-app", - "version": "2.4.48", + "version": "2.4.50", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "jasmarty-app", - "version": "2.4.48", + "version": "2.4.50", "dependencies": { "@angular/animations": "18.2.4", "@angular/cdk": "18.2.4", diff --git a/angular-app/package.json b/angular-app/package.json index 1caefa32..58315252 100644 --- a/angular-app/package.json +++ b/angular-app/package.json @@ -1,6 +1,6 @@ { "name": "jasmarty-app", - "version": "2.4.49", + "version": "2.4.50", "scripts": { "ng": "ng", "start": "ng serve --host 0.0.0.0 --port 3000 --disable-host-check", diff --git a/angular-app/src/app/app.component.ts b/angular-app/src/app/app.component.ts index c2a96563..d67e9ce7 100644 --- a/angular-app/src/app/app.component.ts +++ b/angular-app/src/app/app.component.ts @@ -31,6 +31,7 @@ const ICON_PLUS = `` const ICON_PFEIL_L = `` const ICON_PFEIL_R = `` +const ICON_COPY = `` @Component({ selector: 'app-root', @@ -69,5 +70,6 @@ export class AppComponent { iconRegistry.addSvgIconLiteral('minus', sanitizer.bypassSecurityTrustHtml(ICON_MINUS)); iconRegistry.addSvgIconLiteral('pfeil_L', sanitizer.bypassSecurityTrustHtml(ICON_PFEIL_L)); iconRegistry.addSvgIconLiteral('pfeil_R', sanitizer.bypassSecurityTrustHtml(ICON_PFEIL_R)); + iconRegistry.addSvgIconLiteral('copy', sanitizer.bypassSecurityTrustHtml(ICON_COPY)); } } diff --git a/angular-app/src/app/components/_wipf/liste/liste.component.html b/angular-app/src/app/components/_wipf/liste/liste.component.html index 4c9ec08b..138b9a2c 100644 --- a/angular-app/src/app/components/_wipf/liste/liste.component.html +++ b/angular-app/src/app/components/_wipf/liste/liste.component.html @@ -124,6 +124,10 @@

Liste

+ + @@ -131,6 +135,6 @@

Liste

- + \ No newline at end of file diff --git a/angular-app/src/app/components/_wipf/liste/listeType.component.ts b/angular-app/src/app/components/_wipf/liste/listeType.component.ts index 7bdf0a59..2ef06c59 100644 --- a/angular-app/src/app/components/_wipf/liste/listeType.component.ts +++ b/angular-app/src/app/components/_wipf/liste/listeType.component.ts @@ -29,6 +29,7 @@ export class ListeTypeComponentDialogTypeListComponent implements OnInit { public newType(): void { let e: ListeType = {}; e.typename = ""; + e.showOverview = true; this.openDialogType(e); } diff --git a/src/main/java/org/wipf/jasmarty/logic/base/MainHome.java b/src/main/java/org/wipf/jasmarty/logic/base/MainHome.java index 20166226..087c0d62 100644 --- a/src/main/java/org/wipf/jasmarty/logic/base/MainHome.java +++ b/src/main/java/org/wipf/jasmarty/logic/base/MainHome.java @@ -41,7 +41,7 @@ public class MainHome { AuthKeyService authKeyService; private static final Logger LOGGER = Logger.getLogger("_MainHome_"); - public static final String VERSION = "2.4.49"; + public static final String VERSION = "2.4.50"; public static final String AUTH_KEY_NAME = "authKey"; /** @@ -68,7 +68,6 @@ void onStart(@Observes StartupEvent ev) { if (wipfConfig.isAppActive("wipf")) { wipfConfig.checkAppWorkId(); } - if (wipfConfig.isAppActive("jasmarty")) { jasmartyHome.jasmartyStart(); } @@ -96,10 +95,9 @@ void onStop(@Observes ShutdownEvent ev) { } /** - * + * Fileorder erstellen */ private void createFileFolder() { - // Fileorder erstellen try { Path path = Paths.get(Paths.get("").toAbsolutePath().toString() + "/files"); Files.createDirectories(path);