mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
v2.5.0-rc.2
This commit is contained in:
parent
6217d1cc49
commit
275e5c5947
3 changed files with 20 additions and 19 deletions
16
README.md
16
README.md
|
|
@ -117,22 +117,22 @@ RainLoop 1.15 vs SnappyMail
|
|||
|js/* |RainLoop |Snappy |
|
||||
|--------------- |--------: |--------: |
|
||||
|admin.js |2.158.025 | 95.529 |
|
||||
|app.js |4.215.733 | 467.499 |
|
||||
|boot.js | 672.433 | 4.726 |
|
||||
|libs.js | 647.679 | 227.974 |
|
||||
|app.js |4.215.733 | 467.616 |
|
||||
|boot.js | 672.433 | 4.554 |
|
||||
|libs.js | 647.679 | 227.911 |
|
||||
|polyfills.js | 325.908 | 0 |
|
||||
|serviceworker.js | 0 | 285 |
|
||||
|TOTAL |8.019.778 | 795.841 |
|
||||
|TOTAL |8.019.778 | 795.895 |
|
||||
|
||||
|js/min/* |RainLoop |Snappy |RL gzip |SM gzip |RL brotli |SM brotli |
|
||||
|--------------- |--------: |--------: |------: |------: |--------: |--------: |
|
||||
|admin.min.js | 255.514 | 50.607 | 73.899 | 14.944 | 60.674 | 13.364 |
|
||||
|app.min.js | 516.000 | 240.810 |140.430 | 70.598 |110.657 | 59.482 |
|
||||
|app.min.js | 516.000 | 240.896 |140.430 | 70.621 |110.657 | 59.521 |
|
||||
|boot.min.js | 66.456 | 2.442 | 22.553 | 1.371 | 20.043 | 1.178 |
|
||||
|libs.min.js | 574.626 | 115.877 |177.280 | 42.809 |151.855 | 38.099 |
|
||||
|libs.min.js | 574.626 | 115.854 |177.280 | 42.809 |151.855 | 38.140 |
|
||||
|polyfills.min.js | 32.608 | 0 | 11.315 | 0 | 10.072 | 0 |
|
||||
|TOTAL |1.445.204 | 409.736 |425.477 |129.722 |353.301 |112.123 |
|
||||
|TOTAL (no admin) |1.189.690 | 359.129 |351.061 |114.778 |292.627 | 98.759 |
|
||||
|TOTAL |1.445.204 | 409.799 |425.477 |129.745 |353.301 |112.203 |
|
||||
|TOTAL (no admin) |1.189.690 | 359.192 |351.061 |114.801 |292.627 | 98.839 |
|
||||
|
||||
For a user its around 66% smaller and faster than traditional RainLoop.
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"title": "SnappyMail",
|
||||
"description": "Simple, modern & fast web-based email client",
|
||||
"private": true,
|
||||
"version": "2.5.0-rc.1",
|
||||
"version": "2.5.0-rc.2",
|
||||
"homepage": "https://snappymail.eu",
|
||||
"author": {
|
||||
"name": "DJ Maze",
|
||||
|
|
|
|||
|
|
@ -2,16 +2,6 @@
|
|||
|
||||
if (defined('APP_VERSION'))
|
||||
{
|
||||
$aRequirements = array(
|
||||
'cURL' => extension_loaded('curl'),
|
||||
'mbstring' => extension_loaded('mbstring'),
|
||||
'Zlib' => extension_loaded('zlib'),
|
||||
// enabled by default:
|
||||
'json' => function_exists('json_decode'),
|
||||
'libxml' => function_exists('libxml_use_internal_errors'),
|
||||
'dom' => class_exists('DOMDocument')
|
||||
);
|
||||
|
||||
if (version_compare(PHP_VERSION, '7.3.0', '<'))
|
||||
{
|
||||
echo '<p style="color: red">';
|
||||
|
|
@ -20,6 +10,17 @@
|
|||
exit(301);
|
||||
}
|
||||
|
||||
$aRequirements = array(
|
||||
'cURL' => extension_loaded('curl'),
|
||||
// 'intl' => function_exists('idn_to_ascii'),
|
||||
'mbstring' => extension_loaded('mbstring'),
|
||||
'Zlib' => extension_loaded('zlib'),
|
||||
// enabled by default:
|
||||
'json' => function_exists('json_decode'),
|
||||
'libxml' => function_exists('libxml_use_internal_errors'),
|
||||
'dom' => class_exists('DOMDocument')
|
||||
);
|
||||
|
||||
if (in_array(false, $aRequirements))
|
||||
{
|
||||
echo '<p>';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue