vortix 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -35
- package/agent/package-lock.json +165 -0
- package/agent/start-local.bat +3 -0
- package/agent/start-production.bat +3 -0
- package/agent/test-screenshot.js +19 -0
- package/backend/DEPLOY.md +261 -0
- package/backend/Procfile +1 -0
- package/backend/README.md +80 -0
- package/backend/server.js +788 -237
- package/package.json +1 -1
- package/CHANGELOG.md +0 -86
package/package.json
CHANGED
package/CHANGELOG.md
DELETED
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [1.2.0] - 2024-03-21
|
|
4
|
-
|
|
5
|
-
### 🎨 Major UI/UX Overhaul
|
|
6
|
-
|
|
7
|
-
- **Redesigned Dashboard** - New "Command Center" interface with modern styling
|
|
8
|
-
- **Mobile Optimization** - Complete mobile experience with responsive design
|
|
9
|
-
- **Enhanced Navigation** - Streamlined top navigation with rounded buttons
|
|
10
|
-
- **Improved Layout** - Wider containers for better content visibility
|
|
11
|
-
- **Modern Header** - Dynamic header with live status indicators and gradient
|
|
12
|
-
icons
|
|
13
|
-
|
|
14
|
-
### ☁️ Cloud-First Architecture
|
|
15
|
-
|
|
16
|
-
- **No Backend Setup Required** - Fully cloud-hosted backend (always online)
|
|
17
|
-
- **Simplified Installation** - Just install CLI and start using
|
|
18
|
-
- **Production-Ready** - Backend runs on reliable cloud infrastructure
|
|
19
|
-
- **Zero Configuration** - Works out of the box with cloud services
|
|
20
|
-
|
|
21
|
-
### 📱 Mobile Experience
|
|
22
|
-
|
|
23
|
-
- **Mobile Command Input** - Dedicated command interface for mobile devices
|
|
24
|
-
- **Touch-Optimized UI** - Perfect touch interactions and gestures
|
|
25
|
-
- **Responsive Design** - Seamless experience across all screen sizes
|
|
26
|
-
- **Mobile Menu** - Clean slide-down navigation menu
|
|
27
|
-
- **Single Interface** - No duplicate elements, clean mobile layout
|
|
28
|
-
|
|
29
|
-
### ✨ Enhanced Features
|
|
30
|
-
|
|
31
|
-
- **Improved File Transfer** - Better mobile support with download buttons
|
|
32
|
-
- **Real-time Updates** - Faster system stats with 1-second intervals
|
|
33
|
-
- **Better Animations** - Smooth framer-motion animations throughout
|
|
34
|
-
- **Enhanced Security** - Improved authentication and connection handling
|
|
35
|
-
- **Performance Boost** - Optimized rendering and data updates
|
|
36
|
-
|
|
37
|
-
### 🔧 Technical Improvements
|
|
38
|
-
|
|
39
|
-
- **TypeScript Fixes** - Resolved all compilation errors
|
|
40
|
-
- **Build Optimization** - Faster builds and better error handling
|
|
41
|
-
- **Code Cleanup** - Removed duplicate code and improved structure
|
|
42
|
-
- **Better Error Handling** - More informative error messages
|
|
43
|
-
- **Improved Diagnostics** - Better debugging and monitoring
|
|
44
|
-
|
|
45
|
-
### 🚀 Developer Experience
|
|
46
|
-
|
|
47
|
-
- **Updated Documentation** - Comprehensive README with examples
|
|
48
|
-
- **Better CLI Help** - Improved command descriptions and usage
|
|
49
|
-
- **Enhanced Keywords** - Better npm discoverability
|
|
50
|
-
- **Modern Stack** - Latest React, Next.js, and Framer Motion
|
|
51
|
-
|
|
52
|
-
## [1.1.0] - 2024-03-14
|
|
53
|
-
|
|
54
|
-
### Added
|
|
55
|
-
|
|
56
|
-
- Real-time system stats monitoring (CPU, Memory, Disk)
|
|
57
|
-
- Improved CPU measurement accuracy for Windows using wmic
|
|
58
|
-
- Platform detection sent immediately on connection
|
|
59
|
-
- Better error logging with close codes and reasons
|
|
60
|
-
- Auto-start status now loads automatically for authenticated devices
|
|
61
|
-
|
|
62
|
-
### Changed
|
|
63
|
-
|
|
64
|
-
- Default backend URL now points to production (wss://vortix.onrender.com)
|
|
65
|
-
- Reduced system stats measurement time from 1s to 500ms for faster response
|
|
66
|
-
- System stats update interval changed from 3s to 1s for real-time feel
|
|
67
|
-
- Removed verbose console logs for cleaner output
|
|
68
|
-
|
|
69
|
-
### Fixed
|
|
70
|
-
|
|
71
|
-
- Fixed platform detection for AI command generation
|
|
72
|
-
- Fixed WebSocket connection state tracking in dashboard
|
|
73
|
-
- Fixed file transfer not showing files on initial load
|
|
74
|
-
- Fixed auto-start toggle not reflecting correct state
|
|
75
|
-
- Fixed "notepad" command on Windows (AI now generates correct commands)
|
|
76
|
-
- Fixed system stats showing 0% in production
|
|
77
|
-
|
|
78
|
-
### Backend
|
|
79
|
-
|
|
80
|
-
- Added HTTP server for health checks (/health endpoint)
|
|
81
|
-
- Improved WebSocket upgrade handling for better cloud platform compatibility
|
|
82
|
-
- Better error handling and connection stability
|
|
83
|
-
|
|
84
|
-
## [1.0.5] - Previous Release
|
|
85
|
-
|
|
86
|
-
- Initial stable release
|