Skip to content
This repository was archived by the owner on Jul 6, 2020. It is now read-only.

Commit df51723

Browse files
committed
Merge pull request #6 from frankhale/react
Convert UI to React
2 parents 7e0b568 + 820e838 commit df51723

File tree

15 files changed

+15577
-293
lines changed

15 files changed

+15577
-293
lines changed

README.md

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ Search your playlist for a video
1616

1717
<img src="screenshots/toby-video-search.png" alt="Video Selection"/>
1818

19+
List all songs in your playlist
20+
21+
<img src="screenshots/toby-video-search-all.png" alt="Video Selection - List All"/>
22+
1923
Recently played list
2024

2125
<img src="screenshots/toby-recently-played.png" alt="Video Selection"/>
@@ -26,23 +30,9 @@ Toby is written in JavaScript / HTML and CSS and needs Atom-Shell to run:
2630

2731
https://github.com/atom/atom-shell
2832

29-
##How To Run
30-
31-
There are two ways to run Toby. You can download the latest release which
32-
incorporates the latest code along with Atom-Shell unzip it and run Toby.exe.
33-
NOTE: I've only included a Windows distribution at this time. I will include
34-
a Linux one soon. I can't support a Mac distribution because I don't have a Mac
35-
to test on. Theoretically Toby should work fine on Mac and would greatly
36-
appreciate it somebody can let me know or provide Mac binaries so I can release
37-
for all three major OSes.
38-
39-
The other way is to clone this repository, download Atom-Shell yourself and
40-
then copy Toby's code into the Atom-Shell resources/app folder.
33+
##Requirements
4134

42-
- Clone Toby
43-
- Download Atom-Shell https://github.com/atom/atom-shell/releases
44-
- Copy Toby's code into the [atom-shell-release]/resources/app folder and then
45-
run atom.exe.
35+
Atom-Shell
4636

4737
##Usage
4838

@@ -67,7 +57,7 @@ any names of publishers that do this but there is a major one and it now works!
6757
##Author(s)
6858

6959
Frank Hale &lt;frankhale@gmail.com&gt;
70-
15 January 2015
60+
1 February 2015
7161

7262
##License
7363

blank.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Toby - A simple YouTube video player</title>
5+
</head>
6+
<body style="background-color: #000;"></body>
7+
</html>

css/app.css renamed to css/toby.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ body {
1010
width: 100%;
1111
height: 100%;
1212
position: absolute;
13+
background-color: #000;
1314
}
1415
#searchList {
1516
text-align: center;
@@ -40,6 +41,7 @@ body {
4041
background-color: #999;
4142
border-bottom-right-radius: 5px;
4243
border-bottom-left-radius: 5px;
44+
overflow: auto;
4345
}
4446
#recentlyPlayedHeader {
4547
border-bottom: 2px solid #777;

data/data.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@
6363
}, {
6464
"description": "Gareth Emery - Long Way Home [Official Video]",
6565
"url": "http://www.youtube.com/embed/0bj4i-sW44s"
66+
}, {
67+
"description": "Tony Grand - Join Me (Original Mix) [D.MAX Deep] Promo Video Edit",
68+
"url": "http://www.youtube.com/embed/nwW0-DvXbTQ"
69+
}, {
70+
"description": "Dreamy - Fusion (New World Remix) [Diverted Music Promo]",
71+
"url": "https://www.youtube.com/embed/D_8y-XX9wM8"
6672
}]
6773
}, {
6874
"title": "Dance",
@@ -115,11 +121,20 @@
115121
"description": "Danny Gokey - Hope In Front of Me",
116122
"url": "http://www.youtube.com/embed/O5GFiDdGGGM"
117123
}, {
118-
"description": "Among The Thirsty Completely",
124+
"description": "Among The Thirsty - Completely",
119125
"url": "http://www.youtube.com/embed/sFC-d9PTusw"
120126
}, {
121127
"description": "7eventh Time Down 'Just Say Jesus'",
122128
"url": "http://www.youtube.com/embed/T8CLgiYZyZE"
129+
},{
130+
"description": "Switchfoot -- Love Alone Is Worth The Fight [Official Video]",
131+
"url": "http://www.youtube.com/embed/rk9Pj3ID0UE"
132+
},{
133+
"description": "Kari Jobe - I Am Not Alone (Lyric Video/Live)",
134+
"url": "http://www.youtube.com/embed/I2oel0_Xa54"
135+
},{
136+
"description": "Crowder - Come As You Are (Music Video)",
137+
"url": "http://www.youtube.com/embed/r2zhf2mqEMI"
123138
}]
124139
}, {
125140
"title": "Other",

index.html

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)