Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable IWA in ShimlessRMA #111

Merged
merged 4 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion diagnostics-app/build_iwa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ web_bundle=$(mktemp)

# Copy the files into the temporary folders
cp -r dist/diagnostics-app/* ${iwa_src}
cp -r iwa/public/* ${iwa_src}
cp -r iwa/public/. ${iwa_src}

# Create the bundle
wbn --dir ${iwa_src} --output ${web_bundle} --formatVersion b2
Expand Down
21 changes: 21 additions & 0 deletions diagnostics-app/iwa/public/.well-known/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "Diagnostics App IWA",
"id": "/",
"scope": "/",
"start_url": "/",
"version": "0.1.0",
"display": "standalone",
"icons": [
{
"src": "/icon.png",
"type": "image/png",
"sizes": "512x512",
"purpose": "any maskable"
}
],
"permissions_policy": {
"camera": ["self"],
"microphone": ["self"],
"fullscreen": ["self"]
}
}
21 changes: 0 additions & 21 deletions diagnostics-app/iwa/public/manifest.webmanifest

This file was deleted.

22 changes: 12 additions & 10 deletions diagnostics-app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion diagnostics-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "4.9.5",
"wbn": "^0.0.9",
"wbn-sign": "^0.1.2"
"wbn-sign": "^0.2.1"
}
}
9 changes: 0 additions & 9 deletions diagnostics-app/src/manifest.webmanifest

This file was deleted.

Loading