mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-16 19:41:26 +00:00
changelog removed
It's useless
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -1,59 +0,0 @@
|
||||
<div class="rounded-lg shadow-md px-6 max-w-2xl mx-auto">
|
||||
<div class="mb-8">
|
||||
<app-custom-title
|
||||
text="Changelog"
|
||||
[textSizeInPx]="36"
|
||||
fontWeight="bold"
|
||||
></app-custom-title>
|
||||
</div>
|
||||
|
||||
<div class="bg-zinc-800 rounded-lg shadow-md p-6 max-w-2xl mx-auto gap-4">
|
||||
<p>Changes that have been made:</p>
|
||||
|
||||
<div class="mt-4"> <!-- Version 0.3.0-->
|
||||
<app-custom-title
|
||||
text="Version 0.3.0"
|
||||
[textSizeInPx]="24"
|
||||
fontWeight="bold"
|
||||
></app-custom-title>
|
||||
<ul class="list-disc pl-10 mt-2 space-y-2 mt-2 text-gray-300">
|
||||
<li>Site remade in Angular 20</li>
|
||||
<li>Settings Tab removed</li>
|
||||
<li>Text in <a routerLink="/coming-soon" class="text-blue-500 hover:text-blue-600">Coming soon</a> changed</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="mt-4"><!-- Version 0.2.0 -->
|
||||
<app-custom-title
|
||||
text="Version 0.2.0"
|
||||
[textSizeInPx]="24"
|
||||
fontWeight="bold"
|
||||
></app-custom-title>
|
||||
<ul class="list-disc pl-10 mt-2 space-y-2 text-gray-300">
|
||||
<li>Added Settings and Changelog pages</li>
|
||||
<li>Color Converter added</li>
|
||||
<li>Enhanced QR code generator</li>
|
||||
<li>Currency converter added</li>
|
||||
<li>Number Converter added</li>
|
||||
<li>Scientific Calculator added</li>
|
||||
<li>Removed bookmarked websites feature</li>
|
||||
<li>Updated navigation structure</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="mt-4"> <!-- Version 0.1.0-->
|
||||
<app-custom-title
|
||||
text="Version 0.1.0"
|
||||
[textSizeInPx]="24"
|
||||
fontWeight="bold"
|
||||
></app-custom-title>
|
||||
<ul class="list-disc pl-10 mt-2 space-y-2 mt-2 text-gray-300">
|
||||
<li>Initial release</li>
|
||||
<li>Added basic tools: Password Generator, QR Code Generator</li>
|
||||
<li>Added converters: Number, Color, Currency</li>
|
||||
<li>Added Scientific Calculator</li>
|
||||
<li>Basic website layout and navigation</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { Changelog } from './changelog';
|
||||
|
||||
describe('Changelog', () => {
|
||||
let component: Changelog;
|
||||
let fixture: ComponentFixture<Changelog>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Changelog]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Changelog);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -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 {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user