easytag 0.3.0 → 0.3.1
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/CHANGELOG.md +6 -4
- data/lib/easytag/attributes/mp3.rb +2 -2
- data/lib/easytag/version.rb +1 -1
- data/test/test_consistency.rb +3 -0
- 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: d4c3f241efadea1f57ee59da86e825e2ab3e16f1
|
|
4
|
+
data.tar.gz: a14c85a009253c9f8b0fd468107a9e4cc0f39cee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 70ac3fa28f1bcef558a017bce6e58d2d09028fe38f24677873cbc178720e298e49a228d4b2335e9720baeb3638e70b937669999237b9f6e80ef7da5e62b2aa4f
|
|
7
|
+
data.tar.gz: 53fe63add857a0bed84914337587486a24c22fc27c1af50cc0db3a45cc0b6849b35f447e035ca7bbee1fbc5a349069f73c980bb4472e5302286390b54c208056
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
##### v0.3.1 (2013-05-31) #####
|
|
2
|
+
* fixed: `MP3#subtitle` now points to correct ID3 frame
|
|
3
|
+
* fixed: restored `MP3#user_info`
|
|
4
|
+
|
|
1
5
|
##### v0.3.0 (2013-05-29) #####
|
|
2
6
|
* added:
|
|
3
7
|
- `#encoded_by`
|
|
@@ -11,10 +15,8 @@
|
|
|
11
15
|
- `#lyricist`
|
|
12
16
|
- `#copyright`
|
|
13
17
|
- `#comment`
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
- `#comments` now returns an array, `#comment` is the
|
|
17
|
-
equivalent of the old behavior
|
|
18
|
+
* changed: `#comments` now returns an array, `#comment` is the
|
|
19
|
+
equivalent of the old behavior
|
|
18
20
|
|
|
19
21
|
##### v0.2.0 (2013-05-25) #####
|
|
20
22
|
* added:
|
|
@@ -156,7 +156,7 @@ module EasyTag::Attributes
|
|
|
156
156
|
# subtitle
|
|
157
157
|
{
|
|
158
158
|
:name => :subtitle,
|
|
159
|
-
:id3v2_frames => ['
|
|
159
|
+
:id3v2_frames => ['TIT3'],
|
|
160
160
|
:handler => :read_first_id3,
|
|
161
161
|
},
|
|
162
162
|
|
|
@@ -370,7 +370,7 @@ module EasyTag::Attributes
|
|
|
370
370
|
|
|
371
371
|
# user_info
|
|
372
372
|
{
|
|
373
|
-
:name => :
|
|
373
|
+
:name => :user_info,
|
|
374
374
|
:id3v2_frames => ['TXXX'],
|
|
375
375
|
:handler => :read_field_list_as_key_value,
|
|
376
376
|
:default => {},
|
data/lib/easytag/version.rb
CHANGED
data/test/test_consistency.rb
CHANGED
|
@@ -107,6 +107,7 @@ class TestConsistencyMP302 < Test::Unit::TestCase
|
|
|
107
107
|
['Arista', @mp3.label],
|
|
108
108
|
[true, @mp3.compilation?],
|
|
109
109
|
[0, @mp3.bpm],
|
|
110
|
+
['B0000AGWFX', @mp3.user_info[:asin]],
|
|
110
111
|
]
|
|
111
112
|
|
|
112
113
|
cases.each do |c|
|
|
@@ -169,6 +170,8 @@ class TestConsistency02 < Test::Unit::TestCase
|
|
|
169
170
|
puts c
|
|
170
171
|
assert_equal(@mp3.send(c), @mp4.send(c))
|
|
171
172
|
end
|
|
173
|
+
|
|
174
|
+
assert_equal(@mp3.user_info[:asin], @mp4.user_info[:asin])
|
|
172
175
|
end
|
|
173
176
|
|
|
174
177
|
def test_date
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: easytag
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Lucas
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-05-
|
|
11
|
+
date: 2013-05-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: taglib-ruby
|