easytag 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1eef251238ecbdd6cc6b83991a3aad154a2a9007
4
- data.tar.gz: 844c9b1b74f2a9cd67127e4a8d56a79f0387de48
3
+ metadata.gz: d4c3f241efadea1f57ee59da86e825e2ab3e16f1
4
+ data.tar.gz: a14c85a009253c9f8b0fd468107a9e4cc0f39cee
5
5
  SHA512:
6
- metadata.gz: 0a54438c37cade246206bc4f7bf0d0f0458e7d1fb2d002f09c642aca7a8f818aa7a3e9f54ceba51bbca22cb99fd9c75a330d11fb666fcae830706fe69062f10d
7
- data.tar.gz: 5dbbd2002796e72d4c8884950e066be03054e88eee2de85d0f91539b8b84e4bfc347136afce68f9caf288097d0259f44bfb49c282f45d927f4737ec191247d37
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
- * changed:
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 => ['TIT1'],
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 => :user_info_new,
373
+ :name => :user_info,
374
374
  :id3v2_frames => ['TXXX'],
375
375
  :handler => :read_field_list_as_key_value,
376
376
  :default => {},
@@ -2,7 +2,7 @@ module EasyTag
2
2
  class Version
3
3
  MAJOR = 0
4
4
  MINOR = 3
5
- TINY = 0
5
+ TINY = 1
6
6
  end
7
7
 
8
8
  VERSION = [Version::MAJOR, Version::MINOR, Version::TINY].join('.')
@@ -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.0
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-30 00:00:00.000000000 Z
11
+ date: 2013-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: taglib-ruby