mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-28 13:32:23 +00:00
- Replaced the favicon in index.html with a new alpha.svg icon. - Enhanced package.json with new macOS-specific build and run scripts for Tauri. - Added a comprehensive macOS background execution implementation, including a system tray menu and autostart functionality. - Updated Tauri configuration to support tray icon and macOS private API features. - Introduced new capabilities for autostart and tray management in the application. This update improves the user experience on macOS by providing a seamless background execution feature and a visually updated application icon.
15 lines
361 B
HTML
15 lines
361 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/alpha.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>AlphaHuman</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|