diff --git a/src/seqta/utils/AboutMinecraftServer.ts b/src/seqta/utils/AboutMinecraftServer.ts index 158bf6c8..008ce90d 100644 --- a/src/seqta/utils/AboutMinecraftServer.ts +++ b/src/seqta/utils/AboutMinecraftServer.ts @@ -39,53 +39,18 @@ export function OpenMinecraftServerPopup() { let imagecont = document.createElement("div"); imagecont.classList.add("whatsnewImgContainer"); - let video = document.createElement("video"); - let source = document.createElement("source"); + let img = document.createElement("img"); + img.src = "https://raw.githubusercontent.com/Jones8683/BetterSEQTA-Plus/main/src/resources/server-image.png"; + img.classList.add("whatsnewImg"); - source.setAttribute( - "src", - "https://raw.githubusercontent.com/BetterSEQTA/BetterSEQTA-Plus/main/src/resources/update-video.mp4", - ); - video.autoplay = true; - video.muted = true; - video.loop = true; - video.appendChild(source); - video.classList.add("whatsnewImg"); - imagecont.appendChild(video); - - /* let whatsnewimg = document.createElement("img"); - //whatsnewimg.src = "https://raw.githubusercontent.com/BetterSEQTA/BetterSEQTA-Plus/main/src/resources/update-image.webp"; - whatsnewimg.src = browser.runtime.getURL('../../resources/update-image.webp'); - whatsnewimg.classList.add("whatsnewImg"); - imagecont.appendChild(whatsnewimg); */ + imagecont.appendChild(img); let textcontainer = document.createElement("div"); textcontainer.classList.add("whatsnewTextContainer"); let text = stringToHTML(/* html */ `
-

3.4.8 - Improvements!

-
  • Added new assessments kanban overview
  • > -
  • Fixed text colour of notices being unreadable
  • -
  • Fixed pages not reloading when saving changes
  • - -

    2.0.2 - Minor bug fixes

    -
  • Fixed indicator for current lesson
  • -
  • Fixed text colour for DM messages list in Light mode
  • -
  • Fixed user info text colour
  • - -

    Sleek New Layout

    -
  • Updated with a new font and presentation, BetterSEQTA+ has never looked better.
  • - -

    New Updated Sidebar

    -
  • Condensed appearance with new updated icons.
  • - -

    Independent Light Mode and Dark Mode

    -
  • Dark mode and Light mode are now available to pick alongside your chosen Theme Colour. Your Theme Colour will now become an accent colour for the page. - Light/Dark mode can be toggled with the new button, found in the top-right of the menu bar.
  • - -

    Create Custom Shortcuts

    -
  • Found in the BetterSEQTA+ Settings menu, custom shortcuts can now be created with a name and URL of your choice.
  • +

    Text to be here....

    `).firstChild;