Skip to content

Commit

Permalink
Merge pull request #173 from sickpig/mv-1.2.0.1-to-old
Browse files Browse the repository at this point in the history
Move BUCash 1.2.0.1 to "Old releases" section
  • Loading branch information
sickpig authored Apr 19, 2018
2 parents 0aadb2d + fe0fae0 commit 4233bf0
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/public/views/components/download/olderReleases.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,27 @@ import SignaturesBUcash1110 from './signatures_BUcash1-1-1-0.jsx'
import SignaturesBUcash1111 from './signatures_BUcash1-1-1-1.jsx'
import SignaturesBUcash1120 from './signatures_BUcash1-1-2-0.jsx'
import SignaturesBUcash1200 from './signatures_BUcash1-2-0-0.jsx'
import SignaturesBUcash1201 from './signatures_BUcash1-2-0-1.jsx'

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

<SignaturesBUcash1201 />
</Release>
)
}
renderVBUcash1200Body() {
return (
<Release
Expand Down Expand Up @@ -284,6 +303,11 @@ class OfficialRelease extends React.Component {
render() {
return (
<div className="pt2">
<Section
title='BUcash-1.2.0.1'
body={ this.renderVBUcash1201Body() }
expanded={ false } />

<Section
title='BUcash-1.2.0.0'
body={ this.renderVBUcash1200Body() }
Expand Down
3 changes: 3 additions & 0 deletions src/public/views/components/download/releaseNotes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ class ReleaseNotes extends React.Component {
render() {
return (
<ul>
<li className='pb1'>
{strings().download.notes.releasenotes_buc_1_3_0_0} <a className='link--underline dim black' target='_blank' href='https://github.com/BitcoinUnlimited/BitcoinUnlimited/blob/dev/doc/release-notes/release-notes-bucash1.3.0.0.md'>{strings().download.notes.here}</a>.
</li>
<li className='pb1'>
{strings().download.notes.releasenotes_buc_1_2_0_1} <a className='link--underline dim black' target='_blank' href='https://github.com/BitcoinUnlimited/BitcoinUnlimited/blob/dev/doc/release-notes/release-notes-bucash1.2.0.1.md'>{strings().download.notes.here}</a>.
</li>
Expand Down

0 comments on commit 4233bf0

Please sign in to comment.