Merge pull request #4475 from JeffaloBob/patch-2

replace http links with https links on the 1.4 download page
This commit is contained in:
Benjamin Wheeler 2020-10-15 14:15:58 -04:00 committed by GitHub
commit aa8ac45ec8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -68,7 +68,7 @@ const OnePointFour = () => (
<p><FormattedMessage id="onePointFour.macBody" /></p> <p><FormattedMessage id="onePointFour.macBody" /></p>
<ul className="installation-downloads"> <ul className="installation-downloads">
<li className="installation-downloads-item"> <li className="installation-downloads-item">
<a href="http://download.scratch.mit.edu/MacScratch1.4.dmg"> <a href="https://download.scratch.mit.edu/MacScratch1.4.dmg">
MacScratch1.4.dmg MacScratch1.4.dmg
</a> </a>
</li> </li>
@ -86,7 +86,7 @@ const OnePointFour = () => (
key="installation-downloads" key="installation-downloads"
> >
<li className="installation-downloads-item"> <li className="installation-downloads-item">
<a href="http://download.scratch.mit.edu/ScratchInstaller1.4.exe"> <a href="https://download.scratch.mit.edu/ScratchInstaller1.4.exe">
ScratchInstaller1.4.exe ScratchInstaller1.4.exe
</a> </a>
</li> </li>
@ -95,7 +95,7 @@ const OnePointFour = () => (
id="onePointFour.windowsNetwork" id="onePointFour.windowsNetwork"
values={{ values={{
windowsNetworkInstaller: ( windowsNetworkInstaller: (
<a href="http://download.scratch.mit.edu/Scratch1.4.msi.installer.zip"> <a href="https://download.scratch.mit.edu/Scratch1.4.msi.installer.zip">
<FormattedMessage id="onePointFour.windowsNetworkInstaller" /> <FormattedMessage id="onePointFour.windowsNetworkInstaller" />
</a> </a>
) )
@ -144,17 +144,17 @@ const OnePointFour = () => (
id="onePointFour.resourcesA" id="onePointFour.resourcesA"
values={{ values={{
gettingStartedGuide: ( gettingStartedGuide: (
<a href="http://download.scratch.mit.edu/ScratchGettingStartedv14.pdf"> <a href="https://download.scratch.mit.edu/ScratchGettingStartedv14.pdf">
<FormattedMessage id="onePointFour.gettingStartedGuide" /> <FormattedMessage id="onePointFour.gettingStartedGuide" />
</a> </a>
), ),
referenceGuide: ( referenceGuide: (
<a href="http://download.scratch.mit.edu/ScratchReferenceGuide14.pdf"> <a href="https://download.scratch.mit.edu/ScratchReferenceGuide14.pdf">
<FormattedMessage id="onePointFour.referenceGuide" /> <FormattedMessage id="onePointFour.referenceGuide" />
</a> </a>
), ),
scratchCards: ( scratchCards: (
<a href="http://download.scratch.mit.edu/ScratchCardsAll-v1.4-PDF.zip"> <a href="https://download.scratch.mit.edu/ScratchCardsAll-v1.4-PDF.zip">
<FormattedMessage id="onePointFour.scratchCards" /> <FormattedMessage id="onePointFour.scratchCards" />
</a> </a>
) )