1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +08:00

refine pwa app icons

This commit is contained in:
lana-k
2021-05-02 20:46:27 +02:00
parent 464bff3db8
commit b9844b8696
6 changed files with 11 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.9 KiB

After

Width:  |  Height:  |  Size: 11 KiB

BIN
public/Logo48x48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 798 B

After

Width:  |  Height:  |  Size: 774 B

View File

@@ -3,6 +3,16 @@
"description": "Sqliteviz is a single-page application for fully client-side visualisation of SQLite databases or CSV.", "description": "Sqliteviz is a single-page application for fully client-side visualisation of SQLite databases or CSV.",
"display": "fullscreen", "display": "fullscreen",
"icons": [ "icons": [
{
"src": "favicon.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "Logo48x48.png",
"sizes": "48x48",
"type": "image/png"
},
{ {
"src": "Logo192x192.png", "src": "Logo192x192.png",
"sizes": "192x192", "sizes": "192x192",

View File

@@ -882,5 +882,5 @@ describe('DbUploader.vue import CSV', () => {
await newDb.loadDb.returnValues[0] await newDb.loadDb.returnValues[0]
expect(actions.addTab.calledOnce).to.equal(true) expect(actions.addTab.calledOnce).to.equal(true)
expect(mutations.setCurrentTabId.calledOnce).to.equal(true) expect(mutations.setCurrentTabId.calledOnce).to.equal(true)
}) })
}) })