Skip to content

Commit

Permalink
1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ReStartQ committed Jan 18, 2024
1 parent a70bcf0 commit de141f1
Show file tree
Hide file tree
Showing 13 changed files with 34 additions and 28 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.4

- Changed color of scrollbar back to blue.
- Added some spacing for the update button in grid view for a cleaner look.
- Lowered the overscanning number for virtualizition in list view to help with smoother scrolling.

## 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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ You can download the app [here](https://github.com/ReStartQ/AniCour/releases). C

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.3.exe**
<br/> **Ex: AniCour-Setup-1.4.4.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
32 changes: 16 additions & 16 deletions 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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"is-online": "^10.0.0",
"jotai": "^2.4.2",
"lodash": "^4.17.21",
"material-react-table": "^2.1.0",
"material-react-table": "^2.6.1",
"moment": "^2.29.4",
"mui-nested-menu": "^3.2.2",
"react": "^18.2.0",
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.3",
"version": "1.4.4",
"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
2 changes: 1 addition & 1 deletion src/renderer/components/app/main/MediaCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ export default function MediaCard({ props }: any) {
)}
<Button
size="small"
sx={{ gridColumn: '1/3', textTransform: 'none' }}
sx={{ gridColumn: '1/3', textTransform: 'none', my: '5px' }}
variant="outlined"
onClick={handleUpdate}
>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/app/main/tables/MainMediaTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ export default function MainMediaTable({ props }: any) {
density: 'compact',
},
rowVirtualizerInstanceRef, // optional
rowVirtualizerOptions: { overscan: 5 }, // optionally customize the virtualizer
rowVirtualizerOptions: { overscan: 2 }, // optionally customize the virtualizer
});

return <MaterialReactTable table={myTable} />;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default function MediaMuiReactTable({ props }: any) {
density: 'compact',
}}
rowVirtualizerInstanceRef={rowVirtualizerInstanceRef} // optional
rowVirtualizerOptions={{ overscan: 8 }} // optionally customize the virtualizer
rowVirtualizerOptions={{ overscan: 2 }} // optionally customize the virtualizer
/>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/app/search/FilterSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function FilterSelect() {
<Box sx={{ ml: '3px' }}>
<Tooltip
title={
filterType === 'All' ? 'Filter by:' : `Filtered by: ${filterType}`
filterType === 'All' ? 'Filter by' : `Filtered by: ${filterType}`
}
arrow
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@ export default function SearchMediaTable({ props }: any) {
density: 'compact',
},
rowVirtualizerInstanceRef, // optional
rowVirtualizerOptions: { overscan: 5 }, // optionally customize the virtualizer
rowVirtualizerOptions: { overscan: 2 }, // optionally customize the virtualizer
});

return <MaterialReactTable table={myTable} />;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ export default function SeasonMediaTable({ props }: any) {
density: 'compact',
},
rowVirtualizerInstanceRef, // optional
rowVirtualizerOptions: { overscan: 5 }, // optionally customize the virtualizer
rowVirtualizerOptions: { overscan: 2 }, // optionally customize the virtualizer
});

return <MaterialReactTable table={myTable} />;
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: lightslategrey;
background-color: deepskyblue;
border-radius: 3px;
}

Expand Down

0 comments on commit de141f1

Please sign in to comment.