Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit b5376da

Browse files
authored
Merge pull request #2 from Agent54/performance/tauri-build-speed
Let there be plugins podman workerd ollama and other goodies
2 parents 8fb82b7 + 2fd60e6 commit b5376da

File tree

245 files changed

+19844
-1940
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

245 files changed

+19844
-1940
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,15 @@ Cargo.lock
1515

1616
# Dependencies
1717
/node_modules/
18+
19+
# Plugin artifacts
20+
tauri-plugin-*/target/
21+
tauri-plugin-*/node_modules/
22+
23+
# Temporary files
24+
temp-extract/
25+
src-tauri/workers/
26+
27+
# Test artifacts
28+
.nyc_output
29+
coverage/

CHANGELOG.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Changelog
2+
3+
All notable changes to Xe Launcher will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
### Added
11+
- Workerd plugin for local Cloudflare Workers development
12+
- Create and manage worker projects
13+
- Start/stop worker instances with port management
14+
- Real-time status monitoring
15+
- Worker logs viewing
16+
- Automatic workerd binary download
17+
- Delete worker projects with confirmation
18+
- Enhanced worker detection with port scanning for orphaned processes
19+
- Improved UI with auto-refresh and loading states
20+
- Comprehensive plugin documentation
21+
22+
### Changed
23+
- Updated README with complete feature documentation
24+
- Reorganized TODO.md with clear categories and progress tracking
25+
- Improved error handling across all plugins
26+
27+
### Fixed
28+
- Worker status display now shows actual running state
29+
- Module resolution issues with plugin JavaScript bindings
30+
- UI refresh functionality with visual feedback
31+
- Git ignore patterns for build artifacts
32+
33+
## [0.1.0] - 2024-07-02
34+
35+
### Added
36+
- Chrome management plugin
37+
- Launch Chrome with IWA development flags
38+
- Custom profile management
39+
- Remote debugging support
40+
- Process lifecycle management
41+
- Podman integration plugin
42+
- Container creation and management
43+
- Real-time log streaming
44+
- Podman machine status monitoring
45+
- Built-in Podman binaries
46+
- Core launcher features
47+
- Auto-start with system boot
48+
- Automatic updates via CrabNebula CDN
49+
- System tray integration
50+
- Bundled Bun runtime
51+
- Git integration for repository cloning
52+
- Project dependency management
53+
54+
### Infrastructure
55+
- Tauri v2 framework
56+
- Modular plugin architecture
57+
- React + TypeScript frontend
58+
- Comprehensive permissions system
59+
60+
## [0.0.1] - 2024-06-15
61+
62+
### Added
63+
- Initial project setup
64+
- Basic Tauri application structure
65+
- Development environment configuration
66+
67+
[Unreleased]: https://github.com/agent54/xe-launcher/compare/v0.1.0...HEAD
68+
[0.1.0]: https://github.com/agent54/xe-launcher/releases/tag/v0.1.0
69+
[0.0.1]: https://github.com/agent54/xe-launcher/releases/tag/v0.0.1

0 commit comments

Comments
 (0)