yenda
47bae76c73
remove group-chat-local-version
2019-09-17 17:09:22 +02:00
yenda
ee042bd1c4
10x perf improvement on safe-merge
...
safe merge was using way too much inefficient code for such an important
function
it is rewritten using a reduce. the performance improvement is 10 times
and should really show up when adding messages
in repl session the new merge was much slower on the error case of merging
fx with common keys but it must never happen in production as it means
the app is broken
status-im.utils.fx> (time (dotimes [x 100] (fast-merge {:a 1 :b 2 :filters/load-filters [{:a 1 :b 2}]} {:c 3 :filters/load-filters [{:d 1 :b x}]})))
"Elapsed time: 19.000000 msecs"
nil
status-im.utils.fx> (time (dotimes [x 100] (safe-merge {:a 1 :b 2 :filters/load-filters [{:a 1 :b 2}]} {:c 3 :filters/load-filters [{:d 1 :b x}]})))
"Elapsed time: 183.000000 msecs"
status-im.utils.fx> (time (dotimes [x 100] (fast-merge {:a 1 :c 2 :filters/load-filters [{:a 1 :b 2}]} {:c 3 :filters/load-filters [{:d 1 :b x}]})))
"Elapsed time: 2224.000000 msecs"
2019-09-17 17:09:22 +02:00
yenda
747dec908e
remove yellowbox warnings for componentWillMount and WillUpdate
2019-09-17 17:09:22 +02:00
yenda
e8e78bdec1
require handlers in cljs ns for macroexpension
2019-09-17 17:09:14 +02:00
Dmitry Novotochinov
1df30f7447
handle initialized cards
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-09-16 11:14:35 +03:00
Dmitry Novotochinov
b4ffb5b3ea
[ #8939 ] hide keycard options from ios
...
Signed-off-by: Dmitry Novotochinov <dmitry.novot@gmail.com>
2019-09-13 17:42:54 +03:00
bitsikka
d472cfcddd
[8978] fix - chat text ending with new-line breaks chat-list layout
...
Signed-off-by: yenda <eric@status.im>
2019-09-13 14:16:09 +02:00
jiachen
62442d70d5
fix: issue #8823 modify words count row height
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-13 12:17:09 +02:00
Pedro Pombeiro
9feb31bd3b
Upgrade react-native to 0.60.5
...
- Use community net-info, react-native-webview instead of deprecated react-native classes
- Remove react-native-tcp
- Upgrade react-native libs (react-native-camera, react-native-firebase, react-native-mail, react-native-udp, react-native-webview-bridge)
- Do not include `:react-native-android` module explicitly
- Take advantage of RN AutoLinking
- nix: Update Gradle dependencies
2019-09-12 16:13:42 +02:00
yenda
5db0a58ab8
remove unused deps and document the others
...
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2019-09-12 16:12:46 +02:00
yenda
f538cfe848
remove web3 dependency
2019-09-12 15:51:57 +02:00
yenda
69819df39a
fix dependencies and remove js-sha3
2019-09-12 15:51:57 +02:00
bitsikka
edf896f2e5
[8957] fix - Wallet address can't be copied by tapping on it
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-12 11:12:33 +02:00
Andrea Maria Piana
e6c5dd6c81
Dont try to use nil as a function
...
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2019-09-12 08:52:03 +02:00
bitsikka
f981dbb43b
list-item suppliment/fixes
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-11 16:49:52 +02:00
Vitaliy Vlasov
b215292b23
Preserve text-inputs default value
...
Signed-off-by: Vitaliy Vlasov <siphiuel@gmail.com>
2019-09-10 13:01:13 +03:00
yenda
c3dd950286
remove realm
...
Signed-off-by: yenda <eric@status.im>
2019-09-09 18:40:15 +02:00
yenda
172038b70d
integrate mailserver-ranges api
2019-09-09 18:39:49 +02:00
Andrey Shovkoplyas
277f9ffda5
fixed fx macro on ios added troubleshooting.md
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-09 13:48:25 +02:00
Vitaliy Vlasov
93b8fa01ed
Comment away screens
...
Signed-off-by: yenda <eric@status.im>
2019-09-06 14:48:31 +02:00
Andrey Shovkoplyas
d07c9c6613
fixed :background-color on Android crash
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-06 13:33:18 +02:00
Andrey Shovkoplyas
b18a044146
ui elements
2019-09-06 12:28:16 +02:00
yenda
6be85f46a5
[fix 8702] hash passwords before sending them to status-go
...
fix #8702
- use ethereum.utils sha3 function to hash passwords before sending them
to status-go
- some native calls take password as one of their params: they now take
hashed-password (still a string, only relevant for status-react caller)
- some native calls take password within a map of rpc params: it now
needs to be hashed with `ethereum.core/sha3`
Signed-off-by: yenda <eric@status.im>
2019-09-05 18:13:10 +02:00
yenda
d312192209
clean up native-module
...
- remove impl/modules.cljs namespace because it was needlessly redundant
- remove `create-account` unused call
- add documentation for some calls
- only keep `(status)` check for relevant calls that are failing tests
because they are evaluated
2019-09-05 18:09:56 +02:00
yenda
dbf8d60f8b
integrate status-go mailserver-topics api
...
Signed-off-by: yenda <eric@status.im>
2019-09-05 18:08:03 +02:00
yenda
1147466362
integrate status-go mailserver api
2019-09-05 18:07:17 +02:00
bitsikka
843de6aa90
fix profile photo icon - no border in non-identicon photo
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-05 14:56:53 +02:00
Pedro Pombeiro
66b982c3fb
Use react-native net-info community package
...
Signed-off-by: yenda <eric@status.im>
2019-09-05 14:16:28 +02:00
Andrey Shovkoplyas
1475bb6cf6
security #7
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-04 16:36:22 +02:00
Andrea Maria Piana
e7fa010088
Move gaps to status-go
...
This commit moves gaps to status-go.
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2019-09-04 15:53:48 +02:00
yenda
ef36ece15b
[fix 8829] fix wrong password behavior on login
...
fix #8829
Signed-off-by: yenda <eric@status.im>
2019-09-04 13:20:38 +02:00
yenda
6427061bad
[ fix #8813 ] status-go version is shown as N/A
...
fix #8813
Signed-off-by: yenda <eric@status.im>
2019-09-04 13:18:51 +02:00
bitsikka
df66b73054
revert unnecessary :chats/last-message-content subscription
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-04 12:24:48 +02:00
Andrey Shovkoplyas
d21ea6e8f6
security #4 recovery keyboard
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-03 15:34:51 +02:00
yenda
3ef0433d7b
fix red screen on hot reloading
...
Signed-off-by: yenda <eric@status.im>
2019-09-03 13:17:55 +02:00
yenda
45be9b66db
fix subtitle in list items
...
arguments were missing in reagent-render args so component wasn't
reacting to changes
Signed-off-by: yenda <eric@status.im>
2019-09-03 13:17:09 +02:00
b-m-f
09c8d858ed
Show group name in group-chat header
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-03 11:03:06 +02:00
bitsikka
df3473dbef
[7785] fix - Implement the correct list item layout in chats list
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-09-02 17:49:54 +02:00
Andrea Maria Piana
12c08b1398
Use last-message-timestamp in mainchat
...
We use the timestamp of the last message in the chat preview.
In case there's no message, the old timestamp will be displayed (last
time the chat has been updated).
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2019-09-02 11:34:04 +02:00
Vitaliy Vlasov
aa4bf1f26b
Use :multiaccount instead of :multiaccounts/multiaccounts when looking
...
through candidate public keys
Signed-off-by: Vitaliy Vlasov <siphiuel@gmail.com>
2019-08-30 19:26:37 +03:00
Pedro Pombeiro
58d310ffce
Remove RAM bundle support
2019-08-30 17:13:35 +02:00
Vitaliy Vlasov
dfeec0f39f
Fix empty contact code string errors
...
Signed-off-by: Vitaliy Vlasov <siphiuel@gmail.com>
2019-08-30 15:46:11 +03:00
Pedro Pombeiro
a5907fe0ca
Move from componentWillMount to componentDidMount
...
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2019-08-29 19:19:50 +02:00
Andrey Shovkoplyas
ffcba77486
fix android webview svg
...
Signed-off-by: Pedro Pombeiro <pombeirp@users.noreply.github.com>
2019-08-29 15:54:26 +02:00
Andrey Shovkoplyas
0288d617cb
[ #8849 ] Use node-qrcode instead of react-native-qrcode
2019-08-29 15:53:44 +02:00
Andrey Shovkoplyas
d432dc980e
don't use webview
2019-08-29 15:53:44 +02:00
Andrea Maria Piana
3b52a61bdf
validate links before opening
...
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2019-08-29 15:14:06 +02:00
bitsikka
3541f636df
[8070] feature - [Profile] My profile screens reorganisation and items design
...
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
2019-08-29 13:24:10 +03:00
Andrea Maria Piana
58204f935b
upgrade status-go
...
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2019-08-29 08:40:57 +02:00
yenda
4e7c7c254b
[ fix #8760 ] multiple accounts created
...
when tapping save account quickly
Signed-off-by: yenda <eric@status.im>
2019-08-28 16:48:56 +02:00