From 0e13243a77fa00ab57f95452c5ffa7192bf829a1 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Tue, 31 Mar 2026 12:53:01 -0500 Subject: [PATCH 01/43] added March 31st update to here --- updates.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/updates.html b/updates.html index a012188..94a528b 100644 --- a/updates.html +++ b/updates.html @@ -36,6 +36,12 @@

7Zeb Updates

Here are the updates from 7Zeb, listed from newest to oldest.


+

March 31, 2026 12:50 PM CDT

+

So as we know, March is almost over, and here are the updates we have so far. On March 29, 2026 we made big progress on the Windows 8 Upgrade Saga and we're able to get + 3 builds installed that day, the other things that have happened is the start of a new series on the channel called backlog.edit, the series is where I find old footage that + I had recorded but haven't edited, and then edit them and finally release them, so work on that is going on too. I've also gotten some of the videos done for the 2nd Easter + Upload Boom (which will be from April 1 - April 6, 2026).

+

March 24, 2026 7:12 AM CDT

Alright, so the site is now on NewUI 5, which is amazing. I've also fixed the issues with the Windows 8 Upgrade Saga and I've got all of it planned, anyways the video for Friday is already done and the videos for Saturday and Sunday are in the works (I think I'll have Saturday's video done by today hopefully and I'll record Sunday's video today) @@ -356,7 +362,7 @@

August 19, 2024 - 8:31 PM CT

From 410c6d5e21e295e838dba48ce3b304698a8116bb Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Tue, 31 Mar 2026 12:53:50 -0500 Subject: [PATCH 02/43] added the update to the homepage --- index.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index f065d7c..dc3b473 100644 --- a/index.html +++ b/index.html @@ -38,7 +38,7 @@

Major Announcements

Welcome to 7Zeb's Website

The official 7Zeb website

-

The site is on v787

+

The site is on v789

"The Saga Never Stops!" - said by 7Zeb (every day since June 15, 2025... probably)

@@ -58,10 +58,11 @@

Watch it now!

Lastest Update

This is the latest update from 7Zeb


-

March 24, 2026 7:12 AM CDT

-

Alright, so the site is now on NewUI 5, which is amazing. I've also fixed the issues with the Windows 8 Upgrade Saga and I've got all of it planned, anyways the video for - Friday is already done and the videos for Saturday and Sunday are in the works (I think I'll have Saturday's video done by today hopefully and I'll record Sunday's video today) - So yeah, pretty busy week but it's Tuesday and well I think I can get all this done on time.

+

March 31, 2026 12:50 PM CDT

+

So as we know, March is almost over, and here are the updates we have so far. On March 29, 2026 we made big progress on the Windows 8 Upgrade Saga and we're able to get + 3 builds installed that day, the other things that have happened is the start of a new series on the channel called backlog.edit, the series is where I find old footage that + I had recorded but haven't edited, and then edit them and finally release them, so work on that is going on too. I've also gotten some of the videos done for the 2nd Easter + Upload Boom (which will be from April 1 - April 6, 2026).


For all the updates go to the

From 29780cbc9030efb13cbf1bcffd17f8b338167a16 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Tue, 31 Mar 2026 12:57:47 -0500 Subject: [PATCH 03/43] switch to the newui.js file (will require code rewrites for most HTML pages) --- newui.js | 46 +++++++++++++++++++ required.js | 125 ---------------------------------------------------- 2 files changed, 46 insertions(+), 125 deletions(-) create mode 100644 newui.js delete mode 100644 required.js diff --git a/newui.js b/newui.js new file mode 100644 index 0000000..ccf49fc --- /dev/null +++ b/newui.js @@ -0,0 +1,46 @@ +//NewUI 5 JavaScript file +//This is REQUIRED for NewUI 5 to work proporly + +// DARK MODE TOGGLE +document.addEventListener('DOMContentLoaded', () => { + const modeToggle = document.querySelector('.mode-toggle'); + const body = document.body; + const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches; + function setMode(isDark) { + if(isDark) { + body.classList.add('dark-mode'); + modeToggle.textContent = 'Light Mode'; + } else { + body.classList.remove('dark-mode'); + modeToggle.textContent = 'Dark Mode'; + } + localStorage.setItem('theme', isDark ? 'dark' : 'light'); + } + const savedMode = localStorage.getItem('theme'); + setMode(savedMode === 'dark' || (!savedMode && prefersDark)); + modeToggle.addEventListener('click', () => { + setMode(!body.classList.contains('dark-mode')); + }); + + // Text carousel (HTML-editable) + const carousel = document.querySelector('.text-carousel'); + const contentElem = carousel.querySelector('.carousel-content'); + const items = Array.from(contentElem.querySelectorAll('span')); + const prevBtn = carousel.querySelector('.carousel-button.prev'); + const nextBtn = carousel.querySelector('.carousel-button.next'); + let index = 0; + function showCarousel(i) { + items.forEach((item, idx) => { + item.style.display = idx === i ? 'inline' : 'none'; + }); + } + showCarousel(index); + prevBtn.addEventListener('click', () => { + index = (index - 1 + items.length) % items.length; + showCarousel(index); + }); + nextBtn.addEventListener('click', () => { + index = (index + 1) % items.length; + showCarousel(index); + }); +}); diff --git a/required.js b/required.js deleted file mode 100644 index 4421bd7..0000000 --- a/required.js +++ /dev/null @@ -1,125 +0,0 @@ -//NewUI 4 JavaScript file -//This is REQUIRED for NewUI 4 to work proporly - - -// DARK MODE TOGGLE -document.addEventListener('DOMContentLoaded', () => { - const modeToggle = document.querySelector('.mode-toggle'); - const body = document.body; - const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches; - function setMode(isDark) { - if(isDark) { - body.classList.add('dark-mode'); - modeToggle.textContent = 'Light Mode'; - } else { - body.classList.remove('dark-mode'); - modeToggle.textContent = 'Dark Mode'; - } - localStorage.setItem('theme', isDark ? 'dark' : 'light'); - } - const savedMode = localStorage.getItem('theme'); - setMode(savedMode === 'dark' || (!savedMode && prefersDark)); - modeToggle.addEventListener('click', () => { - setMode(!body.classList.contains('dark-mode')); - }); - - // Text carousel (HTML-editable) - const carousel = document.querySelector('.text-carousel'); - const contentElem = carousel.querySelector('.carousel-content'); - const items = Array.from(contentElem.querySelectorAll('span')); - const prevBtn = carousel.querySelector('.carousel-button.prev'); - const nextBtn = carousel.querySelector('.carousel-button.next'); - let index = 0; - function showCarousel(i) { - items.forEach((item, idx) => { - item.style.display = idx === i ? 'inline' : 'none'; - }); - } - showCarousel(index); - prevBtn.addEventListener('click', () => { - index = (index - 1 + items.length) % items.length; - showCarousel(index); - }); - nextBtn.addEventListener('click', () => { - index = (index + 1) % items.length; - showCarousel(index); - }); -}); - -//non NewUI JS Calls - -//2-1 widget calls and function -async function checkYouTubeUploadToday() { - const apiKey = "AIzaSyBe67a0-qIYhodHBj7FfSF2K6PrHOW0MEQ"; - const channelId = "UCM4Zvt9DVqzAHJOJoCgcF_g"; - const today = new Date().toISOString().split("T")[0]; - - const url = `https://www.googleapis.com/youtube/v3/search?key=${apiKey}&channelId=${channelId}&part=snippet&order=date&maxResults=5`; - - try { - const response = await fetch(url); - const data = await response.json(); - - for (const item of data.items) { - const publishedDate = item.snippet.publishedAt.split("T")[0]; - if (publishedDate === today) { - return { - uploaded: true, - title: item.snippet.title, - time: item.snippet.publishedAt, - }; - } - } - } catch (error) { - console.error("YouTube API error:", error); - } - - return { uploaded: false }; -} - -async function updateStatusWidget() { - const result = await checkYouTubeUploadToday(); - const statusText = document.getElementById("statusText"); - - if (result.uploaded) { - statusText.textContent = "✅ Productive Day"; - statusText.style.color = "lime"; - statusText.title = `Uploaded: ${result.title} at ${new Date(result.time).toLocaleTimeString()}`; - } else { - statusText.textContent = "😴 Free Day"; - statusText.style.color = "gray"; - statusText.title = "No upload detected today"; - } -} - -document.addEventListener("DOMContentLoaded", updateStatusWidget); - -//the refresh times -const refreshTimes = [ - "00:00", "15:00", "16:00", "16:30", "17:00", "18:00", "23:00" -]; - -function scheduleRefreshes() { - const now = new Date(); - const localOffset = now.getTimezoneOffset() * 60000; - const utc6Offset = -6 * 60 * 60000; - - refreshTimes.forEach(time => { - const [hour, minute] = time.split(":").map(Number); - const target = new Date(now); - target.setUTCHours(hour + 6, minute, 0, 0); // Convert UTC-6 to local time - - const delay = target.getTime() - now.getTime(); - if (delay > 0) { - setTimeout(() => { - console.log(`⏱ Refreshing at ${time} UTC-6`); - updateStatusWidget(); - }, delay); - } - }); -} - -document.addEventListener("DOMContentLoaded", () => { - updateStatusWidget(); // Initial check - scheduleRefreshes(); // Schedule future checks -}); From 2086e543b146ae52875079b01d1617e9762222cf Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:15:54 -0500 Subject: [PATCH 04/43] testing --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index dc3b473..4fc7e9c 100644 --- a/index.html +++ b/index.html @@ -39,6 +39,7 @@

Major Announcements

Welcome to 7Zeb's Website

The official 7Zeb website

The site is on v789

+

This is a test of the NewUI v5.1.0 update

"The Saga Never Stops!" - said by 7Zeb (every day since June 15, 2025... probably)

From 8cc1dfd47a26a418ca6e8b35b5ed426de02ebe41 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:42:00 -0500 Subject: [PATCH 05/43] homepage --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 4fc7e9c..ba0a388 100644 --- a/index.html +++ b/index.html @@ -109,8 +109,8 @@

This site is open source

- + From 7ebed53313eaf452a05ec155a36b4f12ac55a554 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:42:29 -0500 Subject: [PATCH 06/43] updates --- updates.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/updates.html b/updates.html index 94a528b..a5af1a0 100644 --- a/updates.html +++ b/updates.html @@ -362,8 +362,8 @@

August 19, 2024 - 8:31 PM CT

- + From fe79e865df062b2cf2d8b41fcc095b527260acbc Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:43:02 -0500 Subject: [PATCH 07/43] tos --- tos.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tos.html b/tos.html index 798b204..0dd5b79 100644 --- a/tos.html +++ b/tos.html @@ -52,8 +52,8 @@

Infobox

- + From c6653836a34bc799f342b1c8220c1c65e458c87b Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:43:23 -0500 Subject: [PATCH 08/43] Update blog.html --- blog.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blog.html b/blog.html index 4a11c8c..65c9bce 100644 --- a/blog.html +++ b/blog.html @@ -79,8 +79,8 @@

Infobox

- + From 786c902781e0e9cf6e08fbbcdc74a6e289b6d847 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:43:57 -0500 Subject: [PATCH 09/43] Update games.html --- games.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/games.html b/games.html index 4625b99..43c15bf 100644 --- a/games.html +++ b/games.html @@ -76,10 +76,9 @@

Upcoming 7Zeb Events

- + From 768582ebf1cc73f66afab7af07ba1b0c0a98e94e Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:44:55 -0500 Subject: [PATCH 10/43] Update 404.html --- 404.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/404.html b/404.html index 64c4bf9..2e4b46a 100644 --- a/404.html +++ b/404.html @@ -92,8 +92,8 @@

This site is open source

- + From 57c0a8a1405f8cc3acca1e9004af2eeb3baeee72 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:45:29 -0500 Subject: [PATCH 11/43] add the new file --- me.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/me.html b/me.html index 617593f..e67b000 100644 --- a/me.html +++ b/me.html @@ -82,8 +82,8 @@

Retired on NMDA (Not my Device Anymore) devices:

- + From 85b43f2dd49c64caf3759d3824d64343029354d5 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:46:06 -0500 Subject: [PATCH 12/43] Update more.html --- more.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/more.html b/more.html index 0cf2444..d50bf6e 100644 --- a/more.html +++ b/more.html @@ -59,6 +59,6 @@

Upcoming 7Zeb Events

- + From 42ad11aebf006452069f39dcff425759245bd8be Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:46:35 -0500 Subject: [PATCH 13/43] 800!!!! --- template.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template.html b/template.html index dd08e4a..79899c0 100644 --- a/template.html +++ b/template.html @@ -52,8 +52,8 @@

Enter text here

- + From 92fbabbf8d9765bcb25d31e88757bbae3940fec2 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:48:25 -0500 Subject: [PATCH 14/43] Update dell-inspiron-3535.html --- about/dell-inspiron-3535.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/about/dell-inspiron-3535.html b/about/dell-inspiron-3535.html index f1e6a3e..2700e47 100644 --- a/about/dell-inspiron-3535.html +++ b/about/dell-inspiron-3535.html @@ -98,10 +98,9 @@

Infobox

- + From 39ddecff8417b63bb258382e3c74590bff16e123 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:48:45 -0500 Subject: [PATCH 15/43] Update dell-inspiron-5566.html --- about/dell-inspiron-5566.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/about/dell-inspiron-5566.html b/about/dell-inspiron-5566.html index f3fa49c..a473070 100644 --- a/about/dell-inspiron-5566.html +++ b/about/dell-inspiron-5566.html @@ -73,6 +73,6 @@

Future Featured Videos (maybe)

- + From a78ba735cc9dc78c3ed37f77851a04064fe4f6a9 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:49:19 -0500 Subject: [PATCH 16/43] now we are updating pages to NewUI 5 --- about/dell-precision-5560.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/about/dell-precision-5560.html b/about/dell-precision-5560.html index 86b402a..3812ee6 100644 --- a/about/dell-precision-5560.html +++ b/about/dell-precision-5560.html @@ -84,10 +84,9 @@

Important Specs

- + From 088da5cdf4b21cd540071d6947ce01ce17d6037f Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:49:41 -0500 Subject: [PATCH 17/43] what on earth was dark.js --- about/lenovo-ideapad-flex-14.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/about/lenovo-ideapad-flex-14.html b/about/lenovo-ideapad-flex-14.html index e6e40f9..1a756dc 100644 --- a/about/lenovo-ideapad-flex-14.html +++ b/about/lenovo-ideapad-flex-14.html @@ -87,8 +87,8 @@

Future Featured Videos (maybe)

- + From aabe15a0602fd2376c2a8544d583096cba575bdf Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:50:06 -0500 Subject: [PATCH 18/43] delete this page since I'm probably not getting it --- about/rutwik-g1-ultra.html | 58 -------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 about/rutwik-g1-ultra.html diff --git a/about/rutwik-g1-ultra.html b/about/rutwik-g1-ultra.html deleted file mode 100644 index bc1870d..0000000 --- a/about/rutwik-g1-ultra.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - 7Zeb - Rutwik G1 Ultra Plan - - - - - - - -
-

WARNING:

-

This page is not finished yet and is still under construction, it might take a while actually

-
- -
-

Countdown for the Rutwik G1 Ultra

- - Rutwik G1 Ultra Build Day94 Days Remain until PC Build Day

-
- -
-

Phases

-

These are all the different phases in the build plan.

-
-

Planning Phase: February - June 2025

-

The planning phase was the start of the project, when I decided the first parts of the build.

-
- -

Post-Planning: July - November 2025

-

This is the phase where I check prices and wait for Black Friday, this is the current phase of the build. Oh and saving up the money that the PC will take up.

-
- - - - - From 1fdd35174d291531e0b1059909d78128ae4667f8 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:52:22 -0500 Subject: [PATCH 19/43] who thought the Windows 10 Upgrade Saga page would get updates in 2026 --- windows/10/upgradesaga.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/windows/10/upgradesaga.html b/windows/10/upgradesaga.html index 1020742..1927497 100644 --- a/windows/10/upgradesaga.html +++ b/windows/10/upgradesaga.html @@ -111,10 +111,9 @@

Upcoming 7Zeb Events

- + From 1259434730a53a9ba450dd5a81fd861f9ad95df2 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:52:54 -0500 Subject: [PATCH 20/43] annnnd yeah --- windows/8/upgradesaga.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/8/upgradesaga.html b/windows/8/upgradesaga.html index ff05494..783d61c 100644 --- a/windows/8/upgradesaga.html +++ b/windows/8/upgradesaga.html @@ -88,8 +88,8 @@

Attempt 5

- + From 350ccfae061f3cde466ccde4815ebf7c6892e94f Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 1 Apr 2026 07:53:29 -0500 Subject: [PATCH 21/43] final version v808 ready to merge --- index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/index.html b/index.html index ba0a388..bfaa778 100644 --- a/index.html +++ b/index.html @@ -38,8 +38,7 @@

Major Announcements

Welcome to 7Zeb's Website

The official 7Zeb website

-

The site is on v789

-

This is a test of the NewUI v5.1.0 update

+

The site is on v808

"The Saga Never Stops!" - said by 7Zeb (every day since June 15, 2025... probably)

From a8d176ff69ccc3bf28ba6ae3e14560fbca567805 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Thu, 2 Apr 2026 07:27:45 -0500 Subject: [PATCH 22/43] 2nd Easter Upload Boom Day 2 --- index.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index bfaa778..71c29f7 100644 --- a/index.html +++ b/index.html @@ -31,6 +31,7 @@

Major Announcements

@@ -38,7 +39,7 @@

Major Announcements

Welcome to 7Zeb's Website

The official 7Zeb website

-

The site is on v808

+

The site is on v810

"The Saga Never Stops!" - said by 7Zeb (every day since June 15, 2025... probably)

@@ -49,7 +50,7 @@

Newest Video

7Zeb's Newest Video is: "Get Yeeted into Milestone 2" - Exploring Windows 8 Build 7957

Watch it now!

-

Currently 711 Subscribers (+1 Since Last Update)

+

Currently 714 Subscribers (+3 Since Last Update)

Go to 7Zeb's Channel

@@ -108,7 +109,7 @@

This site is open source

From a1500cc5cf39c33753042f90348e4c298697223f Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Thu, 9 Apr 2026 07:21:36 -0500 Subject: [PATCH 23/43] content update --- index.html | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 71c29f7..c34f471 100644 --- a/index.html +++ b/index.html @@ -31,7 +31,6 @@

Major Announcements

@@ -39,7 +38,7 @@

Major Announcements

Welcome to 7Zeb's Website

The official 7Zeb website

-

The site is on v810

+

The site is on v811

"The Saga Never Stops!" - said by 7Zeb (every day since June 15, 2025... probably)

@@ -50,7 +49,7 @@

Newest Video

7Zeb's Newest Video is: "Get Yeeted into Milestone 2" - Exploring Windows 8 Build 7957

Watch it now!

-

Currently 714 Subscribers (+3 Since Last Update)

+

Currently 725 Subscribers (+11 Since Last Update)

Go to 7Zeb's Channel

@@ -81,7 +80,7 @@

Today's Status:

Windows 8 Upgrade Saga News

-

Current Build: On Build 7871

+

Current Build: On Build 7878

@@ -109,7 +108,7 @@

This site is open source

From 4ea06f9815071fcb9ff603f86cc38bc917c6957c Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Thu, 9 Apr 2026 10:50:47 -0500 Subject: [PATCH 24/43] we're waiting for 7889 --- windows/8/upgradesaga.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/windows/8/upgradesaga.html b/windows/8/upgradesaga.html index 783d61c..105c604 100644 --- a/windows/8/upgradesaga.html +++ b/windows/8/upgradesaga.html @@ -74,7 +74,10 @@

Attempt 5

  • Windows 8 Build 7850: INSTALLED (March 29, 2026)
  • Windows 8 Build 7822: FAILED
  • Windows 8 Build 7871: INSTALLED (March 29, 2026)
  • -
  • Windows 8 Build 7875: waiting...
  • +
  • Windows 8 Build 7875: INSTALLED (April 2, 2026)
  • +
  • Windows 8 Build 7902: FAILED
  • +
  • Windows 8 Build 7878: INSTALLED (April 5, 2026)
  • +
  • Windows 8 Build 7889: waiting...
  • @@ -88,7 +91,7 @@

    Attempt 5

    From c3dcfd4941ea71709cf9823db2594d7e89396460 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Fri, 17 Apr 2026 07:13:01 -0500 Subject: [PATCH 25/43] more subscribers, and were on a new build for the Windows 8 Upgrade Saga --- index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index c34f471..90b86ce 100644 --- a/index.html +++ b/index.html @@ -38,7 +38,7 @@

    Major Announcements

    Welcome to 7Zeb's Website

    The official 7Zeb website

    -

    The site is on v811

    +

    The site is on v813

    "The Saga Never Stops!" - said by 7Zeb (every day since June 15, 2025... probably)

    @@ -49,7 +49,7 @@

    Newest Video

    7Zeb's Newest Video is: "Get Yeeted into Milestone 2" - Exploring Windows 8 Build 7957

    Watch it now!

    -

    Currently 725 Subscribers (+11 Since Last Update)

    +

    Currently 727 Subscribers (+2 Since Last Update)

    Go to 7Zeb's Channel

    @@ -80,7 +80,7 @@

    Today's Status:

    Windows 8 Upgrade Saga News

    -

    Current Build: On Build 7878

    +

    Current Build: On Build 7880

    @@ -108,7 +108,7 @@

    This site is open source

    From 9f9407e4bfcb15b9855bcf3f492601f12871f4c4 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Fri, 17 Apr 2026 07:13:51 -0500 Subject: [PATCH 26/43] we at 7880 now --- windows/8/upgradesaga.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/8/upgradesaga.html b/windows/8/upgradesaga.html index 105c604..b82c540 100644 --- a/windows/8/upgradesaga.html +++ b/windows/8/upgradesaga.html @@ -77,7 +77,7 @@

    Attempt 5

  • Windows 8 Build 7875: INSTALLED (April 2, 2026)
  • Windows 8 Build 7902: FAILED
  • Windows 8 Build 7878: INSTALLED (April 5, 2026)
  • -
  • Windows 8 Build 7889: waiting...
  • +
  • Windows 8 Build 7880: INSTALLED (April 12, 2026)
  • @@ -91,7 +91,7 @@

    Attempt 5

    From 3412c8e9766a542207da8bba993654a7c15d52a2 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Fri, 17 Apr 2026 07:14:27 -0500 Subject: [PATCH 27/43] bump up version number --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 90b86ce..312a7ae 100644 --- a/index.html +++ b/index.html @@ -38,7 +38,7 @@

    Major Announcements

    Welcome to 7Zeb's Website

    The official 7Zeb website

    -

    The site is on v813

    +

    The site is on v815

    "The Saga Never Stops!" - said by 7Zeb (every day since June 15, 2025... probably)

    From 968c1fb40756fd0623cbe434b945c87db22287d6 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 22 Apr 2026 08:31:47 -0500 Subject: [PATCH 28/43] yeah ykw we should get an update --- updates.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/updates.html b/updates.html index a5af1a0..2e4ad32 100644 --- a/updates.html +++ b/updates.html @@ -36,6 +36,10 @@

    7Zeb Updates

    Here are the updates from 7Zeb, listed from newest to oldest.


    +

    April 22, 2026 8:30 AM CDT

    +

    Well not many things are happening, I'll say that, every time I try working on videos, I get distracted doing something else, I will say there is a video in the works + along with some Exploring videos, so that's good I guess.

    +

    March 31, 2026 12:50 PM CDT

    So as we know, March is almost over, and here are the updates we have so far. On March 29, 2026 we made big progress on the Windows 8 Upgrade Saga and we're able to get 3 builds installed that day, the other things that have happened is the start of a new series on the channel called backlog.edit, the series is where I find old footage that @@ -362,7 +366,7 @@

    August 19, 2024 - 8:31 PM CT

    From 1efa47ea6306b608cd34af4027b03d3e64f14ff5 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Wed, 22 Apr 2026 08:32:29 -0500 Subject: [PATCH 29/43] add the new update to the homepage --- index.html | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index 312a7ae..0869231 100644 --- a/index.html +++ b/index.html @@ -38,7 +38,7 @@

    Major Announcements

    Welcome to 7Zeb's Website

    The official 7Zeb website

    -

    The site is on v815

    +

    The site is on v817

    "The Saga Never Stops!" - said by 7Zeb (every day since June 15, 2025... probably)

    @@ -58,11 +58,9 @@

    Watch it now!

    Lastest Update

    This is the latest update from 7Zeb


    -

    March 31, 2026 12:50 PM CDT

    -

    So as we know, March is almost over, and here are the updates we have so far. On March 29, 2026 we made big progress on the Windows 8 Upgrade Saga and we're able to get - 3 builds installed that day, the other things that have happened is the start of a new series on the channel called backlog.edit, the series is where I find old footage that - I had recorded but haven't edited, and then edit them and finally release them, so work on that is going on too. I've also gotten some of the videos done for the 2nd Easter - Upload Boom (which will be from April 1 - April 6, 2026).

    +

    April 22, 2026 8:30 AM CDT

    +

    Well not many things are happening, I'll say that, every time I try working on videos, I get distracted doing something else, I will say there is a video in the works + along with some Exploring videos, so that's good I guess.


    For all the updates go to the

    @@ -108,7 +106,7 @@

    This site is open source

    From de38231a8c0d00c14d24a7927ec7a54be71e84c6 Mon Sep 17 00:00:00 2001 From: 7Zeb <66693249+7zeb@users.noreply.github.com> Date: Tue, 28 Apr 2026 11:12:32 -0500 Subject: [PATCH 30/43] added a new event to the infobox --- infobox.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/infobox.js b/infobox.js index d3519a5..d651a35 100644 --- a/infobox.js +++ b/infobox.js @@ -13,8 +13,7 @@ document.addEventListener("DOMContentLoaded", function () {

    Upcoming 7Zeb Events

    These are a list of some upcoming 7Zeb Events