propre 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -0
- data/lib/propre/dictionary.rb +9 -0
- data/lib/propre/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 59e73b3c77d714f30ebd5a6efde4286714a56faf
|
4
|
+
data.tar.gz: 83a78f156388fa33fd51df6a733c6f4da9c944b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 721fb40d73b629b6f74b2b7e147eea0c10f4beb81ae353e721a6323a46ec95293f5d0bbf9548ec27ee8220f007c522caacb26decc00a7a663ede6efec0ba6c0e
|
7
|
+
data.tar.gz: 1c1bf33449e032f79b0ad6e35f470fdea09ccf0f072c3eb87550cafc19c3a352b17c2caf4944d76c00f080a8ce42a768dabeaa681fdccf3dca6220b9132371df
|
data/README.md
CHANGED
@@ -29,6 +29,9 @@ Propre will extract the title of a movie from it's filename and then rename it b
|
|
29
29
|
|
30
30
|
##Changelog
|
31
31
|
|
32
|
+
### 0.3.3
|
33
|
+
- Update blacklist ([#16](https://github.com/yadomi/propre/issues/16))
|
34
|
+
|
32
35
|
### 0.3.2
|
33
36
|
- Fix working directory issue when renaming with path ([#13](https://github.com/yadomi/propre/issues/13))
|
34
37
|
|
data/lib/propre/dictionary.rb
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
module Dictionary
|
2
2
|
BANNED = %w(
|
3
|
+
2ch
|
4
|
+
4k
|
5
|
+
aac
|
3
6
|
ac3
|
4
7
|
bdrip
|
5
8
|
bluray
|
@@ -15,6 +18,8 @@ module Dictionary
|
|
15
18
|
hdrip
|
16
19
|
hdtv
|
17
20
|
hdtv
|
21
|
+
hvec
|
22
|
+
mkv
|
18
23
|
proper
|
19
24
|
repack
|
20
25
|
retail
|
@@ -25,10 +30,14 @@ module Dictionary
|
|
25
30
|
subforced
|
26
31
|
telesync
|
27
32
|
theatrical
|
33
|
+
uhd
|
34
|
+
ultrahd
|
28
35
|
unrated
|
29
36
|
unrated
|
30
37
|
unsubbed
|
31
38
|
vostfr
|
39
|
+
x264
|
40
|
+
x265
|
32
41
|
xvid
|
33
42
|
)
|
34
43
|
|
data/lib/propre/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: propre
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Yadomi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03
|
11
|
+
date: 2016-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|