gnome-tv 0.1 → 0.1.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.
- data/README.md +21 -8
- data/gnome-tv-0.1.gem +0 -0
- data/gnome-tv.desktop +2 -0
- data/gnome-tv.gemspec +1 -1
- metadata +4 -2
data/README.md
CHANGED
|
@@ -1,28 +1,38 @@
|
|
|
1
1
|
Gnome TV
|
|
2
2
|
========
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
![Menu screenshot][1]
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
Every time I install a linux distro and I want to watch the TV, I need to:
|
|
7
|
+
|
|
8
|
+
- Search the web for the TV stream URL of my internet provider
|
|
9
|
+
- Set up a menu entry that lauches Totem with this URL
|
|
10
|
+
- Find a nice icon
|
|
11
|
+
|
|
12
|
+
Gnome TV is a very simple program that will just do it for me.
|
|
8
13
|
|
|
9
14
|
|
|
10
15
|
Install
|
|
11
16
|
-------
|
|
12
17
|
|
|
13
|
-
Using rubygems:
|
|
18
|
+
Using rubygems (may need root privileges):
|
|
14
19
|
|
|
15
20
|
gem install gnome-tv
|
|
16
21
|
|
|
17
|
-
Once installed, the following command will
|
|
22
|
+
Once installed, the following command will set up the menu entry (may need root privileges too):
|
|
18
23
|
|
|
19
24
|
gnome-tv-install
|
|
20
25
|
|
|
26
|
+
If the menu entry does not appear, just restart gnome-panel:
|
|
27
|
+
|
|
28
|
+
killall gnome-panel
|
|
29
|
+
|
|
30
|
+
|
|
21
31
|
To do
|
|
22
32
|
-----
|
|
23
33
|
|
|
24
34
|
- Store found provider in ~/.config/gnome-tv, and use it next time gnome-tv is launched.
|
|
25
|
-
-
|
|
35
|
+
- Improve provider lookup (by country ? DNS ? using NetworkManager ?)
|
|
26
36
|
- Extend the DSL (udp:// streams support ? )
|
|
27
37
|
- Integrate with the preferred applications dialog ?
|
|
28
38
|
|
|
@@ -30,9 +40,9 @@ To do
|
|
|
30
40
|
Adding a new provider
|
|
31
41
|
---------------------
|
|
32
42
|
|
|
33
|
-
See
|
|
43
|
+
See [lib/providers/][2]
|
|
34
44
|
|
|
35
|
-
Feel free to fork the project and extend the DSL to support your
|
|
45
|
+
Feel free to fork the project and extend the DSL to support your provider.
|
|
36
46
|
|
|
37
47
|
|
|
38
48
|
License
|
|
@@ -41,3 +51,6 @@ License
|
|
|
41
51
|
Copyright © 2010 Sébastien Nicouleaud. See LICENSE file for more details.
|
|
42
52
|
|
|
43
53
|
|
|
54
|
+
[1]: http://dl.dropbox.com/u/3336767/gnome-tv/menu.png
|
|
55
|
+
[2]: http://github.com/sebn/gnome-tv/blob/master/lib/providers/
|
|
56
|
+
|
data/gnome-tv-0.1.gem
ADDED
|
Binary file
|
data/gnome-tv.desktop
CHANGED
data/gnome-tv.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gnome-tv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.1.1
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- "S\xC3\xA9bastien Nicouleaud"
|
|
@@ -33,6 +34,7 @@ files:
|
|
|
33
34
|
- Rakefile
|
|
34
35
|
- bin/gnome-tv
|
|
35
36
|
- bin/gnome-tv-install
|
|
37
|
+
- gnome-tv-0.1.gem
|
|
36
38
|
- gnome-tv.desktop
|
|
37
39
|
- gnome-tv.gemspec
|
|
38
40
|
- icons/24/apps/tv.png
|