Skip to content

chore: sync main to dev after v1.24.0#48

Merged
github-actions[bot] merged 3 commits intodevfrom
main
Jan 4, 2026
Merged

chore: sync main to dev after v1.24.0#48
github-actions[bot] merged 3 commits intodevfrom
main

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Jan 4, 2026

Automated PR to sync release changes from main to dev.

Copilot AI and others added 3 commits January 4, 2026 11:48
* refactor: componentize buttons and icons (#33)

* fix: add cursor pointer to close button in ChatStats component

* feat: add reusable button components

* feat: add Icon component with 47 icons and filled state support

* refactor: replace inline SVGs with Icon component

* refactor: replace inline buttons with IconButton and ListItemButton

* refactor: replace inline SVGs and buttons in main page

- Replace all inline SVG icons with Icon component
- Replace inline button elements with IconButton component
- Fix layout structure issues for proper flex container nesting
- Fix indentation in no-chat-selected section

* style: fix linting issues

* fix: replace remaining inline SVG and hardcoded strings

- Replace inline WhatsApp SVG with Icon component in +page.svelte
- Replace hardcoded 'Delete bookmark', 'Cancel', 'Save' with i18n messages in BookmarkModal
- Replace hardcoded 'Remove Chat' with i18n message in ChatList

* fix: export new button and icon components from index.ts

* fix: address Copilot review comments

- Fix wifi-off icon SVG path (was showing lightbulb icon)
- Fix circle icon SVG path (malformed relative move command)
- Fix Icon indentation inside IconButton/Button components (7 locations)

* Initial plan

* fix: replace array class bindings with template literals and remove unused prop

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* style: use consistent template literal pattern for class bindings

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* Initial plan

* fix: resolve type check errors and a11y warning

- Use local inlang plugins instead of CDN to fix compilation in offline/restricted networks
- Add stroke-width prop to Icon component and use it in actualStrokeWidth derivation
- Add track element to video in MediaGallery to satisfy a11y requirements

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* chore: auto-sync dev with main after release

* fix: add JSDoc comment to IconName type for better IDE support

* fix: use GitHub API to sync dev with main after release

The previous approach failed because dev branch is protected and requires PRs.

* feat: use peter-evans/create-pull-request for elegant branch sync

Most elegant solution for syncing protected branches:
- Industry standard (175k+ repos use it)
- No PAT required, works with GITHUB_TOKEN
- Handles branch protection automatically
- Idempotent (updates existing PR)
- Auto-deletes branch after merge

* fix: remove duplicate sync step (handled in build.yml)

* fix: add pull-requests permission for branch sync

* feat: extract reusable UI components

Extract repeated UI patterns into reusable components:

- Collapsible: Expandable sections with animated chevron
- FeatureItem: Badge list items (numbered/icon variants)
- Modal + ModalHeader + ModalContent: Dialog overlays with ESC key handling
- Dropdown + DropdownHeader + DropdownSearch + DropdownList: Floating menus

Reduced +page.svelte by 92 lines while improving maintainability.

Co-authored-by: Copilot <noreply@github.com>

* Add Open Graph and Twitter Card meta tags for social media previews (#46)

* Initial plan

* feat: add Open Graph and Twitter Card meta tags for social media sharing

Added comprehensive social media meta tags to src/app.html:
- Open Graph tags (og:type, og:url, og:title, og:description, og:image, og:image:width, og:image:height, og:image:alt, og:site_name)
- Twitter Card tags (twitter:card, twitter:url, twitter:title, twitter:description, twitter:image, twitter:image:alt)

The tags are placed after app meta tags and before security meta tags. The og-image.png file (1200x630px) will need to be created separately and placed in static/ directory.

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* feat: add Open Graph and Twitter Card meta tags with og-image

- Added comprehensive Open Graph meta tags (9 tags) for Facebook, LinkedIn, Reddit
- Added Twitter Card meta tags (6 tags) for Twitter/X support
- Created og-image.png (1200x630px, 415KB) using app icon from static/
- Image uses WhatsApp brand color (#075e54) with app icon and title
- All tags properly positioned between app meta and security sections
- Includes helpful comment about og-image requirements
- All quality checks passed (lint, types, format, build)

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* fix: recreate og-image with better visibility and contrast

The previous og-image had poor contrast with the icon blending into the background. Recreated with:
- Proper icon visibility using shadow effect for depth
- Better contrast between icon and background
- No opaque white boxes or artifacts
- Clean, professional appearance
- Still 1200x630px, PNG, under 5MB (276KB)

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* fix: replace og-image with clean, natural design

Completely redesigned og-image to look natural without weird backgrounds or opacity issues:
- Simple hand-drawn chat bubble icon in white
- Clean WhatsApp green background (#075e54)
- No more opaque boxes, rounded rectangles, or artificial-looking elements
- Professional, minimalist design (60KB)
- 1200x630px PNG as required

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* fix: use actual app logo for og-image

Using the real app logo (web-app-manifest-512x512.png) directly without any manipulations:
- Clean WhatsApp green background
- Actual app logo centered at 280x280px
- White title and subtitle text
- No custom drawings or weird effects
- Simple, professional design (236KB)
- 1200x630px PNG as required

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* fix: recreate og-image with black background

Changed background from WhatsApp green to black as requested:
- Black background (#000000) for better contrast and dark mode compatibility
- Same app logo and layout
- White title text and light gray subtitle
- Clean, professional appearance (228KB)
- 1200x630px PNG as required

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* docs: clarify og-image.png already exists in comment

Updated comment from "should be placed" to "is located in" to clarify that the og-image.png file already exists in the static/ directory, avoiding confusion for future developers.

Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>

* Initial plan

---------

Co-authored-by: Rodrigo Gomes da Silva <rodrigo.smscom@gmail.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: rodrigogs <2362425+rodrigogs@users.noreply.github.com>
Co-authored-by: Copilot <noreply@github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
# [1.24.0](v1.23.0...v1.24.0) (2026-01-04)

### Bug Fixes

* add JSDoc comment to IconName type for better IDE support ([2693e00](2693e00))
* add pull-requests permission for branch sync ([f2be78d](f2be78d))
* remove duplicate sync step (handled in build.yml) ([e0499de](e0499de))
* trigger manual release for testing ([92658a6](92658a6))
* use GitHub API to sync dev with main after release ([a7bb91f](a7bb91f))

### Features

* extract reusable UI components ([cad1fe9](cad1fe9))
* use peter-evans/create-pull-request for elegant branch sync ([f302d5f](f302d5f))
@github-actions github-actions bot merged commit 7fc66f6 into dev Jan 4, 2026
9 checks passed
@github-actions
Copy link
Contributor Author

github-actions bot commented Jan 5, 2026

🎉 This PR is included in version 1.25.0 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants