-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* speed up transaction list render. Add loading spinner when fetching next page * fix notifications scroll and sizes styles. Fixed AcountBalanceWidget styles and add refresh swipe * add waving loading animation to AccountBalanceWidget * add Notification top margin of SideBar height * fix Sidebar TitleBar position. Handle big balance of selected account in Sidebar * disallow to create account with an existed name * create account. add error message if private key is already imported and if it is invalid * Added version 4 and changed branch names * Solved #3 Wrong amount on invoice * Solved #11 changing account when changing node * fix AccountBalanceWidget huge balance go off of the screen bug. Add ScrollView * fix naming of delete account. Fix modal styles. Add descriptions * fix button disable for the empty name and invalid address on AddContact * add address qr to AccountDetails * add privateKey verify for create account via pk qr * add harvesting not enough balance message view * unhardcode harvesting copy * add support of privateKey scanner for InputAddress * CreateAccount. Remove qr button. Add InputAddress * disable sidebar account list while loading * Solved #8 Harvesting fees earned not taking into account divisibility * Solved #8 Harvesting fees earned not taking into account divisibility * Solved #16 Language switch doesn't work properly * Solved #38 Backup account is hanging on passcode * Solved #3 Compatibility with old mobile wallet versions doesn't work * created QRImage component * add address support to QRImage. Remove qr logic from AccountDetails * add secret view to QRImage * add password modals to QRImage and InputAdress: * add QR error messages * remlace ContactProfile qr logic with QRImage component * add transaction support to QRImage. Replace Receive screen qr logic with component * create QRScanner screen * add support of Address and PrivateKey support to QRScanner. Add set up props to Send and CreateAccount screens * add access to Account Details from balance widget * add new icon for qr scanner * add transaction qr support to scanner * add QRService * add privateKey logic to QR scanner. Ad password modal * add privateKey logic to QRService * add the CreateAccount privateKey prop. Get mosaic name at QRService * optimizeformat mosaic reqest calls * add SymbolPageView to ScanQR.Change styles * fix qr service logic. Add qr scanner action buttons * fix qr scanner buttons style * fix missing arg QRService * fix invalid qr image network type * add create qr button to Receive screen. Add onReady and isVisible props to QR image. Fix bug of delay qr rendering * add props to AddContact screen * add qr service check for transfer tx type * fix qr scanner back button closes the app * add support of unencrypted private key qr * hide private key qr from Account Details * fix navigation styles * Removed harvesting image * Improved translations support added EN as default language * Added japanese * Update Home.js * Fixed format date propagated to news * Update Send.js * Removed bad testnet node * Added margin to sidebar for iphones * add number check to amount input * Japanese translations * Added translations and fixed current ones * Updated testnet and added dynamic fees * Fixed #27 Account details. Show seed account index * Fixed #75 Editing address book contact double entry * Fixed #75 default "0" when making transactions * Fixed #64 Removed the ability to hide the main account * Added translations and removed console.logs * Solved #79 * Fixed #74 * Fixed #89 * Added flex grow to backup page for lower resolutions * Fixed #4 * Fixed #57 * Fixed #87 * Fixed #43 * Fixed #69 * Fixed #97 * Fixed #75 * Fixed #36 * Fixed #36 * Fixed #13 * Fixed #72 * Fixed #71 * Fixed iOS build for iPad * Added fixed height to input, refresh mosaics and fixed receive translations * New Harvesting logic. First steps * Added harvesting linked keys * Setting default node to us-west-1 * Added translations * Resolved #103 * add warning for multi-mosaic transfer qr * add warning text type * add notification and disallow to put unowned mosaicName to Send form * upf * validate send amount value * upd * disallow negative amount input * replace copy with translate function * Account refactor * Added change to testnet confirmation modal * Resolved #79 * Resolved #106 * Added derivation path to index convertion to util func * Added translation * Removed experimental node * Added missing translations * Added experimental node #129 * Fixed app crashing when there's no internet #126 * Fixed broken Home design on Rus translation #118 * Fixed Harvesting Activation progress doesn't change #123 * Fix Android "Node is down" #128 * Added There is no way to add a node #121 * Resolved Mainnet - transaction list is not loading #130 * Fixed node public key for harvesting * Added support for OptIn accounts with old curve, broadcast offline transactions, harvesting fix, custom node fix * Resolved review * Resolved #136,#134,#114 and added translations * Resolved #136,#134,#114 and added translations * Fixed mnemonic keys (#142) * Fixed mnemonic keys * Added circleci builds for this branch * Using legacy mnemonics key * Remove unused migration 1 * Save mnemonic on migration * Save mnemonic on migration * Save mnemonic on migration * Update optin from mnemonic * Save mnemonic on migration * Loading screen on opt in preparation * Save mnemonic on migration * Save mnemonic on migration * Changed build id method and target sdk version * Added terms and conditions and removed keys from env Co-authored-by: AdriaCarrera <[email protected]> Co-authored-by: Oleh Makarenko <[email protected]> Co-authored-by: AdriaCarrera <[email protected]> Co-authored-by: Steven Liu <[email protected]> Co-authored-by: OlegMakarenko <[email protected]>
- Loading branch information
1 parent
e178af4
commit 4acb0f1
Showing
109 changed files
with
4,695 additions
and
1,211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,26 @@ | ||
console.log('[-] Fixing QR Code workaround...'); | ||
const fs = require('fs'); | ||
|
||
const FILE_PATH = __dirname + '/../node_modules/symbol-qr-library/dist/src/QRCode.js'; | ||
const MAIN_FILE_PATH = __dirname + '/../node_modules/symbol-qr-library/dist/src/QRCode.js'; | ||
|
||
fs.readFile(FILE_PATH, 'utf8', function(err, data) { | ||
fs.readFile(MAIN_FILE_PATH, 'utf8', function(err, data) { | ||
const formatted = data.replace(/require\("qrcode"\)/g, 'require("qrcode/lib")'); | ||
|
||
fs.writeFile(FILE_PATH, formatted, 'utf8', function(err) { | ||
fs.writeFile(MAIN_FILE_PATH, formatted, 'utf8', function(err) { | ||
if (err) return console.log(err); | ||
else console.log('[+] Fixed QR Code...'); | ||
}); | ||
}); | ||
|
||
const MODULE_FILE_PATH = __dirname + '/../node_modules/symbol-paper-wallets/node_modules/symbol-qr-library/dist/src/QRCode.js'; | ||
|
||
if (fs.existsSync(MODULE_FILE_PATH)) { | ||
fs.readFile(MODULE_FILE_PATH, 'utf8', function(err, data) { | ||
const formatted = data.replace(/require\("qrcode"\)/g, 'require("qrcode/lib")'); | ||
|
||
fs.writeFile(MODULE_FILE_PATH, formatted, 'utf8', function(err) { | ||
if (err) return console.log(err); | ||
else console.log('[+] Fixed QR Code under paper-wallets module...'); | ||
}); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.