Commit graph

517 commits

Author SHA1 Message Date
djmaze 0f56c7d28f knockout appendChild => append
and tested closure-compiler 0.2.12 but still broken for es6 mode
2020-09-17 21:34:38 +02:00
djmaze 7713f459ac Replace $().trigger() and document.createEvent() with element.dispatchEvent(new Event()) 2020-09-17 21:18:39 +02:00
djmaze d06fed09d6 Drop support for old browsers and some jQuery 2020-09-17 16:40:43 +02:00
djmaze 091c4ec811 Clone 3.5.1 from github 2020-09-17 16:27:00 +02:00
djmaze f300ec94ee https://github.com/neilj/Squire/pull/344 2020-09-14 12:33:36 +02:00
djmaze 8b53b189f8 Cleanup CSS and fix SquireUI css 2020-09-13 14:13:16 +02:00
djmaze a022139403 Added: browse/upload image button to SquireUI 2020-09-11 14:40:13 +02:00
djmaze a7cc115bfb Move SquireUI into libs.js 2020-09-11 12:39:56 +02:00
djmaze bdc961dfab Improved Squire with the missing 'plain' mode. 2020-09-10 18:47:28 +02:00
djmaze dd66824cd1 Added the modified Squire HTML editor 2020-09-09 18:45:33 +02:00
djmaze aeb5275648 Improved boot.js with existing global window.rl
Put dev/Storage/Settings.js in boots.js global rl.settings
2020-09-04 12:05:17 +02:00
djmaze 0e8bf13d5d Bugfix: the new endShowHide failed in Edge and mobile browsers
Cleanup bootstrap less files
2020-09-02 21:30:23 +02:00
djmaze 7135cc38fe Remove bootstrap Modal feature for improved transition effects (in future might use <dialog>) 2020-09-02 17:06:35 +02:00
djmaze eb5fb5342e Cleanup bootstrap 2020-09-01 21:50:17 +02:00
djmaze 1802dda136 Removed jQuery dependencies from Jua.js 2020-09-01 16:57:14 +02:00
djmaze 645831368d Again replaced some jQuery to native and cleaned up normalize.css without IE 2020-08-31 12:45:43 +02:00
djmaze 39ba67de4b Bugfix: bootstrap native dropdown failed for Compose "from" 2020-08-30 16:17:36 +02:00
djmaze 69fcc240e9 More jQuery to native (including bootstrap.js) 2020-08-30 10:30:50 +02:00
djmaze bdb36ec128 Use less jQuery, more native 2020-08-27 15:45:47 +02:00
djmaze 63af2e25ed v1.14.0-djmaze4 2020-08-19 12:39:19 +02:00
djmaze 9f73377a88 Bugfix: compose e-mail file upload failed to wrong conversion to ES2015
Must be a 39 degrees workplace failure
2020-08-15 20:11:56 +02:00
djmaze f5a444aa14 Removed opentip
Cleanup lightgallery
2020-08-13 13:16:08 +02:00
djmaze a8ef5ec75b Bugfix: Email addressparser
Cleanup vendor scripts
2020-08-12 11:49:40 +02:00
djmaze e7180a86ce Made eslint using 'browser' environment and added globals, because RainLoop is used in browsers.
This also allowed to remove all webpack 'externals' overhead.
2020-08-12 00:25:36 +02:00
djmaze c3a213802d Bugfix: jQuery UI classesElementLookup value is Object, not an Array 2020-08-11 23:52:36 +02:00
djmaze b9b9cd736f Replaced ProgressJS with simple native dropin 2020-08-10 10:40:25 +02:00
djmaze 4383281de6 Removed unused bootstrap code 2020-08-08 14:39:51 +02:00
djmaze a0dcd93fea Removed jQuery UI widgetSlice 2020-08-07 13:27:43 +02:00
djmaze 656fd72319 $.isArray() is deprecated
$.bind() is deprecated
$.parseJSON is deprecated
$.unique is deprecated
jQuery .bind() is deprecated
jQuery .unbind() is deprecated
jQuery .load() is deprecated
removed $.support.transition
2020-08-07 09:40:36 +02:00
djmaze bbd9f49dcd $.proxy is deprecated
$.trim is deprecated
2020-08-06 18:24:46 +02:00
djmaze ae1b7610fd Remove use of $.error in jquery-ui 2020-08-06 16:24:19 +02:00
djmaze 7584e9003f Cleanup ProgressJS 2020-07-30 12:17:41 +02:00
djmaze ea48f5060b isArray to native Array.isArray
isUnd(*) to native undefined === *
isFunc to native typeof * === 'function'
isObject to native typeof * === 'object'
microtime() to native Date().getTime();
noop to native ()=>{}
noopFalse to native ()=>false
noopTrue to native ()=>true
boolToAjax to native *?'1':'0'
Underscore.js to native
2020-07-29 21:49:41 +02:00
djmaze 2ba34532c2 JavaScript string compare '' is always a ToBoolean
See https://www.ecma-international.org/ecma-262/5.1/#sec-9.2
2020-07-28 17:20:14 +02:00
djmaze db5751cd00 Cleaner boot.js 2020-07-28 11:23:06 +02:00
djmaze d28e193556 cleanup Progress.js 2020-07-27 17:40:00 +02:00
djmaze c9d444250f Strip webpack and iframe support from Jua.js (only use xmlhttprequest) 2020-07-27 16:58:04 +02:00
djmaze 1b331aca32 Removed unused code from JavaScript files 2020-07-27 14:52:18 +02:00
djmaze a12a3815f9 deprecated jQuery.delegate() to jQuery.on() 2020-07-25 13:50:46 +02:00
djmaze 281a5df732 Cleanup custom Underscore.js 2020-07-23 20:50:20 +02:00
djmaze dca0ff02ed Use jQuery.slim
Underscore.js _.uniq(_.compact( to native Array.filter((value, index, self) => !!value && self.indexOf(value) == index)
Underscore.js _.compact to native Array.filter(value => !!value)
Underscore.js _.uniq to native Array.filter((value, index, self) => self.indexOf(value) == index)
Underscore.js _.values to native Object.values
Underscore.js _.flatten to native Array.flat
Underscore.js _.union to native Array.concat + unique filter
Underscore.js _.reduce to native Array.reduce
Underscore.js _.escape replaced with advanced htmlspecialchars()
Underscore.js _.memoize replaced
Now Underscore.js is a slim custom version (only _.debounce, _.defer & _.throttle)
2020-07-23 16:06:16 +02:00
djmaze 84ac7dc893 Get rid of deprecated $.ui.plugin 2020-07-20 21:40:36 +02:00
djmaze ec3fd5b7e4 Remove jquery-letterfx, just like cd55e3ccc2 2020-07-20 11:26:40 +02:00
djmaze f16f604f48 Get the stored resized layout working again 2020-07-17 15:04:50 +02:00
djmaze 1e71698b79 Improved initHorizontalLayoutResizer and initVerticalLayoutResizer with custom resizer 2020-07-17 13:46:49 +02:00
djmaze e3aaea8035 Get rid of jQuery.wakup
Get rid of jQuery UI resizable (use HTML5 with ResizeObserver/MutationObserver, work-in-progress not as beautiful yet)
Get rid of hidden download() iframe
2020-07-16 19:49:56 +02:00
djmaze fca0bb5d56 Bugfix broken jQuery UI 2020-07-16 11:07:28 +02:00
djmaze 854d723927 Upgrade to custom jQuery UI 1.12.1 due to errors with jQuery 3 2020-07-15 14:16:07 +02:00
djmaze eb731a4183 Updated inputosaurus.js to work with jQuery3 2020-07-09 16:01:41 +02:00
djmaze aae7883b99 Bugfix: bootstrap jQuery('#') syntax error
Changed: use ES2015
Changed: gulp uglify to terser
Removed: ChangePassword
Removed: nanoscroll
Removed: JS polyfills
2020-03-13 15:30:39 +01:00
djmaze 6e0d0b3b6e CRLF to LF 2020-03-11 14:17:52 +01:00
djmaze 4468d5bd22 Removed: twitter, google, dropbox, facebook, owncloud, modernizr from JavaScript 2020-03-11 12:55:03 +01:00
RainLoop Team 35ef89c2a6 Optimize building process 2018-03-30 00:43:46 +03:00
RainLoop Team 9dc3c97c79 Update translations 2018-03-06 22:26:43 +03:00
RainLoop d76fde37df Fix crippled contact names (#1447) 2017-09-27 20:58:15 +03:00
RainLoop 16ca116b30 Fix 'Horizontal scroll in message view broken' (close #1494) 2017-09-20 23:47:54 +03:00
RainLoop 39ddb49cd6 Fix Start reply at top of email (close #865) 2017-09-20 20:26:16 +03:00
RainLoop Team a72b95a868 Fix compose focus/cursor 2017-07-06 02:56:11 +03:00
RainLoop Team ab374bbb71 Many small fixes. 2017-07-06 01:31:41 +03:00
RainLoop Team 59128f285b Synchronize localizations from Transifex (Add da_DK) 2017-03-12 18:22:34 +03:00
RainLoop Team 2c3881abc6 Update ckeditor 2017-01-19 18:50:00 +03:00
RainLoop Team f383380d59 Update ckeditor 2017-01-13 01:50:30 +03:00
RainLoop Team 9d60dd0786 Add some signature improvements (#1238) 2016-10-27 00:25:15 +03:00
RainLoop Team 0bbb2f14a4 1.10.4.183
---
Fixes:
New login form style display problem since version 1.10.4 (#1196)
Collapse the TO: field in message view (#1199)
Paste with HTML tags fails (#1193)
2016-09-29 00:40:17 +03:00
RainLoop Team e5af98b04b Update ckeditor
Move e2e tests
Code refactoring
2016-09-12 23:50:21 +03:00
RainLoop Team 2f841524cb Add Persian language
Synchronize localizations from Transifex
2016-09-07 00:46:23 +03:00
RainLoop Team a60ffc06e1 Update ckeditor
Avoid empty commands
Small fixes
2016-09-01 23:41:36 +03:00
RainLoop Team 6b1fd1239f Fix signature adding 2016-08-31 00:31:51 +03:00
RainLoop Team 17669b7be0 es5 -> es2015 (last stage)
Signature plugin fixes
Add view decorator
A large number of fixes
2016-08-20 20:30:16 +03:00
RainLoop Team 0a2b826f71 Improve building process (es6 bundle) 2016-08-11 02:16:58 +03:00
RainLoop Team c3985da102 Move almost all libs to node_modules
Update libs
2016-07-30 18:35:08 +03:00
RainLoop Team f64cf601ce Fix OpenPGP importing (#1098)
+ Update openpgp.js lib
2016-07-12 23:23:08 +03:00
RainLoop Team d9418f9ee8 Update normalize.css (#1090) 2016-07-04 20:46:33 +03:00
RainLoop Team 28a125426a Add alias support (domains) 2016-06-11 01:20:09 +03:00
RainLoop Team c8e5bd2a45 Synchronize localizations from Transifex 2016-06-09 00:58:13 +03:00
RainLoop Team c0ab236440 Support regex extension (SIEVE) (#1043)
+ Update jquery
2016-05-27 00:52:24 +03:00
RainLoop Team 2fefad437e Stop using Google Charts for the 2-Factor-Auth QR-Code (#1044) 2016-05-26 22:37:02 +03:00
RainLoop Team c443f54e01 Webpack2 (first look)
Small fixes
2016-05-26 01:38:32 +03:00
RainLoop Team 72bf212f67 Improve scripts load system 2016-05-20 10:11:38 +03:00
RainLoop Team b64fedfacd Fix e-strip-animation class 2016-05-07 22:30:08 +03:00
RainLoop Team b6fcd8e992 Update jquery and knockout 2016-05-06 19:30:03 +03:00
RainLoop Team e3fa252cf2 Improve boot script 2016-05-06 18:14:40 +03:00
RainLoop Team a655b94aba Update openpgpjs (1.2.0 -> 2.3.0) (#1023) 2016-05-05 03:14:38 +03:00
RainLoop Team b0ffd84ac6 Add mobile version (beta) 2016-05-01 04:07:29 +03:00
RainLoop Team 3d42d5d608 Synchronize localizations from Transifex 2016-04-17 18:00:23 +03:00
RainLoop Team c926642bff PreRelease commit 2016-01-05 21:21:30 +03:00
RainLoop Team 445cd155e5 ES2015 first look / babeljs 2015-11-15 03:24:02 +03:00
RainLoop Team 5dcceaaca5 Added: support www.transifex.com
New format for translation files (yml)
https://www.transifex.com/rainloop/rainloop-webmail/
2015-11-12 20:11:52 +03:00
RainLoop Team 9cc68ef2b1 Added ckeditor to gitignore 2015-10-19 23:08:51 +04:00
RainLoop Team d5bafd8f9b Small fixes 2015-10-19 21:53:15 +04:00
RainLoop Team 52dcd44036 Updated: ckeditor 2015-10-14 21:28:58 +03:00
RainLoop Team c69faa4264 Added "word-break: break-word" for plain text messages. (#824) 2015-09-19 19:19:34 +03:00
RainLoop Team 87887373c1 Updated: ckeditor 4.5.3, jquery 1.11.3, openpgpjs 1.2.0
OpenPGP decrypt fix
+ Small fixes
2015-09-18 21:35:30 +03:00
RainLoop Team fc827326c4 Changed: photoswipe > lightGallery 2015-08-31 23:13:59 +03:00
RainLoop Team 723c2ac6b8 Vacation filter improvements
New Pgp encrypt/sign popup
2015-08-07 00:54:47 +04:00
RainLoop Team c99a46a118 Small improvements 2015-07-30 01:14:48 +04:00
RainLoop Team 5123841540 Pgp improvements 2015-07-29 21:23:10 +04:00
RainLoop Team 42bac6aa2f PreRelease fixes 2015-07-06 00:33:55 +04:00
RainLoop Team 34a9b8cbc5 OpenPGP improvements (first step)
openpgpjs: 0.7.2 -> 0.10.1
additional fixes
2015-06-23 01:34:52 +04:00
RainLoop Team 09334159c2 A lot small fixes 2015-06-23 01:34:51 +04:00
RainLoop Team 4457cdbc23 Improvements of message displaying (internal styles) 2015-06-23 01:34:50 +04:00
RainLoop Team 9a98bff931 Release fixes 2015-05-18 00:41:57 +04:00
RainLoop Team f91f74fe7c Release fixes 2015-05-12 20:33:02 +04:00
RainLoop Team 935fed3aef Pre release commit 2015-05-07 23:08:45 +04:00
RainLoop Team 104ac0806a Source refactoring 2015-05-04 20:52:24 +04:00
RainLoop Team 19f06c11d2 Added new language strings 2015-04-26 02:01:56 +04:00
RainLoop Team af2815cd61 Attachments control panel 2015-04-11 01:52:15 +04:00
RainLoop Team b7709c8117 Code refactoring 2015-04-07 20:40:27 +04:00
RainLoop Team 80c5e35a29 New styles for toltips (Opentip)
Selector new functionality
x-script tag support for templates
2015-04-02 01:59:03 +04:00
RainLoop Team bdd92429b0 Additional languages names and flags 2015-04-02 01:59:01 +04:00
RainLoop Team de06ab1a41 MAC OS drag & drop fixes (#562) 2015-03-31 00:55:07 +04:00
RainLoop Team 470b3645e2 Fixed PGP import 2015-03-26 16:46:17 +04:00
RainLoop Team c4aabb0cd4 Added q.min file 2015-03-26 02:16:53 +04:00
RainLoop Team 4a90e2406c Compose focus fixes (#547) 2015-03-21 02:22:06 +04:00
RainLoop Team f817a680a2 Updated Autolinker library (Closes #532) 2015-03-19 01:58:58 +04:00
RainLoop Team c23ba31e17 Promises (first look)
Thread dropdown
Small fixes
2015-03-14 18:27:44 +04:00
RainLoop Team 47bb848905 Added Tinycon (Unread message tab's icon) 2015-03-04 04:30:37 +04:00
RainLoop Team d7d88bef7c knockout 3.3 2015-02-21 18:09:20 +04:00
RainLoop Team 2038acc14a Added is.js library 2015-02-17 21:44:11 +04:00
RainLoop Team e96f297def Fixed "Mouse right click don't works correctly" (Closes #466)
+ small fixes
2015-02-17 17:32:41 +04:00
RainLoop Team e3064b10aa Fixed strange characters in plain text mode (Firefox) (Closes #462) 2015-02-17 17:32:11 +04:00
RainLoop Team 5c00815d31 Added Czech language 2015-02-16 06:53:17 +04:00
RainLoop Team 4c6fd9cdd1 Signature builder small changes 2015-02-16 05:21:18 +04:00
RainLoop Team 1a85330770 Small fixes and code refactoring 2015-02-16 01:58:24 +04:00
RainLoop Team d7e8aa04ac langs fixes 2015-02-12 22:08:51 +04:00
RainLoop Team 844afadd6f ckeditor fixes
demo-plugin
TemproryApcStorage
2015-02-12 21:56:49 +04:00
RainLoop Team 1119022916 Added individual signatures for every identity. 2015-02-08 05:12:34 +04:00
RainLoop Team 286ab567af Code refactoring 2015-02-03 05:56:26 +04:00
RainLoop Team abddb3d828 Pre release fixes and improvements 2015-02-01 19:44:44 +04:00
RainLoop Team 67c5e31e58 Added a new theme (Rain Drops)
Added a "video-on-login-screen" plugin
Added a few branding settings
2015-02-01 03:42:48 +04:00
RainLoop Team 965ea317e4 Updated ckeditor 2015-01-27 23:41:11 +04:00
RainLoop Team aa84077ac4 Sound notification
Additional code refactoring
2015-01-27 01:06:00 +04:00
RainLoop Team 43f19e29e8 Release commit 2015-01-10 00:27:49 +04:00
RainLoop Team 7ef9ebb45f Optimizations
Added "[labs]imap_folder_list_limit" setting (optimization)
2015-01-08 02:50:59 +04:00
RainLoop Team e3e7c1d963 Interface redesign (attachments, new preview pane layout) 2015-01-04 23:30:07 +04:00
RainLoop Team 735842bb88 Updated jquery (1.11.2) 2014-12-24 22:54:57 +04:00
RainLoop Team e4b286e257 Merged from sub repository (filters - step 4) 2014-12-18 01:02:29 +04:00
RainLoop Team 42b8a446c6 Merged from sub repository (updated ckeditor, filters - step 3)
Release commit
2014-12-06 01:01:33 +04:00
RainLoop Team ec7324b061 Merged from sub repository (updated ckeditor, filters - step 2) 2014-12-01 21:36:46 +04:00
RainLoop Team a57dc3720e Fixed "Missed semicolon" in letterfx.css 2014-11-22 16:39:44 +04:00
RainLoop Team 2545ce3cd9 Code refactoring 2014-11-12 20:46:54 +04:00
RainLoop Team ef81865ef2 Added "Custom Theme Configuration" (background) 2014-11-08 00:21:10 +04:00
RainLoop Team 0587d66d45 Small fixes 2014-11-06 21:53:15 +04:00
RainLoop Team 96e4741a57 Fixed "Viewing small (image) attachments" (Closes #369) 2014-11-06 16:00:36 +04:00
RainLoop Team 77a30c0b92 Login screen new interface (social buttons) 2014-10-30 18:09:10 +04:00
RainLoop Team 1423b88839 Added knockoutjs components
Added material design checkbox component
Added lang changing animation
2014-10-30 02:17:40 +04:00
RainLoop Team c8cda5fb5b Added Traditional Chinese (Taiwan) translation 2014-10-24 16:35:39 +04:00
RainLoop Team d68ab260ac Added Bulgarian translation 2014-10-21 21:06:20 +04:00
RainLoop Team 6acba46339 Updated Autolinker lib
Fixed short links detection (Closes #354)
2014-10-15 13:20:55 +04:00
RainLoop Team 8af2140e7a Fixed Swedish flag 2014-10-04 16:07:12 +04:00
RainLoop Team 0a95b79eb2 Update Autolinker library (Closes #337) 2014-10-03 13:00:59 +04:00
RainLoop Team a1cde2c246 Added swedish translation 2014-09-29 21:02:51 +04:00
RainLoop Team cf3fde8f19 Lithuanian translation (Update) 2014-09-29 20:55:13 +04:00
RainLoop Team 1066af98d4 Login password RSA encrypt/decrypt 2014-09-19 17:32:21 +04:00
RainLoop Team fdf317f7a6 Small fixes 2014-09-12 20:38:06 +04:00
RainLoop Team cdf812ae9a Update Jua 2014-09-11 19:00:05 +04:00
RainLoop Team 7a374ebe03 Fixed Opening an email with specific content „hangs” RainLoop in the browser (Closes #308)
Code refactoring
2014-09-05 19:53:44 +04:00
RainLoop Team 27d4bd74ad browserify -> webpack
Code refactoring
2014-09-05 02:49:03 +04:00
RainLoop Team abdd452be6 Update ckeditor 2014-08-31 00:37:36 +04:00
s4l1h 6bce655764 translate turkish language 2014-08-30 20:40:47 +03:00
RainLoop Team 8013c0dc25 Added csscomb
Small fixes
2014-08-29 19:30:52 +04:00
RainLoop Team 5009546a91 Small fixes 2014-08-28 18:18:07 +04:00
RainLoop Team 36329110e5 Code refactoring 2014-08-26 19:24:47 +04:00
RainLoop Team 69e3ebb146 Update knockoutjs 2014-08-19 14:33:59 +04:00
RainLoop Team 25cf891037 Added async script loader 2014-08-14 13:26:58 +04:00
RainLoop Team 86f282f885 Update openpgpjs library
Small changes
2014-08-07 13:34:20 +04:00
RainLoop Team 777d014403 Experiments with RSA encryption 2014-07-25 02:28:10 +04:00
RainLoop Team bbcbfdc150 Experiments with RSA encryption 2014-07-24 20:18:03 +04:00
RainLoop Team e4333a6f90 Experemental Plain2Html/Html2Plain convertor (+ jQuery linkify) 2014-07-22 03:58:13 +04:00
RainLoop Team 4e6571691d Fix css - Flag of the United Kingdom 2014-07-04 00:33:43 +04:00
RainLoop Team b244745cf5 Added Ukrainian language 2014-07-02 22:26:38 +04:00
RainLoop Team 9e33ac1350 Prepare Slovenian language 2014-06-25 00:56:05 +04:00
RainLoop Team 333c063cf1 Change build system (Grunt -> Gulp)
Remove attachments on reply (Closes #195)
Do not show deleted (flag \Deleted) messages (Closes #185)
Release commit
2014-06-16 23:56:11 +04:00
RainLoop Team 5236810d6b Added tests
Small fixes
2014-05-29 20:01:10 +04:00
RainLoop Team d3ee36bb97 Fix not spam translate (Closes #168)
Small refactoring and fixes
2014-05-16 19:57:50 +04:00
RainLoop Team 0ca00dec40 Contacts tags support (unstable - step 1).
+ Small fixes
2014-05-13 12:29:36 +04:00
RainLoop Team 53dc509d79 Many interface improvements, optimizations 2014-05-07 20:04:32 +04:00
RainLoop Team f6dce368e0 Update jquery (1.11.1)
Small changes
Release 1.6.6
2014-05-05 02:08:56 +04:00
RainLoop Team f36cb72b82 Interface optimizations
moment js update
2014-04-30 20:24:45 +04:00
RainLoop Team d430de9e93 Interface optimizations 2014-04-29 19:31:49 +04:00
RainLoop Team 7552ffe241 Added export contacts (csv)
Interface optimizations
2014-04-29 15:49:30 +04:00
RainLoop Team 61a7a9c078 Update openpgpjs 0.3.0 -> 0.5.1 (#142) 2014-04-26 20:09:38 +04:00
RainLoop Team d29f20789f Synchronizing with a remote CardDAV server (#42, #138, #139)
+ Updated contacts sql shema (breaking changes)
+ Fixes
- Removed SabreDAV Server
- Removed Contacts Sharing (awhile, code refactoring)
2014-04-26 01:50:17 +04:00
RainLoop Team 54a4c2657a Added nano scroller shadow 2014-04-23 20:09:56 +04:00
RainLoop Team d961fa480a Dropdown menu keyboard navigation
Keyboard shortcuts help popup (Shift + / )
2014-04-12 05:05:57 +04:00
RainLoop Team bb16353c1f Added recipent autofill (Closes #125) 2014-04-11 00:22:10 +04:00
RainLoop Team 05f455c34e Keyboard shortcuts optimizations (#70, #109) 2014-04-08 23:22:17 +04:00
RainLoop Team 8979687f88 Added keyboard shortcuts (part 1) (#70)
Scrolling in message view (#109)
2014-04-08 01:03:58 +04:00
RainLoop Team 94a3c0a9af Added Slovak language 2014-04-05 23:58:01 +04:00
RainLoop Team a158164e80 Two Factor Authentication (first look)
knockoutjs 3.1.0
New icons (archive, buy, filter)
Many small fixes.
2014-03-28 20:02:39 +04:00
RainLoop Team ce60192120 Added Romanian language
+ small fixes
2014-02-13 19:45:18 +04:00
RainLoop Team 10349392e8 Add hungarian language file hu.ini (closed #67) 2014-02-07 13:37:19 +04:00
RainLoop Team 5d58128f0e Update jquery (1.11.0) 2014-01-28 01:39:52 +04:00
RainLoop Team 098a04eab6 OpenPGP first look (#53) 2014-01-28 01:34:54 +04:00
RainLoop Team 38672e1672 Simple prefetch functionality (ifvisible.js)
config:
[labs]
allow_prefetch
2014-01-26 18:23:37 +04:00
RainLoop Team 17b2afcf22 More responsive interface with auto resize (#10) 2013-12-30 01:13:35 +04:00
RainLoop Team e1adfdb504 Small ui fixes 2013-12-25 19:53:47 +04:00
RainLoop Team 0ec965bccb Drag&Drop recipients emails on compose screen. 2013-12-20 20:15:29 +04:00
RainLoop Team 2d9ff7d63f Added functionality to share contacts
Added setting "Automatically add recipients to your address beech"
Further development of editing screen contact
2013-12-19 04:53:42 +04:00
RainLoop Team 394e22520e Autocreate system folders in folder list request.
Additional plugin hooks
2013-12-18 03:00:57 +04:00
RayMan f729512f53 Add Norwegian language 2013-12-17 17:22:05 +04:00
RainLoop Team 975947a948 Minor contacts interface improvements.
Move intervals to pub/sub system
2013-12-15 15:02:50 +04:00
RainLoop Team b4e52e768c Move from icomoon to fontastic 2013-12-15 02:42:32 +04:00
RainLoop Team dcc486a114 New Ask popup
Fix inputosaurus fake span width detection
Add Esc trigger to all popups (#29)
Many minor fixes
2013-12-14 03:27:12 +04:00
RainLoop Team 5877ff77dd Add jQuery finger lib
Add autofocus in "to" field 
+ small inputosaurus improvement
2013-12-13 14:11:30 +04:00
RainLoop Team efb9db36d2 Update JUA auploder
Small less fixes
2013-12-09 02:14:55 +04:00
RainLoop Team f22b90dbe3 Add copy message functionality to drag&drop (drag + shift) [#42]
+ Update jquery to 1.10.2
2013-12-09 01:32:19 +04:00
RainLoop Team efdca7ef77 Merge new-contacts-api
New interface
Contact storage move to plugin
2013-12-07 02:07:29 +04:00
RainLoop Team 867dcc8f7e The final commit personal address books branches before merging 2013-12-07 01:50:19 +04:00
RainLoop Team 832894716c Add Korean language 2013-12-03 04:37:24 +04:00
RainLoop Team 93c7e05994 Inputosaurus small fixes 2013-11-29 19:53:46 +04:00
RainLoop Team afb7ec8c4e Select2 replaced by inputosaurus + ui-autocomplete
+ a lot of small fixes.
2013-11-27 02:34:05 +04:00
RainLoop Team ef3d4f8576 update jquery-ui 2013-11-27 02:05:27 +04:00
RainLoop Team b61142f29b Add Polish and Portuguese (Portugal) languages 2013-11-24 02:04:10 +04:00
RainLoop Team 101f956fa8 Add Simplified Chinese language.
Update language popup.

+ Merge conflict origin/master
2013-11-19 21:41:21 +04:00
RainLoop Team 67e6084276 Add build task in Grunt script.
Minor fixes
2013-11-17 02:02:13 +04:00
RainLoop Team 4cc2207513 Uploading and preparing the repository to the dev version.
Original unminified source code (dev folder - js, css, less) (fixes #6)
Grunt build system
Multiple identities correction (fixes #9)
Compose html editor (fixes #12)
New general settings - Loading Description
New warning about default admin password
Split general and login screen settings
2013-11-16 02:21:12 +04:00