commit
1a69079139
|
@ -58,6 +58,7 @@ class Updater extends BasicEmitter {
|
|||
$version['updated'] = \OC_Appconfig::getValue('core', 'lastupdatedat');
|
||||
$version['updatechannel'] = \OC_Util::getChannel();
|
||||
$version['edition'] = \OC_Util::getEditionString();
|
||||
$version['build'] = \OC_Util::getBuild();
|
||||
$versionString = implode('x', $version);
|
||||
|
||||
//fetch xml data from updater
|
||||
|
|
|
@ -1111,4 +1111,17 @@ class OC_Util {
|
|||
$t = explode('/', $file);
|
||||
return array_pop($t);
|
||||
}
|
||||
|
||||
/**
|
||||
* A human readable string is generated based on version, channel and build number
|
||||
* @return string
|
||||
*/
|
||||
public static function getHumanVersion() {
|
||||
$version = OC_Util::getVersionString().' ('.OC_Util::getChannel().')';
|
||||
$build = OC_Util::getBuild();
|
||||
if(!empty($build) and OC_Util::getChannel() === 'daily') {
|
||||
$version .= ' Build:' . $build;
|
||||
}
|
||||
return $version;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -264,7 +264,7 @@ if (!$_['internetconnectionworking']) {
|
|||
|
||||
<fieldset class="personalblock">
|
||||
<h2><?php p($l->t('Version'));?></h2>
|
||||
<strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getVersionString().' ('.OC_Util::getChannel().')'); ?>
|
||||
<strong><?php p($theme->getTitle()); ?></strong> <?php p(OC_Util::getHumanVersion()) ?>
|
||||
<?php if (OC_Util::getEditionString() === ''): ?>
|
||||
<p>
|
||||
<?php print_unescaped($l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.')); ?>
|
||||
|
|
|
@ -167,7 +167,7 @@ if($_['passwordChangeSupported']) {
|
|||
|
||||
<fieldset class="personalblock">
|
||||
<h2><?php p($l->t('Version'));?></h2>
|
||||
<strong><?php p($theme->getName()); ?></strong> <?php p(OC_Util::getVersionString().' ('.OC_Util::getChannel().')'); ?><br />
|
||||
<strong><?php p($theme->getName()); ?></strong> <?php p(OC_Util::getHumanVersion()) ?><br />
|
||||
<?php if (OC_Util::getEditionString() === ''): ?>
|
||||
<?php print_unescaped($l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.')); ?>
|
||||
<?php endif; ?>
|
||||
|
|
Loading…
Reference in New Issue