Skip to content

Commit

Permalink
rename to card spy
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkp committed Apr 24, 2016
1 parent 5ada70a commit d1c133f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion app/card-explorer.js → app/card-spy.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const ipcMain = require('electron').ipcMain;


const createWindow = () => {
mainWindow = new BrowserWindow({width: 640, height: 800, icon: './tomkp.png', title: 'Card Explorer'});
mainWindow = new BrowserWindow({width: 640, height: 800, icon: './tomkp.png', title: 'Card Spy'});
mainWindow.loadURL('file://' + __dirname + '/dist/index.html');
let webContents = mainWindow.webContents;
if (process.env.NODE_ENV === 'development') {
Expand Down
2 changes: 1 addition & 1 deletion app/dist/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>Card Explorer</title>
<title>Card Spy</title>
<link rel="stylesheet" href="../node_modules/font-awesome/css/font-awesome.min.css" />
</head>
<body>
Expand Down
6 changes: 3 additions & 3 deletions app/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "card-explorer",
"productName": "Card Explorer",
"name": "card-spy",
"productName": "Card Spy",
"version": "1.0.0",
"description": "",
"author": "tomkp <[email protected]>",
"license": "MIT",
"main": "card-explorer.js",
"main": "card-spy.js",
"dependencies": {
"babel-polyfill": "^6.7.4",
"card-reader": "^1.0.3",
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "card-explorer",
"productName": "Card Explorer",
"name": "card-spy",
"productName": "Card Spy",
"version": "1.0.0",
"description": "Smartcard REPL",
"author": "tomkp <[email protected]>",
"license": "MIT",
"main": "./app/card-explorer.js",
"main": "./app/card-spy.js",
"scripts": {
"clean": "rimraf ./build",
"clean:osx": "rimraf ./build/Card Explorer-darwin-x64",
"clean:win": "rimraf ./build/Card Explorer-win32-x64",
"start": "cross-env NODE_ENV=development electron ./app/card-explorer.js",
"clean:osx": "rimraf ./build/Card Spy-darwin-x64",
"clean:win": "rimraf ./build/Card Spy-win32-x64",
"start": "cross-env NODE_ENV=development electron ./app/card-spy.js",
"compile": "webpack",
"compile:watch": "webpack -w",
"build:osx": "npm run clean:osx && cross-env NODE_ENV=development electron-packager ./app --overwrite --out='build' --icon='tomkp.icns' --platform=darwin --appname='Card Explorer' --arch=x64",
"build:win": "npm run clean:win && cross-env NODE_ENV=development electron-packager . --overwrite --out='build' --platform=win32 --appname='Card Explorer' --arch=x64",
"build:osx": "npm run clean:osx && cross-env NODE_ENV=development electron-packager ./app --overwrite --out='build' --icon='tomkp.icns' --platform=darwin --appname='Card Spy' --arch=x64",
"build:win": "npm run clean:win && cross-env NODE_ENV=development electron-packager . --overwrite --out='build' --platform=win32 --appname='Card Spy' --arch=x64",
"build": "npm run build:osx && npm run build:win"
},
"devDependencies": {
Expand Down

0 comments on commit d1c133f

Please sign in to comment.