Skip to content

Commit

Permalink
update naming
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbreuler committed Oct 30, 2019
1 parent 145792f commit 560263a
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 39 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "dynamics-solution-assistant",
"version": "0.2.0",
"description": "Dynamics 365 Solution Assistant.",
"name": "solution-assistant",
"version": "0.9.0",
"description": "PowerApps Solution Assistant.",
"author": "Paul Breuler",
"license": "MIT ",
"private": false,
"main": "public/electron.js",
"homepage": "./",
"build": {
"appId": "com.electron.dynamics-solution-assistant",
"appId": "com.electron.solution-assistant",
"files": [
"build/**/*",
"node_modules/**/*",
Expand Down
47 changes: 26 additions & 21 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<!--
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<!--
manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<link rel="apple-touch-icon" sizes="76x76" href="%PUBLIC_URL%/apple-icon.png">
<!--
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<link
rel="apple-touch-icon"
sizes="76x76"
href="%PUBLIC_URL%/apple-icon.png"
/>
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Expand All @@ -21,15 +27,15 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Dynamics Solution Assistant</title>
</head>
<title>Solution Assistant</title>
</head>

<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
<!--
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.
Expand All @@ -39,6 +45,5 @@
To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>

</html>
</body>
</html>
31 changes: 17 additions & 14 deletions public/splash.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Solution Assistant</title>
</head>

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Dynamics Solution Assistant</title>
</head>

<body style="background-color:hsla(0, 0%, 20%, 1);">
<h1 style="position: absolute;
<body style="background-color:hsla(0, 0%, 20%, 1);">
<h1
style="position: absolute;
top: 60%;
left: 50%;
width: 200px;
Expand All @@ -17,9 +20,9 @@
color: white;
text-align: center;
font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
white-space: nowrap;">
Solution Assistant
</h1>
</body>

</html>
white-space: nowrap;"
>
Solution Assistant
</h1>
</body>
</html>

0 comments on commit 560263a

Please sign in to comment.