Skip to content

Commit

Permalink
1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ReStartQ committed Jan 15, 2024
1 parent dfe0775 commit a70bcf0
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
<br /> **_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._**
<br /> **_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._**
<br /> **_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.
<br/> **Ex: AniCour-Setup-1.4.2.exe**
<br/> **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" <p align="center"><a href="#"><img src="https://github.com/ReStartQ/anicour/blob/main/images/help/AniCourNoCodeSigningInitial.png" alt="Hello" /></a></p>
4. A new option will appear, "Run anyway". Click on it. <p align="center"><a href="#"><img src="https://github.com/ReStartQ/anicour/blob/main/images/help/AniCourNoCodeSigning.png" alt="Hello" /></a></p>
5. The installer menu will open up to allow you to install it on your computer. <p align="center"><a href="#"><img src="https://github.com/ReStartQ/anicour/blob/main/images/help/AniCourInstallationMenu2.png" alt="Hello" /></a></p>
Expand Down
4 changes: 2 additions & 2 deletions release/app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default function AddToList() {
slotProps={{
listbox: {
sx: {
maxHeight: 145,
maxHeight: 125,
overflow: 'auto', // required for scrolling
},
},
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/functions/sort/sortSeasonsFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/styles/App.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

*::-webkit-scrollbar-thumb {
// background-color: lightslategrey;
background-color: skyblue;
background-color: lightslategrey;
border-radius: 3px;
}

Expand Down

0 comments on commit a70bcf0

Please sign in to comment.