Skip to content

Commit c898dbb

Browse files
committed
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 parent 8590646 commit c898dbb

File tree

14 files changed

+122
-112
lines changed

14 files changed

+122
-112
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changes
22

3+
## 1.5.7
4+
5+
- 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+".
6+
- Changed label for "Plan to Watch/Plan to Read" into "Planning".
7+
- Fixed a bug that showed media that was in the "All" tab incorrectly showing the rewatch/reread icon.
8+
39
## 1.5.6
410

511
- Swapped delete and cancel button for the delete modal to be consistent with the other modals. (Primary first, Cancel second)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ _Note:_
3434
**This app does not have a code signing certificate and will give a warning message on installation.**
3535

3636
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.
37-
<br> **Example: AniCour-Setup-1.5.6.exe**
37+
<br> **Example: AniCour-Setup-1.5.7.exe**
3838
<br> _Some browsers may give a warning when downloading the setup file as it does not use a code signing certificate._
3939
<br> _In this case, to allow the download use the alternate option they provide. (Example: keep file)_
4040
2. Run the setup file, Windows will give a message like below, click on **"More info"** <p align="center"><a href="https://raw.githubusercontent.com/restartq/anicour/main/images/help/AniCourNoCodeSigningInitial.png"><img src="https://raw.githubusercontent.com/restartq/anicour/main/images/help/AniCourNoCodeSigningInitial.png" height="280"/></a></p>

help/InstallHelp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You can download the app [here](https://github.com/ReStartQ/AniCour/releases).
66

77
1. Download the setup file from the latest release and install it on your computer.
88
2. The setup file is labeled as AniCour-Setup-x.x.x.exe, where x denotes a number for the version.
9-
**Ex: AniCour-Setup-1.5.6.exe**
9+
**Ex: AniCour-Setup-1.5.7.exe**
1010
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://raw.githubusercontent.com/restartq/anicour/main/images/help/AniCourNoCodeSigningInitial.png" /></a></p>
1111
4. A new option will appear, "Run anyway". Click on it. <p align="center"><a href="#"><img src="https://raw.githubusercontent.com/restartq/anicour/main/images/help/AniCourNoCodeSigning.png" /></a></p>
1212
5. The installer menu will open up to allow you to install it on your computer. <p align="center"><a href="#"><img src="https://raw.githubusercontent.com/restartq/anicour/main/images/help/AniCourInstallationMenu2.png" /></a></p>

release/app/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "anicour",
3-
"version": "1.5.6",
3+
"version": "1.5.7",
44
"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. ",
55
"license": "GPL-3.0",
66
"author": {

src/renderer/components/app/etc/table/TableTitleMain.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ const TableTitleMain = ({ row }: any) => {
2222
) : null}
2323
{(row.mediaListEntry.repeat > 0 ||
2424
row.mediaListEntry.completedAt.year !== null) &&
25-
myCategory.category !== 1 ? (
25+
myCategory.category !== 1 &&
26+
myCategory.category !== 5 ? (
2627
<HtmlTooltip
2728
title={mySidebar.sidebar === 0 ? 'Rewatching' : 'Rereading'}
2829
>

src/renderer/components/app/main/MainCategoryBar.tsx

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
101101
size="sm"
102102
variant="outlined"
103103
color={myCategory.category === 0 ? 'primary' : 'neutral'}
104-
sx={{ ml: 0.5 }}
104+
sx={{ ml: 1 }}
105105
>
106106
0
107107
</Chip>
@@ -120,7 +120,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
120120
size="sm"
121121
variant="outlined"
122122
color={myCategory.category === 1 ? 'primary' : 'neutral'}
123-
sx={{ ml: 0.5 }}
123+
sx={{ ml: 1 }}
124124
>
125125
0
126126
</Chip>
@@ -139,7 +139,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
139139
size="sm"
140140
variant="outlined"
141141
color={myCategory.category === 2 ? 'primary' : 'neutral'}
142-
sx={{ ml: 0.5 }}
142+
sx={{ ml: 1 }}
143143
>
144144
0
145145
</Chip>
@@ -158,7 +158,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
158158
size="sm"
159159
variant="outlined"
160160
color={myCategory.category === 3 ? 'primary' : 'neutral'}
161-
sx={{ ml: 0.5 }}
161+
sx={{ ml: 1 }}
162162
>
163163
0
164164
</Chip>
@@ -182,23 +182,23 @@ const MainCategoryBar = memo(({ listValue }: any) => {
182182
fontWeight="bold"
183183
color={myCategory.category === 4 ? 'primary' : 'neutral'}
184184
>
185-
Plan to Watch
185+
Planning
186186
</Typography>
187187
) : (
188188
<Typography
189189
fontSize={12}
190190
fontWeight="bold"
191191
color={myCategory.category === 4 ? 'primary' : 'neutral'}
192192
>
193-
Plan to Read
193+
Planning
194194
</Typography>
195195
)}
196196
<ListItemDecorator>
197197
<Chip
198198
size="sm"
199199
variant="outlined"
200200
color={myCategory.category === 4 ? 'primary' : 'neutral'}
201-
sx={{ ml: 0.5 }}
201+
sx={{ ml: 1 }}
202202
>
203203
0
204204
</Chip>
@@ -218,7 +218,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
218218
size="sm"
219219
variant="outlined"
220220
color={myCategory.category === 5 ? 'primary' : 'neutral'}
221-
sx={{ ml: 0.5 }}
221+
sx={{ ml: 1 }}
222222
>
223223
0
224224
</Chip>
@@ -306,7 +306,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
306306
<Chip
307307
size="sm"
308308
variant="outlined"
309-
sx={{ ml: 0.5 }}
309+
sx={{ ml: 1 }}
310310
color={
311311
myCategory.category === 0
312312
? getCategoryColor(myFilter.filter)
@@ -343,7 +343,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
343343
? getCategoryColor(myFilter.filter)
344344
: 'neutral'
345345
}
346-
sx={{ ml: 0.5 }}
346+
sx={{ ml: 1 }}
347347
>
348348
<FilterCount
349349
sidebar={mySidebarValue.sidebar}
@@ -375,7 +375,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
375375
? getCategoryColor(myFilter.filter)
376376
: 'neutral'
377377
}
378-
sx={{ ml: 0.5 }}
378+
sx={{ ml: 1 }}
379379
>
380380
<FilterCount
381381
sidebar={mySidebarValue.sidebar}
@@ -407,7 +407,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
407407
? getCategoryColor(myFilter.filter)
408408
: 'neutral'
409409
}
410-
sx={{ ml: 0.5 }}
410+
sx={{ ml: 1 }}
411411
>
412412
<FilterCount
413413
sidebar={mySidebarValue.sidebar}
@@ -440,7 +440,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
440440
: 'neutral'
441441
}
442442
>
443-
Plan to Watch
443+
Planning
444444
</Typography>
445445
) : (
446446
<Typography
@@ -452,7 +452,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
452452
: 'neutral'
453453
}
454454
>
455-
Plan to Read
455+
Planning
456456
</Typography>
457457
)}
458458
<ListItemDecorator>
@@ -464,10 +464,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
464464
? getCategoryColor(myFilter.filter)
465465
: 'neutral'
466466
}
467-
sx={{
468-
ml: 0.5,
469-
// borderColor: myFilter === '' ? 'neutral' : 'warning.400',
470-
}}
467+
sx={{ ml: 1 }}
471468
>
472469
<FilterCount
473470
sidebar={mySidebarValue.sidebar}
@@ -500,7 +497,7 @@ const MainCategoryBar = memo(({ listValue }: any) => {
500497
? getCategoryColor(myFilter.filter)
501498
: 'neutral'
502499
}
503-
sx={{ ml: 0.5 }}
500+
sx={{ ml: 1 }}
504501
>
505502
<FilterCount
506503
sidebar={mySidebarValue.sidebar}

src/renderer/components/app/main/MainFilterCategoryBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,15 @@ const MainFilterCategoryBar = memo(({ listValue }: any) => {
168168
fontWeight="bold"
169169
color={myCategory.category === 4 ? 'primary' : 'neutral'}
170170
>
171-
Plan to Watch
171+
Planning
172172
</Typography>
173173
) : (
174174
<Typography
175175
fontSize={12}
176176
fontWeight="bold"
177177
color={myCategory.category === 4 ? 'primary' : 'neutral'}
178178
>
179-
Plan to Read
179+
Planning
180180
</Typography>
181181
)}
182182
<ListItemDecorator>

src/renderer/components/app/main/MediaCard.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,8 @@ export default function MediaCard({ props }: any) {
357357
) : null}
358358
{(props.mediaListEntry.repeat > 0 ||
359359
props.mediaListEntry.completedAt.year !== null) &&
360-
myCategory.category !== 1 ? (
360+
myCategory.category !== 1 &&
361+
myCategory.category !== 5 ? (
361362
<Tooltip
362363
title={mySidebar.sidebar === 0 ? `Rewatching` : `Rereading`}
363364
arrow

src/renderer/components/app/main/MediaCardCompact.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ export default function MediaCardCompact({ props }: any) {
128128
) : null}
129129
{(props.mediaListEntry.repeat > 0 ||
130130
props.mediaListEntry.completedAt.year !== null) &&
131-
myCategory.category !== 1 ? (
131+
myCategory.category !== 1 &&
132+
myCategory.category !== 5 ? (
132133
<Tooltip
133134
title={mySidebar.sidebar === 0 ? `Rewatching` : `Rereading`}
134135
arrow

src/renderer/components/mediaAdvanced/entryInput/notOnList/AddToList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ export default function AddToList() {
118118
<Option value="DROPPED">Dropped</Option>
119119
<Option value="PLANNING">
120120
{myAdvancedMedia.advancedMedia.type === 'ANIME'
121-
? 'Plan to Watch'
122-
: 'Plan to Read'}
121+
? 'Planning'
122+
: 'Planning'}
123123
</Option>
124124
</Select>
125125
<Button

src/renderer/components/mediaAdvanced/entryInput/onList/StatusSelect.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ export default function StatusSelect() {
5353
<Option value="PAUSED">On Hold</Option>
5454
<Option value="DROPPED">Dropped</Option>
5555
{myAdvancedMedia.advancedMedia.type === 'ANIME' ? (
56-
<Option value="PLANNING">Plan to Watch</Option>
56+
<Option value="PLANNING">Planning</Option>
5757
) : (
58-
<Option value="PLANNING">Plan to Read</Option>
58+
<Option value="PLANNING">Planning</Option>
5959
)}
6060
</Select>
6161
</FormControl>

src/renderer/components/settings/app/DefaultStatus.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const DefaultStatus = () => {
3939
<option value="COMPLETED">Completed</option>
4040
<option value="PAUSED">On Hold</option>
4141
<option value="DROPPED">Dropped</option>
42-
<option value="PLANNING">Plan to Watch / Plan to Read</option>
42+
<option value="PLANNING">Planning</option>
4343
</NativeSelect>
4444
</FormControl>
4545
</Box>

0 commit comments

Comments
 (0)