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:
parent
c49722a4bd
commit
833ff0c120
3 changed files with 58 additions and 38 deletions
23
README.md
23
README.md
|
@ -1,12 +1,13 @@
|
||||||
Ampache
|
Ampache Doped
|
||||||
=======
|
=======
|
||||||
|
|
||||||
Basics
|
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,
|
manager allowing you to access your music & videos from anywhere,
|
||||||
using almost any internet enabled device.
|
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
|
Ampache's usefulness is heavily dependent on being able to extract
|
||||||
correct metadata from embedded tags in your files and/or the filename.
|
correct metadata from embedded tags in your files and/or the filename.
|
||||||
|
@ -117,23 +118,7 @@ for more instructions.
|
||||||
Credits
|
Credits
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Thanks to all those who have helped make Ampache awesome:
|
Thanks to all those who have helped make Ampache awesome: [Credits](docs/ACKNOWLEDGEMENTS)
|
||||||
|
|
||||||
* 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
|
|
||||||
|
|
||||||
|
|
||||||
Contact Us
|
Contact Us
|
||||||
|
|
33
docs/ACKNOWLEDGEMENTS
Normal file
33
docs/ACKNOWLEDGEMENTS
Normal 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
|
|
@ -252,27 +252,29 @@ switch ($_REQUEST['action']) {
|
||||||
break;
|
break;
|
||||||
case 'slideshow':
|
case 'slideshow':
|
||||||
ob_start();
|
ob_start();
|
||||||
$fsname = 'fslider_' . time();
|
|
||||||
echo "<div id='" . $fsname . "'>";
|
|
||||||
$images = Slideshow::get_current_slideshow();
|
$images = Slideshow::get_current_slideshow();
|
||||||
foreach ($images as $image) {
|
if (count($images) > 0) {
|
||||||
echo "<img src='" . $image['url'] . "' alt='' onclick='update_action();' />";
|
$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();
|
$results['fslider_script'] = ob_get_clean();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue