irecorder 0.0.4-linux → 0.0.5-linux
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/README +14 -6
- data/Rakefile +11 -5
- data/bin/irecorder.rb +55 -207
- data/lib/bbcnet.rb +34 -7
- data/lib/cache.rb +115 -0
- data/lib/download.rb +32 -19
- data/lib/irecorder_resource.rb +264 -0
- data/lib/mylibs.rb +11 -11
- data/lib/programmewin.rb +182 -0
- data/lib/settings.rb +0 -3
- data/lib/taskwin.rb +72 -78
- data/resources/bbcstyle.qss +14 -0
- metadata +9 -9
data/resources/bbcstyle.qss
CHANGED
@@ -338,6 +338,20 @@ QTabBar::tab:only-one {
|
|
338
338
|
margin: 0; /* if there is only one tab, we don't want overlapping margins */
|
339
339
|
}
|
340
340
|
|
341
|
+
|
342
|
+
|
343
|
+
/*
|
344
|
+
Dock Widget
|
345
|
+
*/
|
346
|
+
QDockWidget::title {
|
347
|
+
text-align: left;
|
348
|
+
background: qlineargradient(spread:pad, x1:0, y1:1, x2:0, y2:0,
|
349
|
+
stop:0 rgb(0, 0, 0), stop:0.48 rgb(0, 0, 0),
|
350
|
+
stop:0.5 rgb(59, 59, 59), stop:1 rgb(125, 125, 125));
|
351
|
+
padding-left: 10px;
|
352
|
+
}
|
353
|
+
|
354
|
+
|
341
355
|
/*
|
342
356
|
Channel ToolBox
|
343
357
|
*/
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: irecorder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 5
|
10
|
+
version: 0.0.5
|
11
11
|
platform: linux
|
12
12
|
authors:
|
13
13
|
- ruby.twiddler
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-08-
|
18
|
+
date: 2010-08-19 00:00:00 +09:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -38,12 +38,9 @@ description: |
|
|
38
38
|
BBC iPlayer like audio recorder with KDE GUI.
|
39
39
|
You can browse BBC Radio programmes and click to download stream file.
|
40
40
|
files will be converted to mp3 files automatically.
|
41
|
-
|
41
|
+
irecorder allow to play without any other browser or play on your prefered browser.
|
42
42
|
like mplayer.
|
43
43
|
irecorder require kdebindings.
|
44
|
-
svn://anonsvn.kde.org/home/kde/branches/KDE/4.4/kdebindings
|
45
|
-
http://websvn.kde.org/branches/KDE/4.4/kdebindings/
|
46
|
-
please check your distro package to install it.
|
47
44
|
|
48
45
|
email: ruby.twiddler at gmail.com
|
49
46
|
executables:
|
@@ -61,12 +58,15 @@ files:
|
|
61
58
|
- lib/mylibs.rb
|
62
59
|
- lib/settings.rb
|
63
60
|
- lib/taskwin.rb
|
61
|
+
- lib/programmewin.rb
|
62
|
+
- lib/cache.rb
|
63
|
+
- lib/irecorder_resource.rb
|
64
64
|
- README
|
65
65
|
- MIT-LICENSE
|
66
66
|
- Rakefile
|
67
67
|
- resources/bbcstyle.qss
|
68
68
|
has_rdoc: true
|
69
|
-
homepage:
|
69
|
+
homepage: http://wiki.github.com/rubytwiddler/irecorder/
|
70
70
|
licenses:
|
71
71
|
- MIT-LICENSE
|
72
72
|
post_install_message:
|