Skip to content
This repository has been archived by the owner on Dec 7, 2020. It is now read-only.

Commit

Permalink
Change naming from prior boilerplate.
Browse files Browse the repository at this point in the history
  • Loading branch information
mseaward committed Oct 22, 2018
1 parent c957eec commit a67019f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 30 deletions.
13 changes: 0 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,6 @@ The boilerplate for making electron applications built with vue (pretty much wha
[![Build Status](https://semaphoreci.com/api/v1/simulatedgreg/electron-vue/branches/master/badge.svg)](https://semaphoreci.com/simulatedgreg/electron-vue)
</div>

***
## Genesys GM
This repo includes a project called Genesys GM.

Genesys GM is an AIO tool for game masters using the Genesys books released by Fantasy Flight Games.
* Those familiar with the book and its layout will intuitively understand how to use this tool.

## Features:
* Character builder

### Planned Features |
***

## Boilerplate Overview
The aim of this project is to remove the need of manually setting up electron apps using vue. electron-vue takes advantage of `vue-cli` for scaffolding, `webpack` with `vue-loader`, `electron-packager` or `electron-builder`, and some of the most used plugins like `vue-router`, `vuex`, and so much more.

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "genesys-gm-electron",
"name": "azgaars-fantasy-map-generator",
"version": "0.0.1",
"author": "",
"description": "An AIO tool based around the Genesys book released by Fantasy Flight Games.",
"description": "Azgaar's Fantasy Map Generator and Editor",
"license": "UNLICENSED",
"main": "./dist/electron/main.js",
"scripts": {
Expand All @@ -22,8 +22,8 @@
"postinstall": "npm run lint:fix"
},
"build": {
"productName": "genesys-gm-electron",
"appId": "com.genesys-gm.icu",
"productName": "azgaars-fantasy-map-generator",
"appId": "com.azgaars-fantasy-map-generator.icu",
"directories": {
"output": "build"
},
Expand Down
2 changes: 1 addition & 1 deletion src/index.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<head>
<meta charset="utf-8">
<title>genesys-gm-electron</title>
<title>Azgaar's Fantasy Map Generator</title>
<% if (htmlWebpackPlugin.options.nodeModules) { %>
<!-- Add `node_modules/` to global paths so `require` works properly in development -->
<script>
Expand Down
12 changes: 1 addition & 11 deletions src/renderer/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ Vue.use(Router);

export default new Router({
routes: [
{
path: '/map',
name: 'map',
component: require('@/components/Map/map').default
},
{
path: '/',
name: 'landing-page',
Expand All @@ -18,11 +13,6 @@ export default new Router({
{
path: '*',
redirect: '/',
},
// {
// path: '/polygons',
// name: 'polygons',
// component: require('@/components/polygons').default
// }
}
],
});
2 changes: 1 addition & 1 deletion test/e2e/specs/Launch.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('Launch', function () {
it('shows the proper application title', function () {
return this.app.client.getTitle()
.then((title) => {
expect(title).to.equal('genesys-gm-electron');
expect(title).to.equal('Azgaar\'s Fantasy Map Generator');
});
});
});

0 comments on commit a67019f

Please sign in to comment.