From a7536f9a6685e0d13a587060dd5c8ad04a169427 Mon Sep 17 00:00:00 2001 From: webdev03 <75148774+webdev03@users.noreply.github.com> Date: Sun, 20 Feb 2022 20:55:29 +1300 Subject: [PATCH 01/70] remove fakecommit (use --allow-empty instead please) --- fakecommit | 1 - 1 file changed, 1 deletion(-) delete mode 100644 fakecommit diff --git a/fakecommit b/fakecommit deleted file mode 100644 index 6350475..0000000 --- a/fakecommit +++ /dev/null @@ -1 +0,0 @@ -0001 From ae172080b1df28dc17ef6a93d35d62b65e2a5bad Mon Sep 17 00:00:00 2001 From: webdev03 <75148774+webdev03@users.noreply.github.com> Date: Sun, 20 Feb 2022 20:55:57 +1300 Subject: [PATCH 02/70] remove body selector (in svelte it is scoped) --- src/App.svelte | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index 0c7bda3..9b72abc 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -92,9 +92,6 @@ /* button { border-radius: 5pt; } */ - body { - background-color: #0D1117; - } table { table-layout: fixed; border-collapse: collapse; From 00efc2c2cfbf9ff073434f40fa43c2846406d59d Mon Sep 17 00:00:00 2001 From: webdev03 <75148774+webdev03@users.noreply.github.com> Date: Sun, 20 Feb 2022 20:58:28 +1300 Subject: [PATCH 03/70] remove console log --- src/App.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/src/App.svelte b/src/App.svelte index 9b72abc..b1c5f52 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -8,7 +8,6 @@ }); const handleInput = (e) => { - console.log(e.target.value); if (!e.target.value) { osListImport.forEach((os, i) => { oslist[i].show = true; From cecedd3d2f5630245e8c7a62de89c12976c2e43f Mon Sep 17 00:00:00 2001 From: webdev03 <75148774+webdev03@users.noreply.github.com> Date: Sun, 20 Feb 2022 21:03:24 +1300 Subject: [PATCH 04/70] structure warnings --- src/App.svelte | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/App.svelte b/src/App.svelte index b1c5f52..0a1d0e5 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -22,13 +22,12 @@ }); }; -
MacOS Catalina hits EOL in 9 months
Windows 10 hits EOL in 3 years, Computer "can't" run Windows 11? There's a solution! here!
| Name | @@ -92,10 +91,7 @@ border-radius: 5pt; } */ table { - table-layout: fixed; - border-collapse: collapse; - border-spacing: 0; - width: fit-content; + overflow-x: scroll; } td, th { @@ -136,4 +132,11 @@ color: black; padding: 1pt; } + .warning { + background-color: crimson; + width: fit-content; + color: white; + padding: 5px; + border-radius: 5px; + } From 2c515222762a66830b68505b0b01c98bb0fbac4f Mon Sep 17 00:00:00 2001 From: webdev03 <75148774+webdev03@users.noreply.github.com> Date: Sun, 20 Feb 2022 21:28:50 +1300 Subject: [PATCH 05/70] make search bar fill screen (you forgot a colon) --- src/App.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.svelte b/src/App.svelte index 0a1d0e5..9b372c9 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -40,7 +40,7 @@ placeholder="Search OS" on:input={handleInput} style="color: black; - width 100%;" + width: 100%;" type="text" id="searchbox" name="searchbox" From b802f49980819c27b553b6478b85fddd6f107654 Mon Sep 17 00:00:00 2001 From: webdev03 <75148774+webdev03@users.noreply.github.com> Date: Sun, 20 Feb 2022 21:29:14 +1300 Subject: [PATCH 06/70] remove google forms link not allowed on scratch --- src/App.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/src/App.svelte b/src/App.svelte index 9b372c9..4f438a5 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -34,7 +34,6 @@
|---|
| Name | @@ -90,7 +90,10 @@ border-radius: 5pt; } */ table { - overflow-x: scroll; + table-layout: fixed; + border-collapse: collapse; + border-spacing: 0; + width: fit-content; } td, th { From b48076577f7b7a20c1952e565dd289668718fcc9 Mon Sep 17 00:00:00 2001 From: JaydenDev <92550746+JaydenDev@users.noreply.github.com> Date: Mon, 21 Feb 2022 08:38:06 -0600 Subject: [PATCH 11/70] Add analytics --- src/App.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App.svelte b/src/App.svelte index 0c7bda3..3ddef96 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -23,6 +23,8 @@ }); }; + +
|---|