diff --git a/composer.json b/composer.json
index fed982dc..40000d18 100644
--- a/composer.json
+++ b/composer.json
@@ -1,8 +1,8 @@
{
- "name": "laravel/laravel",
- "description": "The Laravel Framework.",
- "keywords": ["framework", "laravel"],
- "license": "MIT",
+ "name": "poniverse/pony.fm",
+ "description": "The pony music hosting site.",
+ "keywords": ["music", "pony", "php", "laravel"],
+ "license": "Proprietary",
"type": "project",
"require": {
"php": ">=5.5.9",
diff --git a/package.json b/package.json
index 275d9d85..ac9578cf 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,7 @@
"packages": {},
"dependencies": {},
"devDependencies": {
- "gulp": "^3.8.11",
+ "gulp": "^3.9.0",
"gulp-angular-templatecache": "^1.6.0",
"gulp-autoprefixer": "^2.2.0",
"gulp-cached": "^1.0.4",
diff --git a/public/templates/partials/credits-dialog.html b/public/templates/partials/credits-dialog.html
new file mode 100644
index 00000000..3c6ad2e4
--- /dev/null
+++ b/public/templates/partials/credits-dialog.html
@@ -0,0 +1,46 @@
+
+
+
Pony.fm was created to organize the My Little Pony community's fan music.
+ The project is maintained by Poniverse, an
+ organization devoted to building and operating fan sites for the pony community.
+
+
Open-source credits
+
Pony.fm would not be possible without the efforts of the open-source community.
+ We thank the following projects, in no particular order, for providing the building
+ blocks for our own.
+
+ - Laravel - our backend framework of choice
+ - Angular.js - our front-end framework of choice
+ - PHP - for providing a batteries-loaded language to build great web apps in
+ - Composer - for making the management of PHP dependencies sane
+ - FFmpeg - for analyzing and dealing with every audio file we can throw at it
+ - Guzzle - for adding sanity to the art of making HTTP requests
+ - FFmpegPHP - for providing a sweet PHP interface to ffmpeg
+ - Laravel IDE Helper Generator - for making our IDE useful
+ - Laravel NewRelic Service Provider - for making it easy to monitor Pony.fm''s performance
+ - Vagrant - for making cross-platform dev environments possible
+ - AtomicParsley - for making it easy to work with tags in M4A files
+ - FLAC - FLAC is best audio codec /)
+ - OGG Vorbis - A great open-source audio codec
+ - FAAC - for encoding our AAC files
+ - LAME - for encoding our MP3 files
+ - gulp - for being our asset pipeline
+ - Node.js - for making JavaScript useful outside the browser
+ - SoundManager - for smoothing out cross-browser audio playback
+ - Moment.js - for making JavaScript dates sane
+ - Bootstrap - for its front-end components and making layouts easy
+ - LESS - for (almost) making CSS awesome
+ - jQuery - for being useful all over the place
+ - Angularytics - for making Google Analytics useful in a single-page app
+ - UI-Router - for making non-trivial Angular.js routes possible
+ - UI-Bootstrap - for making Bootstrap and Angular.js get along
+
+
+
diff --git a/resources/assets/scripts/app/controllers/credits.coffee b/resources/assets/scripts/app/controllers/credits.coffee
new file mode 100644
index 00000000..11303d6c
--- /dev/null
+++ b/resources/assets/scripts/app/controllers/credits.coffee
@@ -0,0 +1,5 @@
+angular.module('ponyfm').controller "credits", [
+ '$scope', 'dialog',
+ ($scope, dialog) ->
+ $scope.close = () -> dialog.close(null)
+]
diff --git a/resources/assets/scripts/app/controllers/sidebar.coffee b/resources/assets/scripts/app/controllers/sidebar.coffee
index 437e0f68..5cc2393d 100644
--- a/resources/assets/scripts/app/controllers/sidebar.coffee
+++ b/resources/assets/scripts/app/controllers/sidebar.coffee
@@ -38,4 +38,13 @@ angular.module('ponyfm').controller "sidebar", [
]).open().then (res) ->
return if res == 'cancel'
playlists.deletePlaylist playlist
-]
\ No newline at end of file
+
+
+ $scope.showCredits = () ->
+ dialog = $dialog.dialog
+ templateUrl: '/templates/partials/credits-dialog.html'
+ controller: 'credits'
+
+ dialog.open()
+
+]
diff --git a/resources/views/shared/_app_layout.blade.php b/resources/views/shared/_app_layout.blade.php
index 6a620883..1f0287c5 100644
--- a/resources/views/shared/_app_layout.blade.php
+++ b/resources/views/shared/_app_layout.blade.php
@@ -82,7 +82,7 @@
Register
@endif
-
+
A community project by