Merge pull request #3272 from cmgustavo/pre-release/v1.3.0
Pre release/v1.3.0
This commit is contained in:
commit
0c30dde727
9 changed files with 316 additions and 233 deletions
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<widget id="com.bitpay.copay"
|
||||
version="1.2.6"
|
||||
android-versionCode="47"
|
||||
ios-CFBundleVersion="1.2.6">
|
||||
version="1.3.0"
|
||||
android-versionCode="48"
|
||||
ios-CFBundleVersion="1.3.0">
|
||||
<name>Copay</name>
|
||||
<description>
|
||||
A secure bitcoin wallet for friends and companies.
|
||||
|
|
|
|||
|
|
@ -57,11 +57,11 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.2.6</string>
|
||||
<string>1.3.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.2.6</string>
|
||||
<string>1.3.0</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>NSMainNibFile</key>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:m3="http://schemas.microsoft.com/appx/2014/manifest" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest">
|
||||
<Identity Name="18C7659D.CopayWallet" Publisher="CN=F89609D1-EB3E-45FD-A58A-C2E3895FCE7B" Version="1.2.6.0" />
|
||||
<Identity Name="18C7659D.CopayWallet" Publisher="CN=F89609D1-EB3E-45FD-A58A-C2E3895FCE7B" Version="1.3.0.0" />
|
||||
<mp:PhoneIdentity PhoneProductId="5381aa50-9069-11e4-84cc-293caf9cbdc8" PhonePublisherId="F89609D1-EB3E-45FD-A58A-C2E3895FCE7B" />
|
||||
<Properties>
|
||||
<DisplayName>Copay Wallet</DisplayName>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,24 @@
|
|||
* Support for backup phrases (BIP39)
|
||||
* Support for BIP44
|
||||
* Support for non-multisig addresses for personal wallets (1-of-1)
|
||||
* Advanced wallet details
|
||||
* Ledger support for multisig wallets
|
||||
* Minor bug fixes
|
||||
Major updates
|
||||
=============
|
||||
|
||||
* Support for iOS 9
|
||||
* Trezor hardware wallet support
|
||||
* Paper wallet support
|
||||
|
||||
Minor updates
|
||||
=============
|
||||
|
||||
* New splash to install Copay in OSX
|
||||
* Fix animations
|
||||
* Handle back-button on Android devices if a modal is opened
|
||||
* Fix beep sound after barcodescanner on Android devices
|
||||
* Fix derivation path on Advanced Information
|
||||
* Add non-backward compatibility URI for payment protocol
|
||||
* Hide menu bottom if wallet is not authorized
|
||||
* Fix wording on the backup page
|
||||
* Fix translation strings
|
||||
* Updates the packages dependencies with bower
|
||||
* Support for iOS 9
|
||||
* Fix mnemonic with private key encrypted
|
||||
* Fix time in proposal transactions
|
||||
* Fix autofocus to password input in Request Password for Spending Funds modal
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -2,7 +2,7 @@
|
|||
"name": "copay",
|
||||
"description": "A multisignature wallet",
|
||||
"author": "BitPay",
|
||||
"version": "1.2.6",
|
||||
"version": "1.3.0",
|
||||
"keywords": [
|
||||
"wallet",
|
||||
"copay",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[Desktop Entry]
|
||||
Type=Application
|
||||
Version=1.2.6
|
||||
Version=1.3.0
|
||||
Name=Copay
|
||||
Comment=A multisignature wallet
|
||||
Exec=copay
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define MyAppName "Copay"
|
||||
#define MyAppVersion "1.2.6"
|
||||
#define MyAppVersion "1.3.0"
|
||||
#define MyAppPublisher "BitPay"
|
||||
#define MyAppURL "https://copay.io"
|
||||
#define MyAppExeName "copay.exe"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||||
|
||||
#define MyAppName "Copay"
|
||||
#define MyAppVersion "1.2.6"
|
||||
#define MyAppVersion "1.3.0"
|
||||
#define MyAppPublisher "BitPay"
|
||||
#define MyAppURL "https://copay.io"
|
||||
#define MyAppExeName "copay.exe"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue