diff options
author | alyx <alyx@aleteoryx.me> | 2022-06-02 00:26:49 +0000 |
---|---|---|
committer | Aleteoryx <alyx@aleteoryx.me> | 2022-06-02 00:26:49 +0000 |
commit | c1e64bf0ccdaeb1b676f1a53967b0d0448e1ca44 (patch) | |
tree | 923762a989184bb6a13054d0ca668c85c53db94e /pwathings | |
parent | b1ec23e3579b1528e6e7eb12f5c9f89793b5390e (diff) | |
download | RRCUtils-c1e64bf0ccdaeb1b676f1a53967b0d0448e1ca44.tar.gz RRCUtils-c1e64bf0ccdaeb1b676f1a53967b0d0448e1ca44.tar.bz2 RRCUtils-c1e64bf0ccdaeb1b676f1a53967b0d0448e1ca44.zip |
basic PWA things, fixed the searcher again
Diffstat (limited to 'pwathings')
-rw-r--r-- | pwathings/appver.json | 3 | ||||
-rw-r--r-- | pwathings/icons/100x.png | bin | 0 -> 2197 bytes | |||
-rw-r--r-- | pwathings/icons/16x.png | bin | 0 -> 489 bytes | |||
-rw-r--r-- | pwathings/icons/200x.png | bin | 0 -> 4419 bytes | |||
-rw-r--r-- | pwathings/icons/32x.png | bin | 0 -> 891 bytes | |||
-rw-r--r-- | pwathings/icons/400x.png | bin | 0 -> 6613 bytes | |||
-rw-r--r-- | pwathings/icons/64x.png | bin | 0 -> 1757 bytes | |||
-rw-r--r-- | pwathings/manifest.json | 54 |
8 files changed, 57 insertions, 0 deletions
diff --git a/pwathings/appver.json b/pwathings/appver.json new file mode 100644 index 0000000..669fb74 --- /dev/null +++ b/pwathings/appver.json @@ -0,0 +1,3 @@ +{ + "ver": 1 +}
\ No newline at end of file diff --git a/pwathings/icons/100x.png b/pwathings/icons/100x.png Binary files differnew file mode 100644 index 0000000..b520f69 --- /dev/null +++ b/pwathings/icons/100x.png diff --git a/pwathings/icons/16x.png b/pwathings/icons/16x.png Binary files differnew file mode 100644 index 0000000..c6df0e1 --- /dev/null +++ b/pwathings/icons/16x.png diff --git a/pwathings/icons/200x.png b/pwathings/icons/200x.png Binary files differnew file mode 100644 index 0000000..a6d9541 --- /dev/null +++ b/pwathings/icons/200x.png diff --git a/pwathings/icons/32x.png b/pwathings/icons/32x.png Binary files differnew file mode 100644 index 0000000..bf0bb2c --- /dev/null +++ b/pwathings/icons/32x.png diff --git a/pwathings/icons/400x.png b/pwathings/icons/400x.png Binary files differnew file mode 100644 index 0000000..f92bba7 --- /dev/null +++ b/pwathings/icons/400x.png diff --git a/pwathings/icons/64x.png b/pwathings/icons/64x.png Binary files differnew file mode 100644 index 0000000..0779747 --- /dev/null +++ b/pwathings/icons/64x.png diff --git a/pwathings/manifest.json b/pwathings/manifest.json new file mode 100644 index 0000000..2a7611b --- /dev/null +++ b/pwathings/manifest.json @@ -0,0 +1,54 @@ +{ + "name": "Aleteoryx's Circuit Utilities", + "short_name": "CV2Utils", + "description": "A set of tools for understanding and working with Rec Room's circuits, formerly CV2.", + + "start_url": "/", + "display": "minimal-ui", + + "background_color": "#082f41", + + "shortcuts": [ + { + "name": "Chip Searcher", + "url": "/searcher" + }, + { + "name": "Chip Searcher", + "url": "/searcher" + } + ], + + "icons": [ + { + "src": "/pwathings/icons/400x.png", + "sizes": "400x400", + "type": "image/png" + }, + { + "src": "/pwathings/icons/200x.png", + "sizes": "200x200", + "type": "image/png" + }, + { + "src": "/pwathings/icons/100x.png", + "sizes": "100x100", + "type": "image/png" + }, + { + "src": "/pwathings/icons/64x.png", + "sizes": "64x64", + "type": "image/png" + }, + { + "src": "/pwathings/icons/32x.png", + "sizes": "32x32", + "type": "image/png" + }, + { + "src": "/pwathings/icons/16x.png", + "sizes": "16x16", + "type": "image/png" + } + ] +}
\ No newline at end of file |