- Rename application from MenuWhisper to Tell me with new domain com.fmartingr.tellme - Implement comprehensive preferences window with 6 tabs (General, Models, Text Insertion, Interface, Advanced, Permissions) - Add full English/Spanish localization for all UI elements - Create functional onboarding flow with model download capability - Implement preview dialog for transcription editing - Add settings export/import functionality - Fix HUD content display issues and add comprehensive permission checking - Enhance build scripts and app bundle creation for proper localization support
35 lines
No EOL
988 B
Bash
Executable file
35 lines
No EOL
988 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Notarization script for Tell me
|
|
# This is a placeholder script that will be completed in Phase 5
|
|
|
|
set -e
|
|
|
|
echo "🍎 Tell me Notarization Script"
|
|
echo "📋 This script will handle code signing and notarization for distribution"
|
|
echo ""
|
|
echo "⚠️ This is a placeholder script - implementation pending Phase 5"
|
|
echo ""
|
|
echo "📝 Steps that will be implemented:"
|
|
echo " 1. Code signing with Developer ID"
|
|
echo " 2. Creating .app bundle"
|
|
echo " 3. Notarization with Apple"
|
|
echo " 4. Stapling notarization ticket"
|
|
echo " 5. Creating .dmg for distribution"
|
|
echo ""
|
|
echo "🔧 Usage (when implemented):"
|
|
echo " ./Scripts/notarize.sh [--developer-id YOUR_TEAM_ID]"
|
|
echo ""
|
|
|
|
# Placeholder for future implementation
|
|
# TODO: Implement in Phase 5
|
|
# - Set up code signing identity
|
|
# - Configure entitlements
|
|
# - Build .app bundle
|
|
# - Submit for notarization
|
|
# - Wait for approval
|
|
# - Staple ticket
|
|
# - Create DMG
|
|
|
|
echo "❌ Not implemented yet - use in Phase 5"
|
|
exit 1 |