Skip to content
Commits on Source (3)
# C++ objects and libs
*.slo
*.lo
*.o
*.a
*.la
*.lai
*.so
*.dll
*.dylib
*.qm
build/*
git_info.h
# Qt-es
/.qmake.cache
/.qmake.stash
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*
*.moc
moc_*.cpp
qrc_*.cpp
ui_*.h
Makefile*
*-build-*
*build-oscar-*
# QtCreator
*.autosave
*.swp
.DS_Store
#QtCtreator Qml
*.qmlproject.user
*.qmlproject.user.*
#Remnants of editors etc.
.vscode
*.bak
*~
#Doxygen output does not go in repository
doxydoc
#SourceTrail files
*.json
\ No newline at end of file
@echo off
setlocal
set destdir=..\..\oscar\icons
copy logo.ico %destdir%\logo.ico
copy oscar.icns %destdir%\oscar.icns
copy full-220.png %destdir%\logo-lg.png
copy full-100.png %destdir%\logo-lm.png
copy full-64.png %destdir%\logo-md.png
copy wave-24.png %destdir%\logo-sm.png
All icon and other PNG files are derived from a Photoshop file. The Photoshop
file has multiple layers, which need to be enabled or disabled when producing
the various PNG files. A full description of which layers need to be adjusted
is in Photshop Notes.xlsm, an Excel worksheet.
Smaller icons require manual editing for best appearance.
Windows .ico file should contain 16x16, 32x32, 48x48, and 256x256 images. We
also include 24x24 for Windows XP compatibility.
A .ico file can be built at the website icoconvert.com.
MacOS .icns file should contain:
Icon size (@1x) Icon size (@2x)
512px 512px (512pt 512pt @1x) 1024px 1024px (512pt 512pt @2x)
256px 256px (256pt 256pt @1x) 512px 512px (256pt 256pt @2x)
128px 128px (128pt 128pt @1x) 256px 256px (128pt 128pt @2x)
32px 32px (32pt 32pt @1x) 64px 64px (32pt 32pt @2x)
16px 16px (16pt 16pt @1x) 32px 32px (16pt 16pt @2x)
The .icns file can be edited on Windows using the Greenfish Icon Editor.
\ No newline at end of file