Skip to content

Commit

Permalink
First functioning commit
Browse files Browse the repository at this point in the history
  • Loading branch information
littlej247 committed Dec 23, 2017
1 parent 6161c39 commit 13c18dd
Show file tree
Hide file tree
Showing 94 changed files with 24,877 additions and 14,067 deletions.
27 changes: 27 additions & 0 deletions ChangeLog
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
16 changes: 10 additions & 6 deletions README
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
**** LOOKING FOR THE ZIP FILE TO DOWNLOAD? ************************************
If you're on already here at https://github.com/cantonbecker/bitcoinpaperwallet
Then just look above for the green button that says "Clone or download".
Click it and select 'Download ZIP'.
*******************************************************************************
**** THIS IS AN UNTESTED AND HEAVILY MODIFIED FORK ****

*** bitcoinpaperwallet.com ***
This project is a fork of bitcoinpaperwallet.com. It has been modified to be
compatible as a packaged ChromeOS app with the intention of maintaining backwards
compatibility as an esthetic client side web app. This is a personal project only
for the purpose of self education in the development of ChromeOS apps.


--------------------------------------------------------------
--- The original bitcoinpaperwallet.com README continues below ---
--------------------------------------------------------------

This project is a fork of bitaddress.org, the original trustworthy
JavaScript powered offline bitcoin address generator.
Expand Down
180 changes: 0 additions & 180 deletions START-HERE.html

This file was deleted.

Binary file added assets/Bitcoin_Logo128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/Bitcoin_Logo16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions background.js
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

}
);
});
20 changes: 20 additions & 0 deletions css/chromeAppOnly.css
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;

}
Loading

0 comments on commit 13c18dd

Please sign in to comment.