eol transition release

This commit is contained in:
Danny Coates 2019-03-09 10:31:32 -08:00
parent be5ea12408
commit 900b083077
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
6 changed files with 32 additions and 54 deletions

View File

@ -2,3 +2,4 @@ dist
assets
firefox
coverage
app/pages/welcome/index.js

View File

@ -31,7 +31,7 @@ export default function(state, emitter) {
alert(state.translate('fileTooBig', { size: bytes(MAXFILESIZE) }));
return;
}
emitter.emit('upload', { file, type: 'drop' });
// emitter.emit('upload', { file, type: 'drop' });
}
});
});

View File

@ -12,36 +12,13 @@ module.exports = function(state, emit) {
<div class="title">${state.translate('uploadPageHeader')}</div>
<div class="description">
<div>${state.translate('uploadPageExplainer')}</div>
<a
href="https://testpilot.firefox.com/experiments/send"
class="link">
<a href="https://testpilot.firefox.com/experiments/send" class="link">
${state.translate('uploadPageLearnMore')}
</a>
</div>
<div class="uploadArea"
ondragover=${dragover}
ondragleave=${dragleave}>
<img
src="${assets.get('upload.svg')}"
title="${state.translate('uploadSvgAlt')}"/>
<div class="uploadArea__msg">
${state.translate('uploadPageDropMessage')}
</div>
<span class="uploadArea__sizeMsg">
${state.translate('uploadPageSizeMessage')}
</span>
<input id="file-upload"
class="inputFile"
type="file"
name="fileUploaded"
onfocus=${onfocus}
onblur=${onblur}
onchange=${upload} />
<label for="file-upload"
class="btn btn--file"
title="${state.translate('uploadPageBrowseButton1')}">
${state.translate('uploadPageBrowseButton1')}
</label>
<div class="uploadArea">
<h1>New uploads are temporarily unavailable</h1>
<p>Please return tomorrow for a brand new experience</p>
</div>
${fileList(state, emit)}
</div>

View File

@ -110,25 +110,25 @@ workflows:
ignore: /.*/
tags:
only: /^v.*/
- test:
filters:
branches:
ignore: /.*/
tags:
only: /^v.*/
- integration_tests:
requires:
- build
filters:
branches:
ignore: /.*/
tags:
only: /^v.*/
# - test:
# filters:
# branches:
# ignore: /.*/
# tags:
# only: /^v.*/
# - integration_tests:
# requires:
# - build
# filters:
# branches:
# ignore: /.*/
# tags:
# only: /^v.*/
- deploy_stage:
requires:
- build
- test
- integration_tests
# - test
# - integration_tests
filters:
branches:
ignore: /.*/

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "firefox-send",
"version": "2.6.3",
"version": "2.6.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@ -1,7 +1,7 @@
{
"name": "firefox-send",
"description": "File Sharing Experiment",
"version": "2.6.3",
"version": "2.6.4",
"author": "Mozilla (https://mozilla.org)",
"repository": "mozilla/send",
"homepage": "https://github.com/mozilla/send/",