Skip to content

Commit

Permalink
v2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
djmaze committed Jun 10, 2021
1 parent 6dbe3d4 commit f44515f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,23 +119,23 @@ RainLoop 1.15 vs SnappyMail

|js/* |RainLoop |Snappy |
|--------------- |--------: |--------: |
|admin.js |2.158.025 | 91.597 |
|app.js |4.215.733 | 453.806 |
|admin.js |2.158.025 | 91.664 |
|app.js |4.215.733 | 453.928 |
|boot.js | 672.433 | 3.147 |
|libs.js | 647.679 | 218.466 |
|polyfills.js | 325.908 | 0 |
|serviceworker.js | 0 | 285 |
|TOTAL |8.019.778 | 767.301 |
|TOTAL |8.019.778 | 767.490 |

|js/min/* |RainLoop |Snappy |RL gzip |SM gzip |RL brotli |SM brotli |
|--------------- |--------: |--------: |------: |------: |--------: |--------: |
|admin.min.js | 255.514 | 47.849 | 73.899 | 14.296 | 60.674 | 12.770 |
|app.min.js | 516.000 | 233.473 |140.430 | 68.561 |110.657 | 57.957 |
|admin.min.js | 255.514 | 47.908 | 73.899 | 14.313 | 60.674 | 12.787 |
|app.min.js | 516.000 | 233.532 |140.430 | 68.577 |110.657 | 57.878 |
|boot.min.js | 66.456 | 1.751 | 22.553 | 1.025 | 20.043 | 858 |
|libs.min.js | 574.626 | 106.529 |177.280 | 38.607 |151.855 | 34.567 |
|polyfills.min.js | 32.608 | 0 | 11.315 | 0 | 10.072 | 0 |
|TOTAL |1.445.204 | 389.602 |425.477 |122.489 |353.301 |106.152 |
|TOTAL (no admin) |1.189.690 | 341.753 |351.061 |108.193 |292.627 | 93.382 |
|TOTAL |1.445.204 | 389.720 |425.477 |122.522 |353.301 |106.090 |
|TOTAL (no admin) |1.189.690 | 341.812 |351.061 |108.209 |292.627 | 93.303 |

For a user its around 68% 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.1",
"version": "2.5.2",
"homepage": "https://snappymail.eu",
"author": {
"name": "DJ Maze",
Expand Down
4 changes: 4 additions & 0 deletions release.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@
unlink(__DIR__ . '/snappymail/v/0.0.0/static/js/min/boot.min.js.br');
}

unlink(__DIR__ . '/snappymail/v/0.0.0/static/js/openpgp.js');
unlink(__DIR__ . '/snappymail/v/0.0.0/static/js/openpgp.js.br');
unlink(__DIR__ . '/snappymail/v/0.0.0/static/js/openpgp.js.gz');

// Temporary rename folder to speed up PharData
//if (!rename('snappymail/v/0.0.0', "snappymail/v/{$package->version}")){
if (!rename('snappymail/v/0.0.0', "snappymail/v/{$package->version}")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ public function ReadLang(string $sLang, array &$aLang) : self
return $this;
}

public function bIsEnabled() : bool
public function IsEnabled() : bool
{
return $this->bIsEnabled;
}
Expand Down

0 comments on commit f44515f

Please sign in to comment.