diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8022667..b933f8d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changes
+## 1.4.3
+
+- Made the default descending sort for Next Airing Time be the earliest time to allow users to easily view the next airing seasonal anime.
+- Changed color of scrollbar to a grayish color.
+- Shortened the height of add to list select options.
+
## 1.4.2
- Made add to list select options go downward and scrollable.
diff --git a/README.md b/README.md
index 58b2dc3..3dab711 100644
--- a/README.md
+++ b/README.md
@@ -44,12 +44,12 @@ AniCour is an anime, manga, and light novel tracking app that helps you discover
## Download and Installation
You can download the app [here](https://github.com/ReStartQ/AniCour/releases). Check for the latest version.
-
**_Note: Some browsers may give a warning or block the download for the exe setup file as it does not have a code signing certificate._**
+
**_Note: Some browsers may give a warning or block the download for the exe setup file as it does not have a code signing certificate._**
**_Whenever you get a warning message in the browser, you will have to allow for the download with an alternate option that may show up as something like "download suspicious file" (chrome) or "keep file" (edge)._**
1. Download the setup file from the latest release and install it on your computer.
2. The setup file is labeled as AniCour-Setup-x.x.x.exe, where x denotes a number for the version.
-
**Ex: AniCour-Setup-1.4.2.exe**
+
**Ex: AniCour-Setup-1.4.3.exe**
3. When you run the exe file, Windows will give a message like below because there is no code signing certificate, click on "More info"
4. A new option will appear, "Run anyway". Click on it.
5. The installer menu will open up to allow you to install it on your computer.
diff --git a/release/app/package-lock.json b/release/app/package-lock.json
index 35fed3e..7eb4a1f 100644
--- a/release/app/package-lock.json
+++ b/release/app/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "anicour",
- "version": "1.4.2",
+ "version": "1.4.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "anicour",
- "version": "1.4.2",
+ "version": "1.4.3",
"hasInstallScript": true,
"license": "GPL-3.0"
}
diff --git a/release/app/package.json b/release/app/package.json
index c7f3f99..214f7a5 100644
--- a/release/app/package.json
+++ b/release/app/package.json
@@ -1,6 +1,6 @@
{
"name": "anicour",
- "version": "1.4.2",
+ "version": "1.4.3",
"description": "Anime, Manga, and Light Novel Tracker Desktop Application for Windows. A fast and interactive way for AniList users to track and manage their anime/manga lists. ",
"license": "GPL-3.0",
"author": {
diff --git a/src/renderer/components/mediaAdvanced/entryInput/notOnList/AddToList.tsx b/src/renderer/components/mediaAdvanced/entryInput/notOnList/AddToList.tsx
index bbf951b..93e8c24 100644
--- a/src/renderer/components/mediaAdvanced/entryInput/notOnList/AddToList.tsx
+++ b/src/renderer/components/mediaAdvanced/entryInput/notOnList/AddToList.tsx
@@ -100,7 +100,7 @@ export default function AddToList() {
slotProps={{
listbox: {
sx: {
- maxHeight: 145,
+ maxHeight: 125,
overflow: 'auto', // required for scrolling
},
},
diff --git a/src/renderer/functions/sort/sortSeasonsFunctions.ts b/src/renderer/functions/sort/sortSeasonsFunctions.ts
index 1bae82f..7947c10 100644
--- a/src/renderer/functions/sort/sortSeasonsFunctions.ts
+++ b/src/renderer/functions/sort/sortSeasonsFunctions.ts
@@ -22,9 +22,9 @@ export default function sortSeasons(
case 0:
return data;
case 1:
- return [...data].sort(sortByAiringDateDescending);
- case 1.5:
return [...data].sort(sortByAiringDateAscending);
+ case 1.5:
+ return [...data].sort(sortByAiringDateDescending);
case 2:
return [...data].sort(sortByStatusAscending);
case 2.5:
diff --git a/src/renderer/styles/App.scss b/src/renderer/styles/App.scss
index a57b27c..40940fe 100644
--- a/src/renderer/styles/App.scss
+++ b/src/renderer/styles/App.scss
@@ -20,7 +20,7 @@
*::-webkit-scrollbar-thumb {
// background-color: lightslategrey;
- background-color: skyblue;
+ background-color: lightslategrey;
border-radius: 3px;
}