Moved to hatch vcs to improve oci container cacheing performance.

This commit is contained in:
2026-09-15 16:16:16 +00:00
parent d288523d4e
commit e06e077ebe
13 changed files with 55 additions and 89 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "overlord",
"version": "15.3.1",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
-1
View File
@@ -1,6 +1,5 @@
export const environment = {
ACCESS_TOKEN_REFRESH_MINUTES: 10, // refresh token 10 minutes before expiry
version: '15.3.1',
title: 'HnG / TGB',
};
@@ -194,5 +194,5 @@
</mat-tab>
</mat-tab-group>
<footer class="footer">
<p>Backend: v{{ auth.user?.ver }} / Frontend: v{{ version }}</p>
<p>v{{ auth.user?.ver }}</p>
</footer>
@@ -14,7 +14,6 @@ import { MatTabsModule } from '@angular/material/tabs';
import { Router } from '@angular/router';
import { AccountTypeService } from '../account/account-type.service';
import { environment } from '../app.environment';
import { AuthService } from '../auth/auth.service';
import { AccountType } from '../core/account-type';
import { endOfMonth, formatDisplayDate, formatIsoDate } from '../core/date-utils';
@@ -117,12 +116,6 @@ export class SettingsComponent {
displayedColumns = ['index', 'validity', 'voucherTypes', 'accountTypes', 'lock', 'action'];
version: string;
constructor() {
this.version = environment.version;
}
showLockInformation(info: LockInfo[]) {
this.lockInformation.set(info);
}