Skip to content

Commit

Permalink
Version 1.0.04
Browse files Browse the repository at this point in the history
  • Loading branch information
ToWipf committed Jan 31, 2021
1 parent 2e453bd commit 2477207
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions angular-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jasmarty-app",
"version": "1.0.02",
"version": "1.0.04",
"scripts": {
"ng": "ng",
"start": "ng serve --host localhost --aot --port 3000",
Expand Down Expand Up @@ -33,4 +33,4 @@
"tslint": "6.1.3",
"typescript": "4.0.5"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<ng-container *ngIf="lcdDescription">
<h1> Seite: {{lcdDescription.id}} </h1>

<button type="button" class="btn btn-primary inbutton" (click)="pageLast()">Seite zurück</button>
<button type="button" class="btn btn-primary inbutton" (click)="pageNext()">nächste Seite</button>
<button type="button" class="btn btn-primary" (click)="pageLast()">Seite zurück</button>
<button type="button" class="btn btn-primary" (click)="pageNext()">nächste Seite</button>
<hr>

<mat-form-field appearance="fill">
Expand All @@ -17,6 +17,7 @@ <h3>Hintergrundbild</h3>
Bild einfügen
<br>
<input type="file" (change)="fileChangeEvent($event)" />
<button class="btn btn-primary" (click)="clearPic()">Hintergrundbild löschen</button>

<ng-container *ngIf="base64">
<img [src]="base64" alt="" height="128" width="256">
Expand All @@ -38,7 +39,6 @@ <h3>Hintergrundbild</h3>
</table>
</ng-container>

<button class="btn" (click)="clearPic()">Hintergrundbild löschen</button>
</div>

<hr>
Expand Down Expand Up @@ -109,8 +109,8 @@ <h3>Inhalt</h3>
</div>
</perfect-scrollbar>

<button class="btn" (click)="addDynLine()">Dynamische Anweisung hinzufügen</button>
<button class="btn" (click)="sendSelectedPage()">Speichern</button>
<button class="btn btn-primary" (click)="addDynLine()">Dynamische Anweisung hinzufügen</button>
<button class="btn btn-primary" (click)="sendSelectedPage()">Speichern</button>

</ng-container>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/wipf/jasmarty/logic/base/MainHome.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class MainHome {
TelegramHome tHome;

private static final Logger LOGGER = Logger.getLogger("_MainHome_");
public static final String VERSION = "1.0.02";
public static final String VERSION = "1.0.04";
public static final String DB_PATH = "jasmarty.db";

/**
Expand Down

0 comments on commit 2477207

Please sign in to comment.