Skip to content

Releases: yaa110/nomino

v1.6.0

18 Jan 13:42
3bd3259
Compare
Choose a tag to compare
  • 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

15 Jan 12:48
Compare
Choose a tag to compare
  • Windows: use the \\ as the primary path separator

v1.5.1

15 Jan 12:45
27304c1
Compare
Choose a tag to compare
use the '/' character as the primary separator on Windows as well (#24)

v1.5.0

13 Jan 17:45
Compare
Choose a tag to compare

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

29 Dec 10:21
Compare
Choose a tag to compare
update dependencies and version

v1.3.7

01 Dec 22:17
Compare
Choose a tag to compare
version: 1.3.7

v1.3.6

22 Nov 18:25
Compare
Choose a tag to compare
update github actions

v1.3.5

06 Jun 13:13
Compare
Choose a tag to compare
README: remove arch linux aur

v1.3.4

07 Apr 00:08
Compare
Choose a tag to compare
rename master branch to main

v1.3.3

29 Oct 21:38
Compare
Choose a tag to compare
update dependencies