Compare commits

...
Author SHA1 Message Date
andrey c34b91be4a [#12731] Blank space in place of 1-1 chat with a blocked user on the home screen
Signed-off-by: andrey <motor4ik@gmail.com>
(cherry picked from commit cd30a04626)
2021-10-21 14:32:26 +02:00
Roman Volosovskyi ae7ccc1cdb [#12720] attempt to fix crash on accepting starter pack 2021-10-21 13:40:56 +03:00
Andrea Maria Piana 161ecce1aa Hide transaction management
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2021-10-20 19:28:32 +01:00
Andrea Maria Piana ac5b3b1b94 Send profile pictures in private chats
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2021-10-20 19:27:12 +01:00
andrey 4b65b59282 [#12718] Endless spinner when signing TX with custom nonce (Keycard account only)
Signed-off-by: andrey <motor4ik@gmail.com>
(cherry picked from commit 760b021b8a)
2021-10-20 16:12:34 +02:00
andrey 0e5b6c8393 [#12717] No preview for transaction messages in 1-1 chat
Signed-off-by: andrey <motor4ik@gmail.com>
(cherry picked from commit 7a7b365a00)
2021-10-20 16:12:34 +02:00
Vitaliy Vlasov 77d601047a Fix field names related to Wakuv2 config
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2021-10-20 10:02:29 +01:00
Samuel Hawksby-Robinson 0763978e6a Bump VERSION to 1.17.0
Signed-off-by: Samuel Hawksby-Robinson <samuel@samyoul.com>
2021-10-15 12:21:11 +01:00
10 changed files with 26 additions and 17 deletions
+1 -1
View File
@@ -1 +1 @@
1.16.0
1.17.0
@@ -106,7 +106,9 @@ public class PushNotificationHelper {
//flags in this link:
//https://stackoverflow.com/questions/52390129/android-intent-setflags-issue
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.setData(Uri.parse(deepLink));
if (deepLink != null) {
intent.setData(Uri.parse(deepLink));
}
return intent;
}
+1
View File
@@ -39,6 +39,7 @@
cofx
{:db (-> db
(update :chats dissoc public-key)
(update :chats-home-list disj public-key)
(assoc-in [:contacts/contacts public-key :added] false))}
fxs)))
+2 -2
View File
@@ -113,8 +113,8 @@
(into (pick-nodes 2
(vals (:whisper current-fleet)))
(vals (:static current-fleet))))
:WakuNodes wakuv2-nodes
:WakuStoreNodes wakuv2-nodes
:RelayNodes wakuv2-nodes
:StoreNodes wakuv2-nodes
:RendezvousNodes (if wakuv2-enabled [] rendezvous-nodes)})
:always
+1 -1
View File
@@ -47,7 +47,7 @@
[{:keys [db]} peer-stats]
(let [previous-stats (:peer-stats db)]
{:db (assoc db :peer-stats peer-stats
:peers-count (count (:Peers peer-stats)))}))
:peers-count (count (:peers peer-stats)))}))
(fx/defn process
{:events [:signals/signal-received]}
+6 -2
View File
@@ -482,7 +482,7 @@
;; then fetch connectivity status from
;; peer-stats (populated from "wakuv2.peerstats" status-go signal)
;; Otherwise use peers-count fetched from "discovery.summary" signal
(if wakuv2-flag (not (:IsOnline peer-stats)) (zero? peers-count))))
(if wakuv2-flag (not (:isOnline peer-stats)) (zero? peers-count))))
(re-frame/reg-sub
:offline?
@@ -861,7 +861,11 @@
:<- [::chats]
:<- [:chats-home-list]
(fn [[chats active-chats]]
(map #(get chats %) active-chats)))
(reduce #(if-let [item (get chats %2)]
(conj %1 item)
%1)
[]
active-chats)))
(re-frame/reg-sub
:chat-by-id
@@ -76,7 +76,9 @@
(not (and content content-type))
[preview-label :t/no-messages]
(and (= constants/content-type-text content-type)
(and (or (= constants/content-type-text content-type)
(= constants/content-type-emoji content-type)
(= constants/content-type-command content-type))
(not (string/blank? (:text content))))
(if (string/blank? (:parsed-text content))
[react/text-class {:style styles/last-message-text
+1 -1
View File
@@ -443,7 +443,7 @@
[amount-item prices wallet-currency amount amount-error display-symbol fee-display-symbol prices-loading?])
[separator]
[fee-item prices wallet-currency fee-display-symbol fee gas-error gas-error-state prices-loading?]
(when management-enabled?
(when (and management-enabled? (not keycard-multiaccount?))
[advanced-item])
(when (= :gas-is-set gas-error-state)
[react/text {:style {:color colors/gray :margin-horizontal 32 :text-align :center}}
@@ -39,7 +39,7 @@
[{:keys [label contact address contact-accessibility-label
currency-text amount-text
time-formatted on-touch-fn type hash]}
_ _ {:keys [keycard-account? transactions-management-enabled?]}]
_ _ {:keys [keycard-account?]}]
[:<>
[quo/list-item
(merge
@@ -60,7 +60,9 @@
time-formatted)
:chevron true}
(when type (transaction-type->icon (keyword type))))]
(when (and transactions-management-enabled?
;; Disabling for now as we have added nonce which is more reliable, until we
;; address the ux issues
(when (and false
(not keycard-account?)
(= type :pending))
[react/view {:flex-direction :row :padding 16 :justify-content :space-between}
@@ -120,7 +122,6 @@
(let [fetching-recent-history? @(re-frame/subscribe [:wallet/fetching-recent-tx-history? address])
fetching-more-history? @(re-frame/subscribe [:wallet/fetching-tx-history? address])
keycard-account? @(re-frame/subscribe [:multiaccounts/keycard-account?])
transactions-management-enabled? @(re-frame/subscribe [:wallet/transactions-management-enabled?])
custom-rpc-node? @(re-frame/subscribe [:custom-rpc-node])
non-archival-rpc-node? @(re-frame/subscribe [:wallet/non-archival-node])
all-fetched? @(re-frame/subscribe [:wallet/tx-history-fetched? address])
@@ -141,8 +142,7 @@
[list/section-list
{:sections transaction-history-sections
:key-fn :hash
:render-data {:keycard-account? keycard-account?
:transactions-management-enabled? transactions-management-enabled?}
:render-data {:keycard-account? keycard-account?}
:render-fn render-transaction
:empty-component
[react/i18n-text {:style styles/empty-text
+3 -3
View File
@@ -3,7 +3,7 @@
"_comment": "Instead use: scripts/update-status-go.sh <rev>",
"owner": "status-im",
"repo": "status-go",
"version": "v0.89.11",
"commit-sha1": "23308d7e8c4b7f5c85bffe870ba92010a3784dcb",
"src-sha256": "0zlbzys7g1v3sr67l7fq85mhsk58gkplx8ci7lr5imk9cbciarlx"
"version": "v0.89.13",
"commit-sha1": "b79d68c69684f754ea705469c552485905f58e32",
"src-sha256": "10h2y9kyahpfns4kfjqzayqfb7fwq94lmncp47snbcrwj03vaanq"
}