Releases: yaa110/nomino
Releases · yaa110/nomino
v1.6.0
- Support named capture groups:
➜ nomino ".* S(?<season>\d+).E(?<episode>\d+).*" "S{season:2}E{episode:2}"
+-------------------------------+------------+
| Input | Output |
+-------------------------------+------------+
| Nomino (2020) S1.E1.1080p.mkv | S01E01.mkv |
| Nomino (2020) S1.E2.1080p.mkv | S01E02.mkv |
| Nomino (2020) S1.E3.1080p.mkv | S01E03.mkv |
| Nomino (2020) S1.E4.1080p.mkv | S01E04.mkv |
| Nomino (2020) S1.E5.1080p.mkv | S01E05.mkv |
+-------------------------------+------------+
?<season>
and ?<episode>
are named capture groups. S{season:2}E{episode:2}
is equivalent to S{:2}E{:2}
or S{1:2}E{2:2}
.
v1.5.2
- Windows: use the
\\
as the primary path separator
v1.5.1
use the '/' character as the primary separator on Windows as well (#24)
v1.5.0
Changelog
- remove
--extension
flag and add--no-extension
(the extension of output file is set by default now) - add
--from-file
alias for--map
- remove
--print
flag and add--quiet
(the output table is printed by default now)
v1.4.0
update dependencies and version
v1.3.7
version: 1.3.7
v1.3.6
update github actions
v1.3.5
README: remove arch linux aur
v1.3.4
rename master branch to main
v1.3.3
update dependencies