mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-03 09:49:30 +02:00
Update changelog and project links
This commit is contained in:
parent
34cbc96129
commit
4e9faa31d3
4 changed files with 15 additions and 5 deletions
|
@ -3,6 +3,16 @@ CHANGELOG
|
|||
|
||||
3.7
|
||||
----------
|
||||
- Added optional top dock menu
|
||||
- Added html5 web audio api visualizer and equalizer
|
||||
- Added `Play List` to localplay mode
|
||||
- Fixed encoding issue in batch download
|
||||
- Added pagination to democratic playlists
|
||||
- Added an option to group albums discs to an unique album
|
||||
- Added alphabeticalByName and alphabeticalByArtist browse view in Subsonic API
|
||||
- Fixed album art on xspf generated playlist
|
||||
- Added stats, playlist and new authentication method to Ampache XML API
|
||||
- Added responsive tables to automatically hide optional information on small screen
|
||||
- Added song action buttons (user flag, rating, ...) to the web player
|
||||
- Added sortable capability to the web player playlist
|
||||
- Added Growl notification/scrobbler plugin
|
||||
|
|
|
@ -54,7 +54,7 @@ class AutoUpdate
|
|||
public static function github_request($action)
|
||||
{
|
||||
try {
|
||||
$url = "https://api.github.com/repos/ampache-doped/ampache" . $action;
|
||||
$url = "https://api.github.com/repos/ampache-doped/ampache-doped" . $action;
|
||||
$request = Requests::get($url);
|
||||
|
||||
// Not connected / API rate limit exceeded: just ignore, it will pass next time
|
||||
|
@ -177,8 +177,8 @@ class AutoUpdate
|
|||
echo '<font color="#ff0000">' . T_('Update available') . '</font>';
|
||||
echo ' (' . self::get_latest_version() . ').<br />';
|
||||
|
||||
echo T_('See') . ' <a href="https://github.com/ampache-doped/ampache/' . (self::is_develop() ? 'compare/' . self::get_current_version() . '...' . self::get_latest_version() : 'blob/master/docs/CHANGELOG.md') . '" target="_blank">' . T_('changes') . '</a> ';
|
||||
echo T_('or') . ' <a href="https://github.com/ampache-doped/ampache/archive/' . (self::is_develop() ? 'develop.zip' : self::get_latest_version() . '.zip') . '" target="_blank"><b>' . T_('download') . '</b></a>.';
|
||||
echo T_('See') . ' <a href="https://github.com/ampache-doped/ampache-doped/' . (self::is_develop() ? 'compare/' . self::get_current_version() . '...' . self::get_latest_version() : 'blob/master/docs/CHANGELOG.md') . '" target="_blank">' . T_('changes') . '</a> ';
|
||||
echo T_('or') . ' <a href="https://github.com/ampache-doped/ampache-doped/archive/' . (self::is_develop() ? 'develop.zip' : self::get_latest_version() . '.zip') . '" target="_blank"><b>' . T_('download') . '</b></a>.';
|
||||
echo '</div>';
|
||||
}
|
||||
}
|
||||
|
|
|
@ -129,7 +129,7 @@ foreach ($query as $param) {
|
|||
$params[$decname] = $decvalue;
|
||||
}
|
||||
}
|
||||
//syslog(LOG_INFO, print_r($params, true));
|
||||
//debug_event('subsonic', print_r($params, true), '5');
|
||||
|
||||
// Recurse through them and see if we're calling one of them
|
||||
foreach ($methods as $method) {
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
</div> <!-- end id="content"-->
|
||||
</div> <!-- end id="maincontainer"-->
|
||||
<div id="footer">
|
||||
<a href="https://github.com/ampache-doped/ampache#readme" target="_blank" title="Copyright © 2013 - 2014 Ampache-doped.github.io
|
||||
<a href="https://github.com/ampache-doped/ampache-doped#readme" target="_blank" title="Copyright © 2013 - 2014 Ampache-doped.github.io
|
||||
Copyright © 2001 - 2013 Ampache.org">Ampache-doped <?php echo AmpConfig::get('version'); ?></a><br />
|
||||
<?php echo T_('Queries:'); ?><?php echo Dba::$stats['query']; ?> <?php echo T_('Cache Hits:'); ?><?php echo database_object::$cache_hit; ?>
|
||||
<?php
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue