djmaze
676de1ed23
Simplify AppUserStore.contactsIsAllowed
2021-03-17 10:05:22 +01:00
djmaze
eff92c3152
Cleanup AppUserStore
...
Simplify KeyState/Focused as Scope enum
2021-03-16 16:06:16 +01:00
djmaze
227db0e0c3
Simplify MessageUserStore
2021-03-12 16:54:37 +01:00
djmaze
6a454ec624
Convert user stores to single object instances
...
Removed unused ContactUserStore.exportingCsv and ContactUserStore.exportingVcf
2021-03-10 22:41:35 +01:00
djmaze
e8deb4ff16
Remove capa.Folders and always allow mailbox folders
2021-03-06 10:07:54 +01:00
djmaze
fb03687528
Revamp Issue #51 to make the whole "change password" thing a plugin
2021-03-01 00:52:46 +01:00
djmaze
1a82dde49b
https://github.com/the-djmaze/snappymail/issues/51
2021-02-24 22:03:14 +01:00
djmaze
db0d03db83
Bugfix: conflicting File object with native JS
...
Cleanup: Stores and tooltips
2021-02-17 14:40:21 +01:00
djmaze
d7994ddab6
Revamp Mobile/Desktop switcher without completely reloading.
...
Remove switcher from login page, it became useless.
2021-02-16 20:12:23 +01:00
djmaze
b1c7bd2c50
Improve and cleanup isMobile
2021-02-15 16:05:38 +01:00
djmaze
10f9ce39d9
Revamp mobile including CSS flexbox for messageListItem
2021-02-15 15:20:22 +01:00
djmaze
8c33b17882
Bugfix: mailbox search pagination failed
2021-02-12 14:57:18 +01:00
djmaze
e3376c244e
Bugfix: pagination failed because Crossroads routes with higher priority are added last
2021-02-10 13:12:27 +01:00
djmaze
7ccc44616d
Small code cleanups and fix translations
2021-01-27 00:26:31 +01:00
djmaze
b31bf3d7f5
Improved js minification
2021-01-26 11:46:30 +01:00
djmaze
ad8fd8879b
This version uses Rollup instead of WebPack.
...
Due to that the code is smaller and has changes to prevent Circular Dependencies
2021-01-25 22:00:13 +01:00
djmaze
f3bfa0e8c1
Cleanup and split Enums
2021-01-24 22:58:06 +01:00
djmaze
1535dd00f1
cleanup webpack export references
2021-01-22 16:32:08 +01:00
djmaze
b6f0b634fb
Cleanup calls to Knockout observableArray
...
Improved Knockout observableArray
2021-01-22 12:23:20 +01:00
djmaze
a28b5c2b6c
Cleanup and deduplicate languages
2021-01-21 17:21:19 +01:00
djmaze
6f585e1f1d
Use Intl.DateTimeFormat instead of momentjs where we can
...
Need to solve the Intl.RelativeTimeFormat to drop momentjs
2020-10-15 00:26:40 +02:00
djmaze
efcefbaf78
Cleanup CSS and drop bMobileDevice detection.
...
Touch devices can be any size and can use (bluetooth/usb-c mouse/keyboard) these days.
It's all about pixels and currently if the mode is mobile/no-mobile (this can be improved later).
2020-09-30 12:31:34 +02:00
djmaze
467f615713
Move Knoin routOff, routOn, routReload & setHash to rl.route.*
2020-09-16 20:35:29 +02:00
djmaze
b904eca98e
Cleanup __APP__/getApp code
2020-09-15 09:29:25 +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
7135cc38fe
Remove bootstrap Modal feature for improved transition effects (in future might use <dialog>)
2020-09-02 17:06:35 +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
496c8f59ae
Removed User About Screen, it is unused
2020-08-24 21:05:32 +02:00
djmaze
7a21694396
Drop windowResize/windowResizeCallback in favor of ResizeObservable
2020-08-19 12:34:05 +02:00
djmaze
97a73c6639
Replace timeOutAction() with debounce
...
Replace delegateRun()
Revert my throttle/debounce setTimeout() to Function.prototype[throttle/debounce]
2020-08-18 20:24:17 +02:00
djmaze
9f1ea1a0fd
Bugfix boostrap alerts.less was accidentally removed
...
Bugfix Date.fromNow('past'/'future') reversed
Replace Events[pub/sub]('interval.*') with setInterval()
Events[pub/sub] to native
Cleanup knockout extensions
Replaced momentToNode with proper HTML5 <time>
Cleanup Momentor
2020-08-14 20:35:39 +02:00
djmaze
6541a1de7c
Remove Common/Enums Magics.*
2020-08-13 22:58:41 +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
e1b274fcb4
Bugfix: scrollTop/scrollLeft never worked because .b-content has overflow:auto not the sub-div .content
2020-08-06 16:14:50 +02:00
djmaze
97bf6f70b8
Remove Prem code
2020-07-30 15:11:58 +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
43c92a82e6
Underscore.js _.delay() to native setTimeout()
2020-07-22 20:28:25 +02:00
djmaze
a5d41edb24
Underscore.js _.each() to native Array.forEach() (optional with Object.entries/values)
2020-07-22 14:49:18 +02:00
djmaze
9c0072d626
Underscore.js _.find() to native Array.find()
2020-07-22 10:43:19 +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
4468d5bd22
Removed: twitter, google, dropbox, facebook, owncloud, modernizr from JavaScript
2020-03-11 12:55:03 +01:00
RainLoop Team
08333610ce
Update dependencies
2019-12-24 22:05:46 +03:00
RainLoop Team
8a0be3212d
prettier --write
2019-07-04 22:19:24 +03:00
RainLoop Team
b244462fa5
update gulp and gulpfile
2019-06-29 17:16:09 +03:00
RainLoop Team
425f0ee3f6
Small fixes
2017-08-07 18:09:14 +03:00
RainLoop Team
709eeddd09
Small fixes
2017-07-11 15:40:31 +03:00
RainLoop Team
8da988fef2
Synchronize localizations from Transifex
...
Update package.json dependencies
Fix eslint errors
webpack 2 -> webpack 3
2017-06-24 22:26:27 +03:00
RainLoop Team
f0e9d1a6d5
Add new "Move to folder" button
2017-02-08 20:48:53 +03:00
RainLoop Team
9d60dd0786
Add some signature improvements ( #1238 )
2016-10-27 00:25:15 +03:00
RainLoop Team
1b7c6f76d1
Fix html parser
...
Add "login.active_backgroud" setting
2016-10-20 22:38:29 +03:00
RainLoop Team
52018b40e8
Add login background animation
2016-10-18 22:49:54 +03:00
RainLoop Team
ae996b75f1
Updated: dependencies
...
+ small fixes
2016-10-18 21:28:42 +03:00
RainLoop Team
e6e0b02849
Code refactoring
...
Flow first look
2016-09-10 02:27:53 +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
e88c193334
*.jsx -> *.js
2016-08-11 02:34:09 +03:00
RainLoop Team
cec53b111f
Code refactoring (5) (es5 -> es2015)
2016-07-17 18:05:15 +03:00
RainLoop Team
d7ab67a460
Code refactoring (4) (es5 -> es2015)
2016-07-15 22:54:37 +03:00
RainLoop Team
e49f3c6692
Code refactoring (3) (es5 -> es2015)
2016-07-10 17:03:22 +03:00
RainLoop Team
a2308e251b
Code refactoring (2) (es5 -> es2015)
2016-07-07 02:11:13 +03:00
RainLoop Team
8e8a041032
eslint (additional rules)
2016-07-01 01:05:04 +03:00
RainLoop Team
77a1d3f3df
jshint -> eslint
2016-06-27 23:55:37 +03:00
RainLoop Team
08ccf55577
js -> jsx
2016-06-07 00:58:44 +03:00
RainLoop Team
b0ffd84ac6
Add mobile version (beta)
2016-05-01 04:07:29 +03:00
RainLoop Team
1391648e1b
Split application data
2016-04-30 02:42:18 +03:00
RainLoop Team
53cf543795
babeljs: step 2
2015-11-18 23:10:01 +03:00
RainLoop Team
52dcd44036
Updated: ckeditor
2015-10-14 21:28:58 +03:00
RainLoop Team
4457cdbc23
Improvements of message displaying (internal styles)
2015-06-23 01:34:50 +04:00
RainLoop Team
8480a978bc
Allow packages for community edition.
2015-05-20 17:09:21 +04:00
RainLoop Team
763fae345b
Capability improvements
...
Additional branding options
2015-05-20 15:46:34 +04:00
RainLoop Team
2f482a6288
Added Allow/Disallow multiple identities
2015-05-18 00:41:59 +04:00
RainLoop Team
9a98bff931
Release fixes
2015-05-18 00:41:57 +04:00
RainLoop Team
104ac0806a
Source refactoring
2015-05-04 20:52:24 +04:00
RainLoop Team
f5f067f1f3
Small fixes
2015-04-25 02:19:20 +04:00
RainLoop Team
03d26bc4c6
New thread list logic (step 2)
2015-04-21 02:39:14 +04:00
RainLoop Team
b656b6365b
New thread list logic (step 1)
2015-04-20 23:49:51 +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
3dac6809d1
Admin Panel localization ( #467 )
2015-03-28 02:09:36 +04:00
RainLoop Team
c4aabb0cd4
Added q.min file
2015-03-26 02:16:53 +04:00
RainLoop Team
147dce6e4a
Momentor (moment optimization)
2015-03-07 04:41:38 +04:00
RainLoop Team
47bb848905
Added Tinycon (Unread message tab's icon)
2015-03-04 04:30:37 +04:00
RainLoop Team
4eaef23cc7
Code refactoring
2015-02-22 20:35:17 +04:00
RainLoop Team
31860420cb
Code refactoring
2015-02-22 02:00:51 +04:00
RainLoop Team
276e8c48e8
Small fixes
2015-02-20 02:13:27 +04:00
RainLoop Team
9a58fd0a66
Plugin system enhancements (Custom user's settings tabs)
2015-02-19 05:04:30 +04:00
RainLoop Team
bb551e4ec8
Added auto logout option
2015-02-19 01:19:24 +04:00
RainLoop Team
7807138b7b
Fixed missing identity section ( Closes #456 )
2015-02-16 17:47:02 +04:00
RainLoop Team
1a85330770
Small fixes and code refactoring
2015-02-16 01:58:24 +04:00
RainLoop Team
6116597f6f
Many fixes
...
New ownCloud package with a built-in webmail
2015-02-12 01:41:07 +04:00
RainLoop Team
1119022916
Added individual signatures for every identity.
2015-02-08 05:12:34 +04:00
RainLoop Team
493191375f
Identities refactoring and improvements (Reply-To and BCC)
2015-02-06 19:29:34 +04:00
RainLoop Team
286ab567af
Code refactoring
2015-02-03 05:56:26 +04:00
RainLoop Team
79233ad83c
Added counters of unread messages for additional accounts ( #377 )
2015-02-02 00:48:49 +04:00
RainLoop Team
0735071f1c
mailto links fixes
...
Filters interface fixes
DKIM status a new message
2015-01-31 23:00:10 +04:00
RainLoop Team
aa84077ac4
Sound notification
...
Additional code refactoring
2015-01-27 01:06:00 +04:00
RainLoop Team
b42ce01e7e
Code refactoring (Translator, Stores, ko)
2015-01-26 03:13:12 +04:00
RainLoop Team
68cc322bd5
Sieve filters (interface/vacation action)
2015-01-20 01:20:12 +04:00
RainLoop Team
bce962328d
Release fixes
2015-01-09 03:31:31 +04:00