1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 09:49:30 +02:00

Update Acknowledgements with old contributors

This commit is contained in:
Afterster 2014-02-25 07:18:57 +01:00
parent c49722a4bd
commit 833ff0c120
3 changed files with 58 additions and 38 deletions

View file

@ -1,12 +1,13 @@
Ampache
Ampache Doped
=======
Basics
------
Ampache is a web based audio/video streaming application and file
Ampache Doped is a web based audio/video streaming application and file
manager allowing you to access your music & videos from anywhere,
using almost any internet enabled device.
Ampache Doped is a fork of Ampache project.
Ampache's usefulness is heavily dependent on being able to extract
correct metadata from embedded tags in your files and/or the filename.
@ -117,23 +118,7 @@ for more instructions.
Credits
-------
Thanks to all those who have helped make Ampache awesome:
* Scott Kveton: Original creator of Ampache, 2001 - 2003
* Robert Hopson
* Andy Morgan
* RosenSama
* latka
* Lamar Hansford
* Lacy Morrow
* Karl Vollmer (vollmerk)
* Paul Arthur MacIain (flowerysong)
* Chris Slamar (cslamar)
* Holger Brunn
* Kevin Purdy (purdyk)
* Charlie Smotherman (porthose)
* Afterster
* SUTJael
Thanks to all those who have helped make Ampache awesome: [Credits](docs/ACKNOWLEDGEMENTS)
Contact Us

33
docs/ACKNOWLEDGEMENTS Normal file
View file

@ -0,0 +1,33 @@
Acknowledgements
----------
Ampache Doped (2013-2014)
------
* Afterster
* SUTJael
Ampache (2001-2013)
------
* Scott Kveton: Original creator of Ampache, 2001 - 2003
* Robert Hopson
* Andy Morgan
* RosenSama
* latka
* Lamar Hansford
* Lacy Morrow
* Karl Vollmer (vollmerk)
* Paul Arthur MacIain (flowerysong)
* Chris Slamar (cslamar)
* Holger Brunn
* Kevin Purdy (purdyk)
* Charlie Smotherman (porthose)
* XGizzmo
* Spock
* Terence Theijn (pb1dft)
* Mark Kasson
* SoundOfEmotion
* Randy Perkins
* Ben Shields

View file

@ -252,27 +252,29 @@ switch ($_REQUEST['action']) {
break;
case 'slideshow':
ob_start();
$fsname = 'fslider_' . time();
echo "<div id='" . $fsname . "'>";
$images = Slideshow::get_current_slideshow();
foreach ($images as $image) {
echo "<img src='" . $image['url'] . "' alt='' onclick='update_action();' />";
if (count($images) > 0) {
$fsname = 'fslider_' . time();
echo "<div id='" . $fsname . "'>";
foreach ($images as $image) {
echo "<img src='" . $image['url'] . "' alt='' onclick='update_action();' />";
}
echo "</div>";
$results['fslider'] = ob_get_clean();
ob_start();
echo "<script language='javascript' type='text/javascript'>";
echo "$('#" . $fsname . "').rhinoslider({
showTime: 15000,
effectTime: 2000,
randomOrder: true,
controlsPlayPause: false,
autoPlay: true,
showBullets: 'never',
showControls: 'always',
controlsMousewheel: false,
});";
echo "</script>";
}
echo "</div>";
$results['fslider'] = ob_get_clean();
ob_start();
echo "<script language='javascript' type='text/javascript'>";
echo "$('#" . $fsname . "').rhinoslider({
showTime: 15000,
effectTime: 2000,
randomOrder: true,
controlsPlayPause: false,
autoPlay: true,
showBullets: 'never',
showControls: 'always',
controlsMousewheel: false,
});";
echo "</script>";
$results['fslider_script'] = ob_get_clean();
break;
default: