-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented video previews in Backend #25
- Added previews for create & edit controller - Added missing translations - Added copy-to-clipboard for UUIDs - Fixes and template improvements
- Loading branch information
Showing
52 changed files
with
874 additions
and
360 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,36 @@ | ||
{ | ||
"name": "ive", | ||
"homepage": "https://github.com/sitcomlab/IVE", | ||
"authors": [ | ||
"Nicholas Schiestel <[email protected]>" | ||
], | ||
"description": "", | ||
"main": "", | ||
"license": "MIT", | ||
"private": true, | ||
"dependencies": { | ||
"angular": "^1.6.4", | ||
"jquery": "^3.1.0", | ||
"angular-route": "^1.6.4", | ||
"angular-translate": "^2.11.1", | ||
"font-awesome": "^4.6.3", | ||
"bootstrap": "v4.0.0-alpha.6", | ||
"angular-socket-io": "^0.7.0", | ||
"socket.io-client": "^1.5.0", | ||
"angular-sanitize": "^1.6.4", | ||
"videogular": "^1.4.4", | ||
"videogular-themes-default": "^1.4.4", | ||
"videogular-controls": "^1.4.4", | ||
"underscore": "^1.8.3", | ||
"angular-underscore-module": "^1.0.3", | ||
"moment": "^2.17.1", | ||
"angular-momentjs": "^0.2.2", | ||
"three.js": "threejs#*", | ||
"components-threejs": "^0.0.79" | ||
}, | ||
"resolutions": { | ||
"angular": "1.6.4", | ||
"bootstrap": "v4.0.0-alpha.6" | ||
} | ||
"name": "ive", | ||
"homepage": "https://github.com/sitcomlab/IVE", | ||
"authors": [ | ||
"Nicholas Schiestel <[email protected]>" | ||
], | ||
"description": "", | ||
"main": "", | ||
"license": "MIT", | ||
"private": true, | ||
"dependencies": { | ||
"angular": "^1.6.4", | ||
"jquery": "^3.1.0", | ||
"angular-route": "^1.6.4", | ||
"angular-translate": "^2.11.1", | ||
"font-awesome": "^4.6.3", | ||
"bootstrap": "v4.0.0-alpha.6", | ||
"angular-socket-io": "^0.7.0", | ||
"socket.io-client": "^1.5.0", | ||
"angular-sanitize": "^1.6.4", | ||
"videogular": "^1.4.4", | ||
"videogular-themes-default": "^1.4.4", | ||
"videogular-controls": "^1.4.4", | ||
"underscore": "^1.8.3", | ||
"angular-underscore-module": "^1.0.3", | ||
"moment": "^2.17.1", | ||
"angular-momentjs": "^0.2.2", | ||
"three.js": "threejs#*", | ||
"components-threejs": "^0.0.79", | ||
"ngclipboard": "^1.1.1" | ||
}, | ||
"resolutions": { | ||
"angular": "1.6.4", | ||
"bootstrap": "v4.0.0-alpha.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
1db4c4d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#11