カレンダーイベント管理アプリの最初のプロジェクト構成と基本実装

- .gitignore や project.yml、Makefile などによる基本的なプロジェクト構成ファイルを追加
- macOSカレンダーイベントを表示するSwiftUIアプリの主要コンポーネント(イベント取得・リスト・カレンダー設定画面など)を実装
- カレンダーの表示期間や「今日へスクロール」「設定画面」遷移などの基本動作に対応
This commit is contained in:
2025-10-24 23:25:57 +09:00
commit 552a55ead6
9 changed files with 383 additions and 0 deletions

32
project.yml Normal file
View File

@@ -0,0 +1,32 @@
name: OreCalendar
options:
deploymentTarget:
macOS: "26.0"
schemes:
OreCalendarMac:
build:
targets:
OreCalendarMac: all
run:
config: Release
archive:
config: Release
targets:
OreCalendarMac:
platform: macOS
type: application
sources:
- Sources
- Resources
settings:
DEVELOPMENT_TEAM: QXF7ZWFA28
GENERATE_INFOPLIST_FILE: true
CURRENT_PROJECT_VERSION: 1
MARKETING_VERSION: "0.0.1α"
PRODUCT_BUNDLE_IDENTIFIER: com.ssig33.OreCalendarMac
INFOPLIST_KEY_UILaunchScreen_Generation: true
INFOPLIST_KEY_CFBundleDisplayName: OreCalendar
ASSETCATALOG_COMPILER_APPICON_NAME: AppIcon
INFOPLIST_KEY_NSCalendarsUsageDescription: "カレンダーのイベントを表示するためにアクセスが必要です"
INFOPLIST_KEY_NSCalendarsFullAccessUsageDescription: "カレンダーのイベントを表示するためにフルアクセスが必要です"