This commit is contained in:
2020-04-20 12:46:02 +02:00
committed by smuddy
parent 4f1a12bd00
commit 0b8e2212e9
37 changed files with 2731 additions and 73 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@@ -0,0 +1,16 @@
import {TestBed} from '@angular/core/testing';
import {DocxService} from './docx.service';
describe('DocxService', () => {
let service: DocxService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(DocxService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});

View File

@@ -0,0 +1,10 @@
import {Injectable} from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class DocxService {
constructor() {
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

BIN
src/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

9
src/browserconfig.xml Normal file
View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#4286f4</TileColor>
</tile>
</msapplication>
</browserconfig>

BIN
src/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
src/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 948 B

After

Width:  |  Height:  |  Size: 12 KiB

View File

@@ -5,9 +5,16 @@
<title>Worship Generator</title>
<base href="/">
<meta content="width=device-width, initial-scale=1" name="viewport">
<link href="favicon.ico" rel="icon" type="image/x-icon">
<link href="apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">
<link href="favicon-32x32.png" rel="icon" sizes="32x32" type="image/png">
<link href="favicon-16x16.png" rel="icon" sizes="16x16" type="image/png">
<link color="#4286f4" href="safari-pinned-tab.svg" rel="mask-icon">
<meta content="#4286f4" name="msapplication-TileColor">
<meta content="#4286f4" name="theme-color">
<link href="manifest.webmanifest" rel="manifest">
<meta content="#1976d2" name="theme-color">
<meta content="#4286f4" name="theme-color">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono&display=swap" rel="stylesheet">

View File

@@ -1,51 +1,16 @@
{
"name": "wgenerator",
"name": "Worship Generator",
"short_name": "wgenerator",
"theme_color": "#1976d2",
"background_color": "#fafafa",
"theme_color": "#4286f4",
"background_color": "#222",
"display": "standalone",
"scope": "/",
"start_url": "/",
"icons": [
{
"src": "assets/icons/icon-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "assets/icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "assets/icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "assets/icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "assets/icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "assets/icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "assets/icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "assets/icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
"icons": [
{
"src": "android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
}
],
}

BIN
src/mstile-150x150.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

1044
src/safari-pinned-tab.svg Normal file

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 75 KiB