mirror of
https://github.com/monero-project/monero-gui.git
synced 2026-04-03 15:37:25 -04:00
Compare commits
9 Commits
master
...
release-v0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c94ed65700 | ||
|
|
db5e71c1ff | ||
|
|
9eefa33dd6 | ||
|
|
7a759f7dbf | ||
|
|
4aec4e36f8 | ||
|
|
84fad36282 | ||
|
|
9393529613 | ||
|
|
755977d1ba | ||
|
|
bb127744af |
@@ -42,7 +42,7 @@ Rectangle {
|
|||||||
function updateProgress(currentBlock,targetBlock, blocksToSync, statusTxt){
|
function updateProgress(currentBlock,targetBlock, blocksToSync, statusTxt){
|
||||||
if(targetBlock > 0) {
|
if(targetBlock > 0) {
|
||||||
var remaining = (currentBlock < targetBlock) ? targetBlock - currentBlock : 0
|
var remaining = (currentBlock < targetBlock) ? targetBlock - currentBlock : 0
|
||||||
var progressLevel = (blocksToSync > 0 && blocksToSync != remaining) ? (100*(blocksToSync - remaining)/blocksToSync).toFixed(0) : 100*(currentBlock / targetBlock).toFixed(0)
|
var progressLevel = (blocksToSync > 0 && blocksToSync != remaining) ? (100*(blocksToSync - remaining)/blocksToSync).toFixed(0) : (100*(currentBlock / targetBlock)).toFixed(0)
|
||||||
fillLevel = progressLevel
|
fillLevel = progressLevel
|
||||||
if(typeof statusTxt != "undefined" && statusTxt != "") {
|
if(typeof statusTxt != "undefined" && statusTxt != "") {
|
||||||
progressText.text = statusTxt;
|
progressText.text = statusTxt;
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ if [ ! -d $MONERO_DIR/src ]; then
|
|||||||
fi
|
fi
|
||||||
git submodule update --remote
|
git submodule update --remote
|
||||||
git -C $MONERO_DIR fetch
|
git -C $MONERO_DIR fetch
|
||||||
git -C $MONERO_DIR checkout release-v0.12
|
git -C $MONERO_DIR checkout v0.12.0.0
|
||||||
|
|
||||||
# get monero core tag
|
# get monero core tag
|
||||||
get_tag
|
get_tag
|
||||||
|
|||||||
2
main.qml
2
main.qml
@@ -621,7 +621,7 @@ ApplicationWindow {
|
|||||||
transactionConfirmationPopup.text += qsTr("\n\nWARNING: non default ring size, which may harm your privacy. Default of 7 is recommended.");
|
transactionConfirmationPopup.text += qsTr("\n\nWARNING: non default ring size, which may harm your privacy. Default of 7 is recommended.");
|
||||||
}
|
}
|
||||||
transactionConfirmationPopup.text += qsTr("\n\nNumber of transactions: ") + transaction.txCount
|
transactionConfirmationPopup.text += qsTr("\n\nNumber of transactions: ") + transaction.txCount
|
||||||
transactionConfirmationPopup.text += (transactionDescription === "" ? "" : (qsTr("Description: ") + transactionDescription))
|
transactionConfirmationPopup.text += (transactionDescription === "" ? "" : (qsTr("\nDescription: ") + transactionDescription))
|
||||||
for (var i = 0; i < transaction.subaddrIndices.length; ++i){
|
for (var i = 0; i < transaction.subaddrIndices.length; ++i){
|
||||||
transactionConfirmationPopup.text += qsTr("\nSpending address index: ") + transaction.subaddrIndices[i];
|
transactionConfirmationPopup.text += qsTr("\nSpending address index: ") + transaction.subaddrIndices[i];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -311,6 +311,7 @@ macx {
|
|||||||
-L/usr/local/opt/boost/lib \
|
-L/usr/local/opt/boost/lib \
|
||||||
-lboost_serialization \
|
-lboost_serialization \
|
||||||
-lboost_thread-mt \
|
-lboost_thread-mt \
|
||||||
|
-lboost_system-mt \
|
||||||
-lboost_system \
|
-lboost_system \
|
||||||
-lboost_date_time \
|
-lboost_date_time \
|
||||||
-lboost_filesystem \
|
-lboost_filesystem \
|
||||||
|
|||||||
Reference in New Issue
Block a user