mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
bump(version): 3.4.3 + changelog
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "betterseqtaplus",
|
"name": "betterseqtaplus",
|
||||||
"version": "3.4.2",
|
"version": "3.4.3",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "Enhance SEQTA Learn's usability and aesthetics! A fork of BetterSEQTA to continue development, while incorporating a plethora of new and improved features!",
|
"description": "Enhance SEQTA Learn's usability and aesthetics! A fork of BetterSEQTA to continue development, while incorporating a plethora of new and improved features!",
|
||||||
"browserslist": "> 0.5%, last 2 versions, not dead",
|
"browserslist": "> 0.5%, last 2 versions, not dead",
|
||||||
@@ -69,7 +69,7 @@
|
|||||||
"@uiw/codemirror-theme-github": "^4.23.3",
|
"@uiw/codemirror-theme-github": "^4.23.3",
|
||||||
"@vitejs/plugin-react": "^4.3.1",
|
"@vitejs/plugin-react": "^4.3.1",
|
||||||
"autoprefixer": "^10.4.20",
|
"autoprefixer": "^10.4.20",
|
||||||
"caniuse-lite": "^1.0.30001684",
|
"caniuse-lite": "^1.0.30001696",
|
||||||
"classnames": "^2.5.1",
|
"classnames": "^2.5.1",
|
||||||
"codemirror": "^6.0.1",
|
"codemirror": "^6.0.1",
|
||||||
"color": "^4.2.3",
|
"color": "^4.2.3",
|
||||||
|
|||||||
+9
-5
@@ -165,6 +165,10 @@ export function OpenWhatsNewPopup() {
|
|||||||
/* html */ `
|
/* html */ `
|
||||||
<div class="whatsnewTextContainer" style="height: 50%;overflow-y: scroll;">
|
<div class="whatsnewTextContainer" style="height: 50%;overflow-y: scroll;">
|
||||||
|
|
||||||
|
<h1>3.4.3 - Minor Bug Fixes</h1>
|
||||||
|
<li>Fixed a bug where timetable colours couldn't be changed</li>
|
||||||
|
<li>Other minor bug fixes</li>
|
||||||
|
|
||||||
<h1>3.4.2 - Minor Bug Fixes</h1>
|
<h1>3.4.2 - Minor Bug Fixes</h1>
|
||||||
<li>Fixed a bug where Assessment Average wasn't enabled by default</li>
|
<li>Fixed a bug where Assessment Average wasn't enabled by default</li>
|
||||||
<li>Fixed floating menus would sometimes be placed behind other elements</li>
|
<li>Fixed floating menus would sometimes be placed behind other elements</li>
|
||||||
@@ -2197,10 +2201,10 @@ export async function loadHomePage() {
|
|||||||
|
|
||||||
const skeletonStructure = stringToHTML(/* html */`
|
const skeletonStructure = stringToHTML(/* html */`
|
||||||
<div class="home-container" id="home-container">
|
<div class="home-container" id="home-container">
|
||||||
<div class="shortcut-container border">
|
<div class="border shortcut-container">
|
||||||
<div class="shortcuts border" id="shortcuts"></div>
|
<div class="border shortcuts" id="shortcuts"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="timetable-container border">
|
<div class="border timetable-container">
|
||||||
<div class="home-subtitle">
|
<div class="home-subtitle">
|
||||||
<h2 id="home-lesson-subtitle">Today's Lessons</h2>
|
<h2 id="home-lesson-subtitle">Today's Lessons</h2>
|
||||||
<div class="timetable-arrows">
|
<div class="timetable-arrows">
|
||||||
@@ -2215,7 +2219,7 @@ export async function loadHomePage() {
|
|||||||
<div class="day-container loading" id="day-container">
|
<div class="day-container loading" id="day-container">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="upcoming-container border">
|
<div class="border upcoming-container">
|
||||||
<div class="upcoming-title">
|
<div class="upcoming-title">
|
||||||
<h2 class="home-subtitle">Upcoming Assessments</h2>
|
<h2 class="home-subtitle">Upcoming Assessments</h2>
|
||||||
<div class="upcoming-filters" id="upcoming-filters"></div>
|
<div class="upcoming-filters" id="upcoming-filters"></div>
|
||||||
@@ -2223,7 +2227,7 @@ export async function loadHomePage() {
|
|||||||
<div class="upcoming-items loading" id="upcoming-items">
|
<div class="upcoming-items loading" id="upcoming-items">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="notices-container border">
|
<div class="border notices-container">
|
||||||
<div style="display: flex; justify-content: space-between">
|
<div style="display: flex; justify-content: space-between">
|
||||||
<h2 class="home-subtitle">Notices</h2>
|
<h2 class="home-subtitle">Notices</h2>
|
||||||
<input type="date" />
|
<input type="date" />
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
@use "sass:meta";
|
@use "sass:meta";
|
||||||
@charset "UTF-8";
|
|
||||||
@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500,600");
|
@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500,600");
|
||||||
|
|
||||||
@include meta.load-css("injected/sidebar-animation.scss");
|
@include meta.load-css("injected/sidebar-animation.scss");
|
||||||
@@ -1879,6 +1878,9 @@ blurred {
|
|||||||
.uiSlidePane > .pane > .header {
|
.uiSlidePane > .pane > .header {
|
||||||
background: var(--better-main);
|
background: var(--better-main);
|
||||||
}
|
}
|
||||||
|
.modaliser-container {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
.content [placeholder="Subject…"] {
|
.content [placeholder="Subject…"] {
|
||||||
padding-left: 12px !important;
|
padding-left: 12px !important;
|
||||||
border-radius: 16px;
|
border-radius: 16px;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "BetterSEQTA+",
|
"name": "BetterSEQTA+",
|
||||||
"version": "3.4.2",
|
"version": "3.4.3",
|
||||||
"description": "Enhance SEQTA Learn's usability and aesthetics! A fork of BetterSEQTA to continue development add add heaps more features!",
|
"description": "Enhance SEQTA Learn's usability and aesthetics! A fork of BetterSEQTA to continue development add add heaps more features!",
|
||||||
"icons": {
|
"icons": {
|
||||||
"32": "resources/icons/icon-32.png",
|
"32": "resources/icons/icon-32.png",
|
||||||
|
|||||||
Reference in New Issue
Block a user