From e8092e2b4342dc98e821f784b22484517ac32680 Mon Sep 17 00:00:00 2001 From: Igor Shubovych Date: Mon, 16 Feb 2026 17:06:15 +0200 Subject: [PATCH] Change year to 2026 --- .github/README.md | 2 +- LICENSE | 2 +- src/lib/components/page-specific/about/LicenseSection.svelte | 2 +- src/lib/constants/site.ts | 2 +- src/lib/seo/schema-generators.ts | 2 +- src/routes/+layout.svelte | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/README.md b/.github/README.md index ec6d3714..8ec0fec3 100644 --- a/.github/README.md +++ b/.github/README.md @@ -134,7 +134,7 @@ If you're new to GitHub or open source, take a look at [git-in.to](https://git-i

- © Alicia Sykes 2025
+ © Alicia Sykes 2026
Licensed under MIT

Thanks for visiting :) diff --git a/LICENSE b/LICENSE index 284444c2..96abb80c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2025 Alicia Sykes +Copyright (c) 2026 Alicia Sykes Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/lib/components/page-specific/about/LicenseSection.svelte b/src/lib/components/page-specific/about/LicenseSection.svelte index 48f6488c..d9645901 100644 --- a/src/lib/components/page-specific/about/LicenseSection.svelte +++ b/src/lib/components/page-specific/about/LicenseSection.svelte @@ -50,7 +50,7 @@

Full License

{/if}
-Copyright (c) 2025 Alicia Sykes [aliciasykes.com]
+Copyright (c) 2026 Alicia Sykes [aliciasykes.com]
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the "Software"), to deal in the
diff --git a/src/lib/constants/site.ts b/src/lib/constants/site.ts
index 12d35ea6..7b2157a7 100644
--- a/src/lib/constants/site.ts
+++ b/src/lib/constants/site.ts
@@ -23,7 +23,7 @@ export const about = {
 
 export const license = {
   name: 'MIT',
-  date: '2025',
+  date: '2026',
   holder: 'Alicia Sykes',
   ref: 'https://opensource.org/licenses/MIT',
   url: 'https://github.com/Lissy93/networking-toolbox/blob/main/LICENSE',
diff --git a/src/lib/seo/schema-generators.ts b/src/lib/seo/schema-generators.ts
index db499989..751bf298 100644
--- a/src/lib/seo/schema-generators.ts
+++ b/src/lib/seo/schema-generators.ts
@@ -16,7 +16,7 @@ export function generateWebSiteSchema() {
     description: site.description,
     url: site.url,
     inLanguage: 'en-US',
-    copyrightYear: '2025',
+    copyrightYear: '2026',
     copyrightHolder: {
       '@type': 'Person',
       name: author.name,
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte
index 5065f1d2..4b1d63b5 100644
--- a/src/routes/+layout.svelte
+++ b/src/routes/+layout.svelte
@@ -157,7 +157,7 @@
     // Console message
     console.log(
       `\n%c🧰 Networking Toolbox` +
-        '%c\nLicensed under MIT, © Alicia Sykes 2025.\nhttps://github.com/lissy93/networking-toolbox\n',
+        '%c\nLicensed under MIT, © Alicia Sykes 2026.\nhttps://github.com/lissy93/networking-toolbox\n',
       'color:#e3ed70; background:#21262d; font-size:1.6rem; padding:0.15rem 0.25rem; ' +
         'margin: 1rem auto 0.5rem auto; font-family: Helvetica; border: 2px solid #e3ed70; ' +
         'border-radius: 4px;font-weight: bold; text-shadow: 1px 1px 4px #000;',