Skip to content

Commit

Permalink
v2.5.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
djmaze committed Apr 9, 2021
1 parent 6217d1c commit 275e5c5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
17 changes: 9 additions & 8 deletions snappymail/v/0.0.0/check.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@

if (defined('APP_VERSION'))
{
if (version_compare(PHP_VERSION, '7.3.0', '<'))
{
echo '<p style="color: red">';
echo '[301] Your PHP version ('.PHP_VERSION.') is lower than the minimal required 7.3.0!';
echo '</p>';
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:
Expand All @@ -12,14 +21,6 @@
'dom' => class_exists('DOMDocument')
);

if (version_compare(PHP_VERSION, '7.3.0', '<'))
{
echo '<p style="color: red">';
echo '[301] Your PHP version ('.PHP_VERSION.') is lower than the minimal required 7.3.0!';
echo '</p>';
exit(301);
}

if (in_array(false, $aRequirements))
{
echo '<p>';
Expand Down

0 comments on commit 275e5c5

Please sign in to comment.