webdrop-bridge/resources/icons
claudi 3f9fa06fbd
Some checks are pending
Tests & Quality Checks / Test on Python 3.11 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.11-1 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12-1 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.10 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.11-2 (push) Waiting to run
Tests & Quality Checks / Test on Python 3.12-2 (push) Waiting to run
Tests & Quality Checks / Build Artifacts (push) Blocked by required conditions
Tests & Quality Checks / Build Artifacts-1 (push) Blocked by required conditions
feat: Add icon generation script and update README with new functionality
2026-04-14 17:34:31 +02:00
..
app.icns feat: Add icon generation script and update README with new functionality 2026-04-14 17:34:31 +02:00
app.ico feat: Add icon generation script and update README with new functionality 2026-04-14 17:34:31 +02:00
app.png Refactor code structure for improved readability and maintainability 2026-02-19 12:18:08 +01:00
background.bmp Enhance Windows installer configuration and add license file 2026-02-19 15:09:08 +01:00
banner.bmp Enhance Windows installer configuration and add license file 2026-02-19 15:09:08 +01:00
home.ico Refactor code structure for improved readability and maintainability 2026-03-10 12:52:12 +01:00
open.ico Refactor code structure for improved readability and maintainability 2026-03-10 12:52:12 +01:00
openwith.ico Refactor code structure for improved readability and maintainability 2026-03-10 12:52:12 +01:00
README.md feat: Implement default welcome page for missing web application 2026-01-28 12:59:33 +01:00
reload.ico Refactor code structure for improved readability and maintainability 2026-03-10 12:52:12 +01:00

Icon Files for WebDrop Bridge

This directory should contain application icon files for the build process.

Required Icons

Windows

  • app.ico - 256x256 or larger, ICO format
    • Used by PyInstaller and Windows installer
    • Can contain multiple resolutions (16, 32, 48, 64, 128, 256)

macOS

  • app.icns - Apple icon set
    • Required for macOS .app bundle
    • Must include at least: 16, 32, 48, 64, 128, 256, 512, 1024px sizes
    • Tools: iconutil on macOS, or png2icns

Creating Icons

From PNG on macOS:

png2icns resources/icons/app.icns resources/icons/app-1024.png

From Multiple PNGs on macOS:

mkdir app.iconset
# Add PNG files: 16x16, 32x32, 64x64, 128x128, 256x256, 512x512, 1024x1024
iconutil -c icns app.iconset -o resources/icons/app.icns

Creating ICO from PNG on Windows:

  • Use tools like: ImageMagick, GIMP, or online converters
  • Ensure high quality for professional appearance

Current Status

⚠️ Icon files are currently missing.

  • The build scripts will work without them (PyInstaller uses default icon)
  • Replace these files before distribution for professional appearance

Design Guidelines

  • Use consistent branding/color scheme
  • Ensure visibility at small sizes (16x16)
  • Include transparency for professional look
  • Test on both light and dark backgrounds (macOS)