Update Angular and dependencies to 21.1.0
All checks were successful
Build & Push Frontend A / docker (push) Successful in 44s
All checks were successful
Build & Push Frontend A / docker (push) Successful in 44s
Upgraded Angular packages and related dependencies from 21.0.x to 21.1.0 in package.json and package-lock.json. Updated asset references in AssetsConstants.ts and made minor adjustments in about and projects components to align with the new Angular version.
This commit is contained in:
@@ -1,40 +1,46 @@
|
||||
export class AssetsConstants {
|
||||
export class AssetsConstants {
|
||||
|
||||
static readonly ME = '/assets/me.webp';
|
||||
static readonly LOGO = '/assets/favicon.ico';
|
||||
static readonly FLAG_DE = '/assets/flags/de.svg';
|
||||
static readonly FLAG_EN = '/assets/flags/gb.svg';
|
||||
static readonly LOGO = '/assets/favicon.ico';
|
||||
static readonly FLAG_DE = '/assets/flags/de.svg';
|
||||
static readonly FLAG_EN = '/assets/flags/gb.svg';
|
||||
|
||||
//logos
|
||||
static readonly CHAMAELEON_LOGO = '/assets/logos/logo_chamaeleon.svg';
|
||||
static readonly TH_BINGEN_LOGO = '/assets/logos/bingen-logo-white.svg';
|
||||
static readonly ASSYST_LOG = '/assets/logos/assyst_gmbh_logo.jpg';
|
||||
static readonly ASSYST_LOGO = '/assets/logos/assyst_gmbh_logo.jpg';
|
||||
static readonly COLORDIGITAL_LOGO = '/assets/logos/dmixcloud_logo.jpg';
|
||||
static readonly TERAPORT_LOGO = '/assets/logos/teraport_gmbh_logo.jpg';
|
||||
|
||||
static readonly DIPLOMA= 'assets/projects/diploma/Dahm2010-Diplomarbeit.pdf';
|
||||
static readonly DIPLOMA = '/assets/projects/diploma/Dahm2010-Diplomarbeit.pdf';
|
||||
|
||||
//project images
|
||||
static readonly EL_MUCHO_1 = '/assets/projects/el-mucho/1.jpg';
|
||||
static readonly EL_MUCHO_2 = '/assets/projects/el-mucho/2.jpg';
|
||||
static readonly EL_MUCHO_3 = '/assets/projects/el-mucho/3.jpg';
|
||||
static readonly EL_MUCHO_4 = '/assets/projects/el-mucho/4.jpg';
|
||||
static readonly EL_MUCHO_IMAGES = [
|
||||
'/assets/projects/el-mucho/1.jpg',
|
||||
'/assets/projects/el-mucho/2.jpg',
|
||||
'/assets/projects/el-mucho/3.jpg',
|
||||
'/assets/projects/el-mucho/4.jpg'
|
||||
];
|
||||
|
||||
static readonly GAME_JAMS_1 = '/assets/projects/game-jams/1.png';
|
||||
static readonly GAME_JAMS_2 = '/assets/projects/game-jams/2.png';
|
||||
static readonly GAME_JAMS_3 = '/assets/projects/game-jams/3.png';
|
||||
static readonly GAME_JAMS_IMAGES = [
|
||||
'/assets/projects/game-jams/1.png',
|
||||
'/assets/projects/game-jams/2.png',
|
||||
'/assets/projects/game-jams/3.png'
|
||||
];
|
||||
|
||||
static readonly DIPLOMA_1 = '/assets/projects/diploma/1.jpg';
|
||||
static readonly DIPLOMA_2 = '/assets/projects/diploma/2.jpg';
|
||||
static readonly DIPLOMA_3 = '/assets/projects/diploma/3.jpg';
|
||||
static readonly DIPLOMA_4 = '/assets/projects/diploma/4.jpg';
|
||||
static readonly DIPLOMA_5 = '/assets/projects/diploma/5.jpg';
|
||||
static readonly DIPLOMA_6 = '/assets/projects/diploma/6.jpg';
|
||||
static readonly DIPLOMA_IMAGES = [
|
||||
'/assets/projects/diploma/1.jpg',
|
||||
'/assets/projects/diploma/2.jpg',
|
||||
'/assets/projects/diploma/3.jpg',
|
||||
'/assets/projects/diploma/4.jpg',
|
||||
'/assets/projects/diploma/5.jpg',
|
||||
'/assets/projects/diploma/6.jpg'
|
||||
];
|
||||
|
||||
static readonly TRIBBLE_1 = '/assets/projects/tribble-the-homeserver/2.png';
|
||||
static readonly TRIBBLE_2 = '/assets/projects/tribble-the-homeserver/1.png';
|
||||
static readonly TRIBBLE_3 = '/assets/projects/tribble-the-homeserver/3.png';
|
||||
static readonly TRIBBLE_4 = '/assets/projects/tribble-the-homeserver/4.png';
|
||||
|
||||
|
||||
}
|
||||
static readonly TRIBBLE_IMAGES = [
|
||||
'/assets/projects/tribble-the-homeserver/1.png',
|
||||
'/assets/projects/tribble-the-homeserver/2.png',
|
||||
'/assets/projects/tribble-the-homeserver/3.png',
|
||||
'/assets/projects/tribble-the-homeserver/4.png'
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user