forked from cantonbecker/bitcoinpaperwallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6161c39
commit 13c18dd
Showing
94 changed files
with
24,877 additions
and
14,067 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
This project is a fork from BitCoinPaperWallet.com by Canton Becker, see readme for details. Initial changes are in comparison to that project. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## 0.0.1 - 2014-05-31 | ||
### Added | ||
- Forked bitcoinPaperWallet.com | ||
- CSPfixes.js to contain js commands that can't remain in HTML file | ||
- CSP_Alert() dialog for custom dialogs | ||
- Wallet designs now have individual paramiters in for options like multi-language, denomination, etc. | ||
- Info dialog for accessing Readme File and footer links | ||
|
||
### Changed | ||
- Libraries are divided into individual files | ||
- Changed all alerts, confirm, & block dialogs to use CSP_Alert() | ||
- QR Scanner dialog for better appearance | ||
- Fixed camera stop bug | ||
- Some language data moved to .json file | ||
|
||
### Removed | ||
- Multi-currency support until bitcoin.js intigration can be resolved | ||
- Async unit tests link until javascript memory leak is resolved. This command can still be run manually via "ninja.unitTests.runAsynchronousTests()" in the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* Listens for the app launching, then creates the window. | ||
* | ||
* @see http://developer.chrome.com/apps/app.runtime.html | ||
* @see http://developer.chrome.com/apps/app.window.html | ||
*/ | ||
chrome.app.runtime.onLaunched.addListener(function(launchData) { | ||
chrome.app.window.create( | ||
'index.html', | ||
{ | ||
id: 'mainWindow', | ||
frame: { | ||
type: 'chrome', | ||
color: '#f7931a' | ||
}, | ||
innerBounds: { | ||
minWidth: 1010, | ||
minHeight: 740 | ||
}, | ||
resizable: false | ||
|
||
} | ||
); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
|
||
.footer{ | ||
display: none; | ||
} | ||
.instructionsarea { | ||
overflow-y: scroll; | ||
height: 551px; | ||
} | ||
|
||
#paperkeyarea { | ||
position: fixed; | ||
top: 280px; | ||
|
||
} | ||
#paperBack { | ||
position: fixed; | ||
top: 280px; | ||
|
||
} |
Oops, something went wrong.