Added (6 user-friendly features):
- Onboarding wizard (5 steps, forced on first launch, re-runnable from Help menu)
- Salary estimation (optional, hourly wage + overtime multiplier)
- Inline clock-in/out time editing (click label to edit)
- Today summary card (post-clockout, auto-hide on next clock-in)
- Health break reminder (continuous N-hour at desk warning)
- Discord webhook notifications (clock-in/out/health, mobile push, no server)
Database:
- break_records.break_type column ('break'/'lunch'/'dinner')
- notification_log table (dedupe + analytics)
- Auto-complete onboarding for existing users (work_records exists)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
8 lines
158 B
Python
8 lines
158 B
Python
"""
|
|
앱 버전 상수.
|
|
|
|
릴리스 시 이 값을 올린 후 git tag → push.
|
|
CHANGELOG.md의 최상단 항목과 일치시킬 것.
|
|
"""
|
|
__version__ = '2.3.0'
|