From 0a7586741a5f54353b2d5b73808ba96c43042c09 Mon Sep 17 00:00:00 2001 From: danielvici123 Date: Sat, 6 Dec 2025 21:44:41 +0100 Subject: [PATCH] changelog removed It's useless --- src/app/app.routes.ts | 5 -- src/app/sites/navbar/changelog/changelog.css | 0 src/app/sites/navbar/changelog/changelog.html | 59 ------------------- .../sites/navbar/changelog/changelog.spec.ts | 23 -------- src/app/sites/navbar/changelog/changelog.ts | 13 ---- 5 files changed, 100 deletions(-) delete mode 100644 src/app/sites/navbar/changelog/changelog.css delete mode 100644 src/app/sites/navbar/changelog/changelog.html delete mode 100644 src/app/sites/navbar/changelog/changelog.spec.ts delete mode 100644 src/app/sites/navbar/changelog/changelog.ts diff --git a/src/app/app.routes.ts b/src/app/app.routes.ts index d9fb085..d9e74f9 100644 --- a/src/app/app.routes.ts +++ b/src/app/app.routes.ts @@ -4,7 +4,6 @@ import { TestIt } from './sites/test-it/test-it'; import { GeneratorPassword } from './sites/generator/password/generator-password.component'; import { GeneratorQrcode } from './sites/generator/qrcode/generator-qrcode'; import { Comingsoon } from './sites/navbar/comingsoon/comingsoon'; -import { Changelog } from './sites/navbar/changelog/changelog'; import { About } from './sites/navbar/about/about'; export const routes: Routes = [ @@ -21,10 +20,6 @@ export const routes: Routes = [ path: 'coming-soon', component: Comingsoon, }, - { - path: 'changelog', - component: Changelog, - }, { path: 'about', component: About, diff --git a/src/app/sites/navbar/changelog/changelog.css b/src/app/sites/navbar/changelog/changelog.css deleted file mode 100644 index e69de29..0000000 diff --git a/src/app/sites/navbar/changelog/changelog.html b/src/app/sites/navbar/changelog/changelog.html deleted file mode 100644 index a29e2ab..0000000 --- a/src/app/sites/navbar/changelog/changelog.html +++ /dev/null @@ -1,59 +0,0 @@ -
-
- -
- -
-

Changes that have been made:

- -
- -
    -
  • Site remade in Angular 20
  • -
  • Settings Tab removed
  • -
  • Text in Coming soon changed
  • -
-
- -
- -
    -
  • Added Settings and Changelog pages
  • -
  • Color Converter added
  • -
  • Enhanced QR code generator
  • -
  • Currency converter added
  • -
  • Number Converter added
  • -
  • Scientific Calculator added
  • -
  • Removed bookmarked websites feature
  • -
  • Updated navigation structure
  • -
-
-
- -
    -
  • Initial release
  • -
  • Added basic tools: Password Generator, QR Code Generator
  • -
  • Added converters: Number, Color, Currency
  • -
  • Added Scientific Calculator
  • -
  • Basic website layout and navigation
  • -
-
-
-
- diff --git a/src/app/sites/navbar/changelog/changelog.spec.ts b/src/app/sites/navbar/changelog/changelog.spec.ts deleted file mode 100644 index 8fc7fb8..0000000 --- a/src/app/sites/navbar/changelog/changelog.spec.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { ComponentFixture, TestBed } from '@angular/core/testing'; - -import { Changelog } from './changelog'; - -describe('Changelog', () => { - let component: Changelog; - let fixture: ComponentFixture; - - beforeEach(async () => { - await TestBed.configureTestingModule({ - imports: [Changelog] - }) - .compileComponents(); - - fixture = TestBed.createComponent(Changelog); - component = fixture.componentInstance; - fixture.detectChanges(); - }); - - it('should create', () => { - expect(component).toBeTruthy(); - }); -}); diff --git a/src/app/sites/navbar/changelog/changelog.ts b/src/app/sites/navbar/changelog/changelog.ts deleted file mode 100644 index 9802893..0000000 --- a/src/app/sites/navbar/changelog/changelog.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Component } from '@angular/core'; -import { CustomTitle } from "../../../components/custom-title/custom-title"; -import { RouterLink } from "@angular/router"; - -@Component({ - selector: 'app-changelog', - imports: [CustomTitle, RouterLink], - templateUrl: './changelog.html', - styleUrl: './changelog.css', -}) -export class Changelog { - -}