mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Small fixes
Release commit
This commit is contained in:
parent
eff7c17866
commit
187e44607d
6 changed files with 70 additions and 62 deletions
|
|
@ -443,7 +443,6 @@ module.exports = function (grunt) {
|
||||||
require('wrench').copyDirSyncRecursive('rainloop/v/' + devVersion,
|
require('wrench').copyDirSyncRecursive('rainloop/v/' + devVersion,
|
||||||
dist + 'rainloop/v/' + versionFull, {'forceDelete': true});
|
dist + 'rainloop/v/' + versionFull, {'forceDelete': true});
|
||||||
|
|
||||||
grunt.file.write(dist + 'data/VERSION', versionFull);
|
|
||||||
grunt.file.write(dist + 'data/EMPTY', versionFull);
|
grunt.file.write(dist + 'data/EMPTY', versionFull);
|
||||||
|
|
||||||
grunt.file.write(dist + 'index.php',
|
grunt.file.write(dist + 'index.php',
|
||||||
|
|
|
||||||
|
|
@ -48,6 +48,10 @@ AdminLicensing.prototype.showActivationForm = function ()
|
||||||
*/
|
*/
|
||||||
AdminLicensing.prototype.licenseExpiredMomentValue = function ()
|
AdminLicensing.prototype.licenseExpiredMomentValue = function ()
|
||||||
{
|
{
|
||||||
var oDate = moment.unix(this.licenseExpired());
|
var
|
||||||
return oDate.format('LL') + ' (' + oDate.from(moment()) + ')';
|
iTime = this.licenseExpired(),
|
||||||
|
oDate = moment.unix(iTime)
|
||||||
|
;
|
||||||
|
|
||||||
|
return iTime && 1898625600 === iTime ? 'Never' : (oDate.format('LL') + ' (' + oDate.from(moment()) + ')');
|
||||||
};
|
};
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "RainLoop",
|
"name": "RainLoop",
|
||||||
"title": "RainLoop Webmail",
|
"title": "RainLoop Webmail",
|
||||||
"version": "1.6.7",
|
"version": "1.6.7",
|
||||||
"release": "126",
|
"release": "127",
|
||||||
"description": "Simple, modern & fast web-based email client",
|
"description": "Simple, modern & fast web-based email client",
|
||||||
"homepage": "http://rainloop.net",
|
"homepage": "http://rainloop.net",
|
||||||
"main": "Gruntfile.js",
|
"main": "Gruntfile.js",
|
||||||
|
|
|
||||||
|
|
@ -796,7 +796,8 @@ class Actions
|
||||||
$oHttp->GetMethod().': '.$oHttp->GetHost(false, false).$oHttp->GetServer('REQUEST_URI', ''),
|
$oHttp->GetMethod().': '.$oHttp->GetHost(false, false).$oHttp->GetServer('REQUEST_URI', ''),
|
||||||
\MailSo\Log\Enumerations\Type::NOTE, 'REQUEST');
|
\MailSo\Log\Enumerations\Type::NOTE, 'REQUEST');
|
||||||
|
|
||||||
$this->oLogger->Write('[PHP:'.PHP_VERSION.'][RL:'.APP_VERSION.'][DATE:'.\gmdate('d.m.y').'][IP:'.$oHttp->GetClientIp().']');
|
$this->oLogger->Write('[PHP:'.PHP_VERSION.'][RL:'.APP_VERSION.'][DATE:'.\gmdate('d.m.y').'][IP:'.
|
||||||
|
$oHttp->GetClientIp().'][PID:'.(\MailSo\Base\Utils::FunctionExistsAndEnabled('getmypid') ? \getmypid() : 'unknown').']');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6947,8 +6947,12 @@ AdminLicensing.prototype.showActivationForm = function ()
|
||||||
*/
|
*/
|
||||||
AdminLicensing.prototype.licenseExpiredMomentValue = function ()
|
AdminLicensing.prototype.licenseExpiredMomentValue = function ()
|
||||||
{
|
{
|
||||||
var oDate = moment.unix(this.licenseExpired());
|
var
|
||||||
return oDate.format('LL') + ' (' + oDate.from(moment()) + ')';
|
iTime = this.licenseExpired(),
|
||||||
|
oDate = moment.unix(iTime)
|
||||||
|
;
|
||||||
|
|
||||||
|
return iTime && 1898625600 === iTime ? 'Never' : (oDate.format('LL') + ' (' + oDate.from(moment()) + ')');
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* @constructor
|
* @constructor
|
||||||
|
|
|
||||||
2
rainloop/v/0.0.0/static/js/admin.min.js
vendored
2
rainloop/v/0.0.0/static/js/admin.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue