Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
64 changes: 0 additions & 64 deletions .github/workflows/version-bump.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ A Vue.js application for creating beautiful layouts of two pictures with customi
- Configurable frame width and outer border size
- Drag-and-drop image upload
- High-resolution image export
- PWA support - installable on mobile and desktop devices

## Tech Stack

Expand Down Expand Up @@ -80,7 +81,6 @@ This project uses GitHub Actions for continuous integration and deployment:

- **CI**: Runs linter, tests, and build on all non-main branches and pull requests
- **Build and Deploy**: Automatically builds and deploys to GitHub Pages on every tag
- **Version Bump**: Creates a PR with a minor version bump after successful deployment

## AI Disclaimer
AI tools have been used to contribute to this project.
14 changes: 11 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,19 @@
<title>Framed</title>
<meta
name="description"
content="Create stunning layouts of two pictures with customizable backgrounds, borders, and orientations. Free online picture framing tool."
content="Create stunning layouts of two pictures with customizable backgrounds, borders, and orientations."
>

<!-- Favicon (placeholder) -->
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<!-- Favicon -->
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="icon" href="./favicon.ico" type="image/x-icon">

<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#1f2937">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Framed">
</head>
<body>
<div id="app"></div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "erost-framed",
"version": "1.0.0",
"version": "1.1.0",
"description": "Canvas-based picture framing application",
"type": "module",
"scripts": {
Expand Down
Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/icons/maskable_icon_x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/maskable_icon_x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/maskable_icon_x384.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/maskable_icon_x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/maskable_icon_x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/maskable_icon_x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/maskable_icon_x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"name": "Framed",
"short_name": "Framed",
"description": "Create stunning layouts of two pictures with customizable backgrounds, borders, and orientations",
"start_url": "/",
"display": "standalone",
"background_color": "#1f2937",
"theme_color": "#1f2937",
"orientation": "any",
"icons": [
{
"purpose": "maskable",
"sizes": "48x48",
"src": "/icons/maskable_icon_x48.png",
"type": "image/png"
},
{
"purpose": "maskable",
"sizes": "72x72",
"src": "/icons/maskable_icon_x72.png",
"type": "image/png"
},
{
"purpose": "maskable",
"sizes": "96x96",
"src": "/icons/maskable_icon_x96.png",
"type": "image/png"
},
{
"purpose": "maskable",
"sizes": "128x128",
"src": "/icons/maskable_icon_x128.png",
"type": "image/png"
},
{
"purpose": "maskable",
"sizes": "192x192",
"src": "/icons/maskable_icon_x192.png",
"type": "image/png"
},
{
"purpose": "maskable",
"sizes": "384x384",
"src": "/icons/maskable_icon_x384.png",
"type": "image/png"
},
{
"purpose": "maskable",
"sizes": "512x512",
"src": "/icons/maskable_icon_x512.png",
"type": "image/png"
}
],
"categories": ["photo", "graphics", "utilities"],
"screenshots": []
}