Lauri Ojansivu
b6d7c71cc8
Merge branch 'edge' into meteor-1.8
2019-05-09 14:27:34 +03:00
Justin Reynolds
daf314b037
Fix missing profile checks
2019-05-08 16:54:15 -05:00
Guy Zylberberg
1bdc1017d6
Fixed RTL issue #884
2019-05-08 21:30:38 +03:00
Lauri Ojansivu
4282906833
Merge branch 'edge' into meteor-1.8
2019-04-24 14:41:37 +03:00
Lauri Ojansivu
2d966863e3
Merge branch 'Akuket-edge' into edge
2019-04-24 13:51:00 +03:00
guillaume
259ff3436f
fix lints
2019-04-24 12:35:00 +02:00
Lauri Ojansivu
a750ecaafd
- Remove from card menu, because they also exist at card:
...
members, labels, attachments, dates received/start/due/end.
Thanks to sfahrenholz, jrsupplee and xet7 !
Closes #2242 ,
related https://community.vanila.io/?t=517527b6-3d84-4e9d-b2ec-6f560a9cfdf7
2019-04-24 13:32:36 +03:00
guillaume
8b3601248d
Loading authentication page
2019-04-24 12:28:11 +02:00
Lauri Ojansivu
202f4235d7
Merge branch 'edge' into meteor-1.8
2019-04-23 19:51:53 +03:00
guillaume
8137f2692f
remove feature
2019-04-23 18:00:09 +02:00
Lauri Ojansivu
d9e361cf1b
Merge branch 'edge' into meteor-1.8
2019-04-23 14:09:39 +03:00
hupptechnologies
14ef0ab6d1
Issue : Mobile UI Center cards in list view #2371
...
Resolved #2371
2019-04-23 15:09:09 +05:30
Lauri Ojansivu
02819ca169
Merge branch 'edge' into meteor-1.8
2019-04-20 16:51:57 +03:00
Lauri Ojansivu
5993d6862b
Change enter => search
2019-04-20 16:46:26 +03:00
guillaume
e63eee0c68
fix lints
2019-04-19 16:39:14 +02:00
guillaume
070feb4b66
Number of users
2019-04-19 16:17:17 +02:00
guillaume
308417852c
Search user in admin panel
2019-04-19 14:57:52 +02:00
hupp-mac-4
dc11e0c79c
Issue: Full width of lists and space before first list #2336
...
Resolved #2336
2019-04-18 15:41:23 +05:30
Lauri Ojansivu
d8554ec67e
Combine to same line.
2019-04-08 10:58:49 +03:00
Lauri Ojansivu
076dda8bd3
Merge branch 'edge' into meteor-1.8
2019-04-08 10:33:24 +03:00
Lauri Ojansivu
eada773048
[Fix: Description of Board is out of visible after Feature "Duplicate Board"]( https://github.com/wekan/wekan/issues/2324 ).
...
Thanks to sfahrenholz and xet7 !
Closes #2324
2019-04-08 09:03:55 +03:00
Lauri Ojansivu
4356aaff23
Merge branch 'edge' into meteor-1.8
2019-04-06 13:56:09 +03:00
Lauri Ojansivu
0f15b6d198
- Add Duplicate Board tooltip, and remove adding text "Copy" to duplicated board.
...
Thanks to xet7 !
2019-04-06 13:47:15 +03:00
Lauri Ojansivu
ebfc8e5a1b
Fix lint errors.
...
Thanks to xet7 !
2019-04-06 09:00:13 +03:00
Lauri Ojansivu
56cccc6781
Merge remote-tracking branch 'Angtrim/feature-duplicate' into edge
2019-04-06 08:46:40 +03:00
Angelo Gallarello
48216e1653
Minor fixes
2019-04-05 10:38:39 +02:00
hupptechnologies
8aca82a593
Issue: Center (or reduce left margin) in card view on mobile browser #2188
...
Resolved #2188
2019-04-05 13:27:41 +05:30
Lauri Ojansivu
0b9afcb443
Merge branch 'edge' into meteor-1.8
2019-04-02 15:28:30 +03:00
Benjamin Tissoires
261754f18b
list: do not use IntersectionObserver to reduce CPU usage
...
Switch back to a custom spinner detection, as the IntersectionObserver
is eating a lot of CPU resources on idle.
This should also take care of #2250 properly: the previous `onDestroyed()`
was removing the resize and scroll callbacks, but they were not unique
enough, and they were shared across swimlanes. So if a list had 2 swimlanes
with spinners, when one was removed, the other was not triggering its
callbacks anymore.
Related: #2294
2019-04-01 23:54:35 +02:00
Lauri Ojansivu
a80cd455de
- [Add back zoom fixes of #2250 ]( https://github.com/wekan/wekan/issues/2250 ).
...
Thanks to xet7 !
2019-03-30 19:06:09 +02:00
Lauri Ojansivu
df32545b07
Revert spinner etc fixes of Wekan v2.56, because of some new bugs.
...
Thanks to gerroon !
Related #2250
2019-03-29 14:27:37 +02:00
Lauri Ojansivu
5841a3abea
Merge branch 'edge' into meteor-1.8
2019-03-27 17:53:06 +02:00
Benjamin Tissoires
e2d0faa539
list: disconnect infinite-scroll observer to prevent memory leak
2019-03-26 16:28:25 +01:00
Benjamin Tissoires
cbb6c82113
list: move the spinner into its own blaze component
...
This way, when a list is at the maximum number of cards shown and adding
a new card would make the spinner appear, the list would load the next
N items.
This can happen if user A and B are both looking at the same board,
B adds a new cards, and A will see the spinner and will not be able to
remove it.
2019-03-26 16:27:52 +01:00
Benjamin Tissoires
00376b43f8
list: make sure the spinner of infinite scrolling doesn't show on load
...
When loading a board on a high resolution screen, there is a chance there
is not enough cards displayed and the spinner is still there, spinning
forever.
Add an idle callback that checks if the spinner is still there, and while
it is there, extend the number of cards to show.
Fixes #2250
2019-03-26 16:26:59 +01:00
Benjamin Tissoires
fb163a2493
list: simplify infinite scrolling
...
Use IntersectionObserver instead of custom made one.
This adds the benefit of not loading any extra cards if the list is
not shown on screen
2019-03-26 16:25:49 +01:00
Lauri Ojansivu
67c3f663a1
Merge branch 'edge' into meteor-1.8
2019-03-25 17:15:18 +02:00
Lauri Ojansivu
0039fe09be
Removed commented out text.
2019-03-24 17:44:03 +02:00
Lauri Ojansivu
4f4f3e4593
Merge branch 'edge' into meteor-1.8
2019-03-23 21:35:55 +02:00
Lauri Ojansivu
994314cfa3
Fix filenames and urls.
2019-03-23 21:30:41 +02:00
Lauri Ojansivu
ab4774a59a
Merge branch 'edge' into meteor-1.8
2019-03-22 13:10:31 +02:00
Lauri Ojansivu
0363e6f122
Remove extra title quotes, so that Custom Product Name comes visible.
...
Thanks to xet7 !
2019-03-22 01:35:53 +02:00
Lauri Ojansivu
2969161afb
- More whitelabeling.
...
Thanks to xet7 !
2019-03-21 20:27:21 +02:00
Lauri Ojansivu
365e8455e6
Merge branch 'edge' into meteor-1.8
2019-03-21 00:40:46 +02:00
Lauri Ojansivu
f8cbbfc2cd
Merge pull request #2270 from andresmanelli/fix_2266
...
Fix #2266
2019-03-21 00:21:19 +02:00
Lauri Ojansivu
dce89bcfa8
Merge branch 'edge' of https://github.com/andresmanelli/wekan into andresmanelli-edge
2019-03-20 19:30:44 +02:00
Andrés Manelli
9651d62b96
Fix #2266
2019-03-18 22:55:56 +01:00
Andrés Manelli
777d9ac353
Lint fix
2019-03-16 23:15:30 +01:00
Andrés Manelli
d01fccd949
- Fix card copy & move between boards with customFields
...
- Fix card copy & move between boards with labels with same name
- Fix activities for labels when copying and moving card
- Fix activities for customFields when copying and moving card
2019-03-16 22:49:45 +01:00
Andrés Manelli
4cd0d1c397
Migrate customFields
2019-03-16 22:49:45 +01:00