Removes mobile check. Adds QA bug reporting standard to Readme.

This commit is contained in:
ssotomayor 2014-10-02 13:51:56 -03:00
commit a0a4d43877
4 changed files with 47 additions and 2 deletions

22
CONTRIBUTE.md Normal file
View file

@ -0,0 +1,22 @@
# QA - Bug Reporting
In the interest of improving bug reporting, each bug that you find and want to create a ticket about it, please refer to a form that contains:
· Brief description of the bug
· Steps to reproduce it
· Platform in which you are testing
· Screenshots if possible.
· Expected behaviour.
i.e:
The application fails at login.
1) Launch the app `npm run start`
2) Click on "Join a Wallet"
3) Type an unexistent username
4) The app stops working, throws "Unhandled exception" error.
Expected: The app should login and show the home screen without any error.
Platform: Android 4.3, Android 4.4, iOS

View file

@ -167,6 +167,28 @@ $ npm run-script firefox
browser-extensions/firefox/copay.xpi browser-extensions/firefox/copay.xpi
` `
# QA - Bug Reporting
In the interest of improving bug reporting, each bug that you find and want to create a ticket about it, please refer to a form that contains:
· Brief description of the bug
· Steps to reproduce it
· Platform in which you are testing
· Screenshots if possible
· Expected behaviour
i.e:
The application fails at login.
1) Launch the app `npm run start`
2) Click on "Join a Wallet"
3) Type an unexistent username
4) The app stops working, throws "Unhandled exception" error.
Expected: The app should login to the home screen after clicking login and show no errors.
Platform: Android 4.3, Android 4.4, iOS
## Web App ## Web App
@ -183,6 +205,8 @@ $ sh webapp/build.sh
# About Copay # About Copay
General General

View file

@ -3,7 +3,6 @@
angular.module('copayApp.controllers').controller('MoreController', angular.module('copayApp.controllers').controller('MoreController',
function($scope, $rootScope, $location, $filter, backupService, walletFactory, controllerUtils, notification, rateService, isMobile) { function($scope, $rootScope, $location, $filter, backupService, walletFactory, controllerUtils, notification, rateService, isMobile) {
var w = $rootScope.wallet; var w = $rootScope.wallet;
$scope.isMobile = isMobile.iOS();
$scope.unitOpts = [{ $scope.unitOpts = [{
name: 'Satoshis (100,000,000 satoshis = 1BTC)', name: 'Satoshis (100,000,000 satoshis = 1BTC)',

View file

@ -1,6 +1,6 @@
<div class="backup" ng-controller="MoreController"> <div class="backup" ng-controller="MoreController">
<h1 translate>Settings </h1> <h1 translate>Settings </h1>
<div class="oh large-12 columns panel" ng-if="!isMobile()"> <div class="oh large-12 columns panel">
<h3><i class="fi-download m10r"></i> <span translate>Backup</span> </h3> <h3><i class="fi-download m10r"></i> <span translate>Backup</span> </h3>
<p translate class="large-8 columns text-gray">It's important to backup your wallet so that you can recover it in case of disaster</p> <p translate class="large-8 columns text-gray">It's important to backup your wallet so that you can recover it in case of disaster</p>
<div class="large-4 columns"> <div class="large-4 columns">