forked from kay/RouterOS
Eigenständiges Router-Symbol (Antennen + Gerätekörper mit Status-LEDs) auf Türkis-Verlauf -- kein Nachbau von Mikrotiks eingetragenem Logo, nur farblich an RouterOS angelehnt. Als SVG entworfen, per kleinem AppKit/NSImage-Skript (kein Homebrew/librsvg nötig) in alle macOS- Icongrößen von 16px bis 1024px gerendert. project.yml: ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon ergänzt, damit Xcode das neue AppIcon.appiconset als App-Icon verwendet. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01HReLXMbmPvtQ23p1iWiJNW
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
name: RouterOSAssistant
|
|
options:
|
|
bundleIdPrefix: com.focus72
|
|
deploymentTarget:
|
|
macOS: "14.0"
|
|
settings:
|
|
base:
|
|
SWIFT_VERSION: "5.0"
|
|
MACOSX_DEPLOYMENT_TARGET: "14.0"
|
|
packages:
|
|
Citadel:
|
|
url: https://github.com/orlandos-nl/Citadel.git
|
|
from: 0.9.0
|
|
targets:
|
|
RouterOSAssistant:
|
|
type: application
|
|
platform: macOS
|
|
sources:
|
|
- path: RouterOSAssistant
|
|
settings:
|
|
base:
|
|
PRODUCT_BUNDLE_IDENTIFIER: com.focus72.RouterOSAssistant
|
|
ENABLE_HARDENED_RUNTIME: YES
|
|
CODE_SIGN_STYLE: Automatic
|
|
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
|
|
dependencies:
|
|
- package: Citadel
|
|
info:
|
|
path: RouterOSAssistant/Info.plist
|
|
properties:
|
|
CFBundleDisplayName: RouterOS Assistant
|
|
LSApplicationCategoryType: public.app-category.utilities
|
|
NSAppTransportSecurity:
|
|
NSAllowsArbitraryLoads: true
|
|
RouterOSAssistantTests:
|
|
type: bundle.unit-test
|
|
platform: macOS
|
|
sources:
|
|
- path: RouterOSAssistantTests
|
|
settings:
|
|
base:
|
|
GENERATE_INFOPLIST_FILE: YES
|
|
dependencies:
|
|
- target: RouterOSAssistant
|
|
schemes:
|
|
RouterOSAssistant:
|
|
build:
|
|
targets:
|
|
RouterOSAssistant: all
|
|
run:
|
|
config: Debug
|
|
test:
|
|
config: Debug
|
|
targets:
|
|
- RouterOSAssistantTests
|