svt-recorder 1.0.1 → 1.0.2

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.
data/ChangeLog CHANGED
@@ -1,4 +1,9 @@
1
- 2012-09-09 Björn Andersson <ba@sanitarium.se>, v1.0.1
1
+ 2012-09-14 Björn Andersson <ba@sanitarium.se>, v1.0.2
2
+
3
+ Oops, typo in the recorder which affected urls with characters that
4
+ can be escaped.
5
+
6
+ 2012-09-09 Björn Andersson <ba@sanitarium.se>, v1.0.1
2
7
 
3
8
  User request for a better progress bar, so I've obliged with the
4
9
  excellent `progress_bar` gem by Paul Sadauskas.
@@ -11,7 +16,7 @@
11
16
  * SVT::Recorder.fetch_playlist doesn't need to be called with
12
17
  a block anymore.
13
18
 
14
- 2012-06-04 Björn Andersson <ba@sanitarium.se>, v1.0.0
19
+ 2012-06-04 Björn Andersson <ba@sanitarium.se>, v1.0.0
15
20
 
16
21
  SVT has changed their website and thus the way data is fetched.
17
22
  Changed to the new format which basically is the same for both
@@ -24,14 +29,14 @@
24
29
  I'm calling this 1.0 and possible support for RTMP will be
25
30
  another major release at that point.
26
31
 
27
- 2012-01-15 Björn Andersson <ba@sanitarium.se>, v0.9.6
32
+ 2012-01-15 Björn Andersson <ba@sanitarium.se>, v0.9.6
28
33
 
29
34
  Patch received from Anders Eurenius (aes on Github) that will
30
35
  retry a chunk download if it times out.
31
36
 
32
37
  Thanks Anders!
33
38
 
34
- 2010-11-03 Björn Andersson <ba@sanitarium.se>, v0.9.5
39
+ 2010-11-03 Björn Andersson <ba@sanitarium.se>, v0.9.5
35
40
 
36
41
  * svt-recorder flushes the output buffers when printing information.
37
42
  * svt-recorder one dot in the progress meter is 1MB.
@@ -47,6 +52,6 @@
47
52
  * Recorder::Base allow parts to be used in a block instead of
48
53
  just returning an array.
49
54
 
50
- 2010-11-02 Björn Andersson <ba@sanitarium.se>, v0.9
55
+ 2010-11-02 Björn Andersson <ba@sanitarium.se>, v0.9
51
56
 
52
57
  * First official release
@@ -33,6 +33,6 @@ module SVT #:nodoc:
33
33
  end
34
34
  end
35
35
 
36
- VERSION = '1.0.1'
36
+ VERSION = '1.0.2'
37
37
  end
38
38
  end
@@ -148,7 +148,7 @@ module SVT
148
148
  row = File.basename(row) if row.match(/^http/)
149
149
 
150
150
  if bitrate
151
- @bitrates[bitrate] = CGI.escape(row)
151
+ @bitrates[bitrate] = CGI.unescape(row)
152
152
  bitrate = nil
153
153
  end
154
154
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: svt-recorder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-08 00:00:00.000000000 Z
12
+ date: 2012-09-15 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json_pure