Change migration match exclude/include icons

This commit is contained in:
schroda
2026-05-22 12:26:23 +02:00
parent 3a976f8e13
commit 5a97de6f54
2 changed files with 5 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- (**Migration**) Prevent a manual selected match from getting automatically overwritten by a new-found match - (**Migration**) Prevent a manual selected match from getting automatically overwritten by a new-found match
- (**Migration**) Abort active search when selecting a match through the manual search - (**Migration**) Abort active search when selecting a match through the manual search
- (**Migration**) Sort unselected matched entries by 1. their latest chapter, 2. their source priority, 3. their title - (**Migration**) Sort unselected matched entries by 1. their latest chapter, 2. their source priority, 3. their title
- (**Migration**) Change migration match exclude/include icons
### Fixed ### Fixed
@@ -41,8 +42,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- (**Reader**) Fix mobile progress bar previous/next chapter button visibility on hover and while disabled - (**Reader**) Fix mobile progress bar previous/next chapter button visibility on hover and while disabled
- (**Reader**) Fix jumping back to the first page on window resize - (**Reader**) Fix jumping back to the first page on window resize
- (**Reader**) Fix chapter not getting marked as read in continuous reading mode in case the last page is not big enough to get marked as the current page - (**Reader**) Fix chapter not getting marked as read in continuous reading mode in case the last page is not big enough to get marked as the current page
- (**Browse**) Fix showing only nsfw sources in the browse source page when the "show nsfw" setting is disabled
- (**Reader**) Fix infinite scrolling with disabled transition page - (**Reader**) Fix infinite scrolling with disabled transition page
- (**Browse**) Fix showing only nsfw sources in the browse source page when the "show nsfw" setting is disabled
## [20260509.01] (r3147) - 2026-05-09 ## [20260509.01] (r3147) - 2026-05-09

View File

@@ -22,6 +22,8 @@ import { plural } from '@lingui/core/macro';
import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; import ExpandMoreIcon from '@mui/icons-material/ExpandMore';
import ExpandLessIcon from '@mui/icons-material/ExpandLess'; import ExpandLessIcon from '@mui/icons-material/ExpandLess';
import ButtonGroup from '@mui/material/ButtonGroup'; import ButtonGroup from '@mui/material/ButtonGroup';
import RemoveCircleOutlineOutlinedIcon from '@mui/icons-material/RemoveCircleOutlineOutlined';
import AddCircleOutlineOutlinedIcon from '@mui/icons-material/AddCircleOutlineOutlined';
export const MigrationEntrySearchExcludeActions = ({ export const MigrationEntrySearchExcludeActions = ({
hasResults, hasResults,
@@ -85,7 +87,7 @@ export const MigrationEntrySearchExcludeActions = ({
isExcluded ? MigrationManager.includeManga(mangaId) : MigrationManager.excludeManga(mangaId) isExcluded ? MigrationManager.includeManga(mangaId) : MigrationManager.excludeManga(mangaId)
} }
> >
{isExcluded ? <AddIcon /> : <CloseIcon />} {isExcluded ? <AddCircleOutlineOutlinedIcon /> : <RemoveCircleOutlineOutlinedIcon />}
</CustomButtonIcon> </CustomButtonIcon>
</CustomTooltip> </CustomTooltip>
</ButtonGroup> </ButtonGroup>