rename status-react to status-mobile
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
1b576a64cf
commit
9b8138a3e6
|
@ -86,7 +86,7 @@ if [[ -d "${TARGET}" ]]; then
|
||||||
spctl --assess --type execute --verbose=2 "${TARGET}"
|
spctl --assess --type execute --verbose=2 "${TARGET}"
|
||||||
else
|
else
|
||||||
echo "WARNING: The 'open' type security assesment is disabled due to lack of 'Notarization'"
|
echo "WARNING: The 'open' type security assesment is disabled due to lack of 'Notarization'"
|
||||||
# Issue: https://github.com/status-im/status-react/pull/9172
|
# Issue: https://github.com/status-im/status-mobile/pull/9172
|
||||||
# Details: https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution
|
# Details: https://developer.apple.com/documentation/security/notarizing_your_app_before_distribution
|
||||||
#spctl --assess --type open --context context:primary-signature --verbose=2 "${OBJECT}"
|
#spctl --assess --type open --context context:primary-signature --verbose=2 "${OBJECT}"
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -655,7 +655,7 @@ QtObject:
|
||||||
)
|
)
|
||||||
self.threadpool.start(arg)
|
self.threadpool.start(arg)
|
||||||
|
|
||||||
# See render-inline in status-react/src/status_im/ui/screens/chat/message/message.cljs
|
# See render-inline in status-mobile/src/status_im/ui/screens/chat/message/message.cljs
|
||||||
proc renderInline(self: Service, parsedText: ParsedText): string =
|
proc renderInline(self: Service, parsedText: ParsedText): string =
|
||||||
let value = escape_html(parsedText.literal)
|
let value = escape_html(parsedText.literal)
|
||||||
.multiReplace(("\r\n", "<br/>"))
|
.multiReplace(("\r\n", "<br/>"))
|
||||||
|
@ -688,7 +688,7 @@ proc renderInline(self: Service, parsedText: ParsedText): string =
|
||||||
else:
|
else:
|
||||||
result = fmt(" {value} ")
|
result = fmt(" {value} ")
|
||||||
|
|
||||||
# See render-block in status-react/src/status_im/ui/screens/chat/message/message.cljs
|
# See render-block in status-mobile/src/status_im/ui/screens/chat/message/message.cljs
|
||||||
proc getRenderedText*(self: Service, parsedTextArray: seq[ParsedText]): string =
|
proc getRenderedText*(self: Service, parsedTextArray: seq[ParsedText]): string =
|
||||||
for parsedText in parsedTextArray:
|
for parsedText in parsedTextArray:
|
||||||
case parsedText.type:
|
case parsedText.type:
|
||||||
|
|
|
@ -794,7 +794,7 @@ You may add additional accurate notices of copyright ownership.
|
||||||
|
|
||||||
(function(){
|
(function(){
|
||||||
// Based on
|
// Based on
|
||||||
// https://github.com/status-im/status-react/blob/f9fb4d6974138a276b0cdcc6e4ea1611063e70ca/resources/js/provider.js
|
// https://github.com/status-im/status-mobile/blob/f9fb4d6974138a276b0cdcc6e4ea1611063e70ca/resources/js/provider.js
|
||||||
if(typeof EthereumProvider === "undefined"){
|
if(typeof EthereumProvider === "undefined"){
|
||||||
let callbackId = 0;
|
let callbackId = 0;
|
||||||
let callbacks = {};
|
let callbacks = {};
|
||||||
|
|
|
@ -44,8 +44,8 @@ Item {
|
||||||
property bool advancedMode: false
|
property bool advancedMode: false
|
||||||
|
|
||||||
// TODO: change these values false once EIP1559 suggestions are revised
|
// TODO: change these values false once EIP1559 suggestions are revised
|
||||||
property double perGasTipLimitFloor: 1 // Matches status-react minimum-priority-fee
|
property double perGasTipLimitFloor: 1 // Matches status-mobile minimum-priority-fee
|
||||||
property double perGasTipLimitAverage: formatDec(root.suggestedFees.maxPriorityFeePerGas, 2) // 1.5 // Matches status-react average-priority-fee
|
property double perGasTipLimitAverage: formatDec(root.suggestedFees.maxPriorityFeePerGas, 2) // 1.5 // Matches status-mobile average-priority-fee
|
||||||
|
|
||||||
|
|
||||||
property bool showPriceLimitWarning : false
|
property bool showPriceLimitWarning : false
|
||||||
|
|
Loading…
Reference in New Issue