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

Rewrite baby! #81

Merged
merged 31 commits into from
May 28, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f7f324f
Initial rewrite commit
frankhale Apr 26, 2016
e527f94
Tiny things, nothing super special
frankhale Apr 29, 2016
ad99354
Move DB code into own file
frankhale May 2, 2016
ed2bc18
Project management, NW.js deployment support
frankhale May 5, 2016
c174672
Minor code changes, Update README.md
frankhale May 6, 2016
5f0393d
Add screenshots to README.md
frankhale May 6, 2016
b0bf61f
Make NW.js startup more polished
frankhale May 7, 2016
b9869ff
Don't set an empty window title
frankhale May 7, 2016
d97b7e8
Update README.md
frankhale May 7, 2016
b6db9e8
remove screenshots temporarily
frankhale May 7, 2016
bca7278
Add new screenshots
frankhale May 7, 2016
5c6bc61
Update README.md
frankhale May 7, 2016
56c9114
Update icons
frankhale May 7, 2016
a49d223
Update README.md
frankhale May 7, 2016
cfe4985
Update README.md
frankhale May 7, 2016
58538f6
Fix delineation of '/sep' command in README.md
frankhale May 7, 2016
ac12d06
Change User-Agent
frankhale May 8, 2016
ac55231
Add dropdown near bookmark button for new videos
frankhale May 9, 2016
6f06a77
"Add new video" fixes
frankhale May 14, 2016
71f29a8
Update dependencies
frankhale May 21, 2016
09abd03
Add infrastructure to manage videos (unfinished)
frankhale May 21, 2016
2a0997c
Make video update / delete do something
frankhale May 22, 2016
413e31d
Polishing things up
frankhale May 23, 2016
6638aef
fix CSS class on add button
frankhale May 23, 2016
1fe1303
Change YouTube search and group command name
frankhale May 23, 2016
c045a85
Select group in dropdown when managing videos
frankhale May 24, 2016
75d8854
Add Electron support infrastructure
frankhale May 25, 2016
2082958
Use path.sep instead of hard coding
frankhale May 27, 2016
ed742dd
Update README.md
frankhale May 27, 2016
97767dc
Change default port that Express starts up on
frankhale May 27, 2016
bc53364
Merge branch 'master' into rewrite
frankhale May 28, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .gitattributes

This file was deleted.

220 changes: 0 additions & 220 deletions .gitignore

This file was deleted.

25 changes: 19 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,19 @@ module.exports = function(grunt) {
},
dist: {
files: {
"build/main.js": "src/main.es6",
"build/backend.js": "src/backend.es6",
"public/scripts/toby.js": "src/toby.es6"
// BUILD DIR
"build/platform.js": "src/platform.js",
"build/db.js": "src/db.js",
"build/api.js": "src/api.js",
"build/server.js": "src/server.js",
"build/index.js": "src/index.js",
// PUBLIC/SCRIPTS DIR
"public/scripts/version-ui.js": "src/version-ui.js",
"public/scripts/dropdown-ui.js": "src/dropdown-ui.js",
"public/scripts/video-list-ui.js": "src/video-list-ui.js",
"public/scripts/command-input-ui.js": "src/command-input-ui.js",
"public/scripts/youtube-ui.js": "src/youtube-ui.js",
"public/scripts/toby-ui.js": "src/toby-ui.js"
}
}
},
Expand All @@ -24,9 +34,12 @@ module.exports = function(grunt) {
},
build: {
files: {
"build/main.min.js": "build/main.js",
"build/backend.min.js": "build/backend.js",
"public/scripts/toby.min.js": "public/scripts/toby.js"
"public/scripts/version-ui.min.js": "public/scripts/version-ui.js",
"public/scripts/dropdown-ui.min.js": "public/scripts/dropdown-ui.js",
"public/scripts/command-input-ui.min.js": "public/scripts/command-input-ui.js",
"public/scripts/video-list-ui.min.js": "public/scripts/video-list-ui.js",
"public/scripts/youtube-ui.min.js": "public/scripts/youtube-ui.js",
"public/scripts/toby-ui.min.js": "public/scripts/toby-ui.js"
}
}
}
Expand Down
Loading