forked from HorizenOfficial/zencash-swing-wallet-ui
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #65 from MarcelusCH/master
Update for 2.0.7-u3 | Add Raw Tx with data field
- Loading branch information
Showing
12 changed files
with
1,201 additions
and
252 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,7 +86,7 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{ | |
" |____/ | | | |/ / / / \\ \\| | | |\\ | | / / \\ \\ /\\ / / _` | | |/ _ \\ __| | | || | \n" + | ||
" | ___ \\| |_ | |\\ \\__ \\ \\_/ /| |_ | | \\ | / /_ \\ V V / (_| | | | __/ |_| |_| || | \n" + | ||
" |_____/____| |_| \\____|\\___/_____||_| \\_|/____| \\_/\\_/ \\__,_|_|_|\\___|\\__|\\___/|___| \n" + | ||
" Version 2.0.7-u2 \n \n" + | ||
" Version 2.0.7-u3 \n \n" + | ||
|
||
" Copyright (c) 2017-2022 BitcoinZ team \n" + | ||
" Copyright (c) 2016-2018 Ivan Vaklinov <[email protected]> \n" + | ||
|
@@ -115,8 +115,6 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{ | |
|
||
|
||
|
||
|
||
|
||
// ************ About Panel start here **************************** | ||
// Logo | ||
URL iconUrl = this.getClass().getClassLoader().getResource("images/bitcoinz60x60.png"); | ||
|
@@ -130,7 +128,7 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{ | |
aboutNORTH_CENTER.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5)); | ||
aboutNORTH_CENTER.setText( | ||
"<html><b><span style='font-weight:bold;font-size:2.3em'>" + | ||
"BitcoinZ Wallet UI</span></b><br> Version 2.0.7-u2</html>"); | ||
"BitcoinZ Wallet UI</span></b><br> Version 2.0.7-u3</html>"); | ||
|
||
// About description | ||
JLabel aboutCENTER = new JLabel(); | ||
|
@@ -183,6 +181,11 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{ | |
"<html>" + | ||
"<div style='display: table; padding: 10px; height: 400px; max-width: 600px; overflow: hidden;'> " + | ||
|
||
"<b><u>v2.0.7-u3 (MAY-2022)</u></b><br>"+ | ||
"- Added option to disable the (z) messaging. <br>"+ | ||
"- Added Raw TX tab with data send capability. <br>"+ | ||
"- Code tweak and refresh. <br><br>"+ | ||
|
||
"<b><u>v2.0.7-u2 (FEB-2022)</u></b><br>"+ | ||
"- Complete BTCZ'ify of the source code. <br>"+ | ||
"- Refresh of the About dialog box. <br>"+ | ||
|
@@ -198,8 +201,6 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{ | |
"<b><u>v2.0.7</u></b><br>"+ | ||
"- BitcoinZ Yoda node update. <br>"+ | ||
|
||
|
||
|
||
"</div>"+ | ||
"</html>"); | ||
|
||
|
@@ -211,18 +212,13 @@ public AboutDialog(JFrame parent) throws UnsupportedEncodingException{ | |
JScrollPane updatePanel = new JScrollPane(scrollPanel); | ||
|
||
|
||
|
||
|
||
|
||
|
||
// ************ System Panel start here **************************** | ||
JPanel systemInfoPanel = new JPanel(); | ||
systemInfoPanel.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5)); | ||
systemInfoPanel.setLayout(new BorderLayout(3, 3)); | ||
|
||
|
||
|
||
|
||
// Add the panels to the TAB panel | ||
tabs.add("About", aboutPanel); | ||
tabs.add("Update Log", updatePanel); | ||
|
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
Oops, something went wrong.