Skip to content

Commit

Permalink
Merge pull request #135 from sickpig/1.0.3-release
Browse files Browse the repository at this point in the history
1.0.3 release
  • Loading branch information
sickpig authored Jul 18, 2017
2 parents 8b8dad5 + 4b37f98 commit 62415a2
Show file tree
Hide file tree
Showing 9 changed files with 110 additions and 18 deletions.
8 changes: 5 additions & 3 deletions src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,10 @@
"subtitle": "The Bitcoin Unlimited project maintains an enhanced version of the Bitcoin Core \"Satoshi\" client.",
"latest": {
"title": "Latest Release",
"download": "Download the latest release of Bitcoin Unlimited",
"version": "v1.0.2.0",
"date": "May 11, 2017",
"download": "Download the latest standard release of Bitcoin Unlimited",
"version": "v1.0.3.0",
"date": "July 18, 2017",
"notes": "this is a standard release, a new one that will implement UAHF/BUIP055 specification will be provided in the next few days",
},
"windows": "Windows",
"linux": "Linux",
Expand All @@ -544,6 +545,7 @@
"source": "source code",
"notes": {
"title": "Release Notes",
"releasenotes_1_0_3_0": "1.0.3.0: Release notes are ",
"releasenotes_1_0_2_0": "1.0.2.0: Release notes are ",
"releasenotes_1_0_1_4": "1.0.1.4: Release notes are ",
"releasenotes_1_0_1_3": "1.0.1.3: Release notes: this release addresses minor and cosmetic issues reported when the 1.0.1.2 release patch came under full review. Upgrading from 1.0.1.2 is optional, upgrading from 1.0.1.1 or earlier is essential.",
Expand Down
4 changes: 2 additions & 2 deletions src/public/views/components/download/install-instructions.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const BASH0 = `tar xvf bitcoinUnlimited-1.0.2.0-linux64.tar.gz
cd bitcoinUnlimited-1.0.2/bin/
const BASH0 = `tar xvf bitcoinUnlimited-1.0.3.0-linux64.tar.gz
cd bitcoinUnlimited-1.0.3/bin/
nohup ./bitcoin-qt &
`;

Expand Down
6 changes: 3 additions & 3 deletions src/public/views/components/download/official-release.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import React from 'react';
import { strings } from '../../../lib/i18n';

import Release from './release.jsx'
import SignaturesLatest from './signatures_1-0-2-0.jsx'
import SignaturesLatest from './signatures_1-0-3-0.jsx'

class OfficialRelease extends React.Component {
render() {
var latestVersion = "1.0.2.0";
var latestVersion = "1.0.3.0";
return (
<div className='lh-copy py1'>
<p>{ strings().download.latest.download } ({latestVersion}, {strings().download.latest.date}):</p>
<p>{ strings().download.latest.download } ({latestVersion}, {strings().download.latest.date})<br /> <i>({ strings().download.latest.notes }</i>):</p>

<Release
osx64={'/downloads/bitcoinUnlimited-' + latestVersion + '-osx64.tar.gz'}
Expand Down
26 changes: 25 additions & 1 deletion src/public/views/components/download/olderReleases.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,27 @@ import Signatures0120 from './signatures_0-12-0.jsx'
import Signatures0112 from './signatures_0-11-2.jsx'
import Signatures1013 from './signatures_1-0-1-3.jsx'
import Signatures1014 from './signatures_1-0-1-4.jsx'
import Signatures1020 from './signatures_1-0-2-0.jsx'

class OfficialRelease extends React.Component {
renderV1020Body() {
return (
<Release
osx64='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.2.0-osx64.tar.gz'
osx32='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.2.0-osx.tar.gz'
osxDmg='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.2.0-osx.dmg'
windows64Exe='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.2.0-win64-setup.exe'
windows32Exe='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.2.0-win32-setup.exe'
linux64='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.2.0-linux64.tar.gz'
linux32='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.2.0-linux32.tar.gz'
arm64='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.2.0-arm64.tar.gz'
arm32='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.2.0-arm32.tar.gz'
source='https://github.com/BitcoinUnlimited/BitcoinUnlimited/releases/tag/v1.0.2.0'>

<Signatures1014 />
</Release>
)
}
renderV1014Body() {
return (
<Release
Expand All @@ -29,7 +48,7 @@ class OfficialRelease extends React.Component {
arm32='https://github.com/BitcoinUnlimited/BitcoinUnlimitedWebDownloadHistory/raw/master/bitcoinUnlimited-1.0.1.4-arm32.tar.gz'
source='https://github.com/BitcoinUnlimited/BitcoinUnlimited/releases/tag/v1.0.1.4'>

<Signatures1014 />
<Signatures1020 />
</Release>
)
}
Expand Down Expand Up @@ -169,6 +188,11 @@ class OfficialRelease extends React.Component {
render() {
return (
<div className="pt2">
<Section
title='v1.0.2.0'
body={ this.renderV1020Body() }
expanded={ false } />

<Section
title='v1.0.1.4'
body={ this.renderV1014Body() }
Expand Down
5 changes: 4 additions & 1 deletion src/public/views/components/download/releaseNotes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ class ReleaseNotes extends React.Component {
render() {
return (
<ul>
<li className='pb1'>
{strings().download.notes.releasenotes_1_0_3_0} <a className='link--underline dim black' target='_blank' href='https://github.com/BitcoinUnlimited/BitcoinUnlimited/blob/v1.0.3.0/doc/release-notes/release-notes-1.0.3.0.md'>{strings().download.notes.here}</a>.
</li>
<li className='pb1'>
{strings().download.notes.releasenotes_1_0_2_0} <a className='link--underline dim black' target='_blank' href='https://github.com/BitcoinUnlimited/BitcoinUnlimited/blob/v1.0.2.0/doc/release-notes/release-notes-1.0.2.0.md'>{strings().download.notes.here}</a>.
</li>
</li>
<li className='pb1'>
{strings().download.notes.releasenotes_1_0_1_4} <a className='link--underline dim black' target='_blank' href='https://github.com/BitcoinUnlimited/BitcoinUnlimited/blob/v1.0.1.4/doc/release-notes/release-notes-1.0.1.4.md'>{strings().download.notes.here}</a>.
</li>
Expand Down
63 changes: 63 additions & 0 deletions src/public/views/components/download/signatures_1-0-3-0.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
'use strict';

import React from 'react';
import { strings } from '../../../lib/i18n';

const CHECKSUMS = `{ 'files': { 'bitcoinUnlimited-1.0.3.0-arm32.tar.gz': '4d063832f7384871e6087b492d767418c4b6b695c8702fbfabb72050f03490dc',
'bitcoinUnlimited-1.0.3.0-arm64.tar.gz': '73fc6d396dfff0184959610f42d42c1d15fac4aa79a8681e24ed8d33cb13e577',
'bitcoinUnlimited-1.0.3.0-linux32.tar.gz': '0b5717c847f7ce8497c14a9eb32d23e98554722d8e6b32f679f9e6668ca617f0',
'bitcoinUnlimited-1.0.3.0-linux64.tar.gz': 'a6658bac22f082539969a243943c7d1a865abd40cdfe39465ff82b4eba387b22',
'bitcoinUnlimited-1.0.3.0-osx.dmg': 'b9f5e275450632fe595c9cd776694ffa2fc049071ee7d0ffe14b899c95255959',
'bitcoinUnlimited-1.0.3.0-osx.tar.gz': '4686ad008450a0a7d81c0ff6ff92cdda0a9b375aa325bc1637659c24d347762b',
'bitcoinUnlimited-1.0.3.0-osx64.tar.gz': '6c631dd70eae0e2dc365c95b00485d847837d82c39b01ee2db8ba054321d454d',
'bitcoinUnlimited-1.0.3.0-win32-setup.exe': '36b0a3b77d2348b9a8a88e5a25c75726dee73fcc3c96fa3bc71fec0f2cdcb640',
'bitcoinUnlimited-1.0.3.0-win32.zip': '376d5cdf4c2df1c4561a29ba6378ec848e74048e0f4d360d4a2802c4d122fa89',
'bitcoinUnlimited-1.0.3.0-win64-setup.exe': 'f230cb01f5f25efdc6db2aa16a5c893a6e03455187f2aa79fc91ec2d9237d1f2',
'bitcoinUnlimited-1.0.3.0-win64.zip': 'b4c176f33787c88c3a398605e1ec55043ab12b0d8f22edda1a15863d096aa424'},
'program': 'BitcoinUnlimited',
'version': '1.0.3.0'}`;

class SignaturesLatest extends React.Component {
render() {
return (
<div className='pt2'>
<div>
{strings().download.signatures.signatures}
<br /><br />
<div>
{strings().download.signatures.helpOne}
{' '}
{strings().download.signatures.helpTwo}
{' '}
{strings().download.signatures.helpThree}
{' '}
{strings().download.signatures.helpFour}
{' '}
{strings().download.signatures.helpFive}
{' '}
<a className='link--underline dim black' href='http://www.bitco.in/forum'>{strings().download.signatures.forum}</a>.<br/>
</div>

<br />
1.0.3.0 {strings().download.signatures.statement}:<br /><br />
<pre>{CHECKSUMS}</pre>
<br />
{strings().download.signatures.tip}
<br/>
<br />
{strings().download.signatures.andrew} (1zerg12nRXZ41Pw4tfCTqgtdiJx6D1We3)<br/>
{strings().download.signatures.signature}:<br />G+h2pbTloDyxZXue1KDBuyjcBXAOj08nqtvvK8j9oC0IY7v7UZns+4IOE74YCxXyci3eWkAaZMuhSYIrb/Xhuhg=
<br/><br/>
{strings().download.signatures.sickpig} (1LwvkQTWmotqTosgBcK8kFPCKzW2BPiE1G)<br/>
{strings().download.signatures.signature}:<br />Hz11wP/CstTSn3ta+ODY6D4mD8QD1r05NHt2hLK1ukyMC3a8DSdYK3V9qyc0DuTqcIMMuTLwlOxxHlrT2r7/wjw=
<br/><br/>
{strings().download.signatures.freetrader} (1Libre7MGkCXr7pUAEbwihCR9X4quYAyQ4)<br/>
{strings().download.signatures.signature}:<br />HAuPxIwShFC0AeNvsvYhbEE6xN52pTlmF0UB+QeUjDZSAYP+/9L0qZ+zQhW+30zzDSiQYta7SUsfIz+vFx/OAaY=
<br/>
</div>
</div>
);
}
};

export default SignaturesLatest
2 changes: 1 addition & 1 deletion src/public/views/components/header/announceBanner.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class AnnounceBanner extends React.Component {
} else {
return (
<div className='alert__banner p3 center'>
<div className='section__container left-align'>
<div className='section__container center'>
<div className='inline bold underline'>Announcement:</div>
&nbsp;
{this.props.message}
Expand Down
2 changes: 1 addition & 1 deletion src/public/views/components/header/securityBanner.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class SecurityBanner extends React.Component {
} else {
return (
<div className='alert__banner p3 center'>
<div className='section__container left-align'>
<div className='section__container center'>
<div className='inline bold underline'>Security alert:</div>
&nbsp;
{this.props.message}
Expand Down
12 changes: 6 additions & 6 deletions src/public/views/header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ class Header extends React.Component {
}

renderAnnounceMessage() {
return
//return (
// <div className='inline-block'>
// <p> BU x.y.z. has been just released, plese fetch it from the download section</p>
// </div>
//)
//return
return (
<div className='inline-block'>
<p> BU standard version 1.0.3 has just been released, please fetch it from the download section</p>
</div>
)
}

render() {
Expand Down

0 comments on commit 62415a2

Please sign in to comment.