Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

## [1.15.0] - 2026-03-09

### Added

#### Cloud-based Rendering Options

- **CloudRenderingPanel Component** (`src/components/CloudRenderingPanel.tsx`): Main UI component for managing cloud rendering with tabbed interface for connection, jobs, instances, and pricing
- **CloudRenderingService** (`src/services/CloudRenderingService.ts`): Service layer for cloud provider interactions including AWS, GCP, and Azure
- **useCloudRendering Hook** (`src/hooks/useCloudRendering.ts`): React hook for cloud rendering state management
- **Cloud Rendering Types** (`src/types/cloudRendering.ts`): Comprehensive type definitions for cloud rendering features

#### Cloud Rendering Features

- **Multi-Provider Support**: AWS, Google Cloud Platform, and Microsoft Azure integration
- **Instance Management**: Start/stop cloud instances with different CPU/GPU configurations
- **Render Jobs**: Create and manage render jobs with customizable settings
- **Job Queue**: Queue management for multiple render jobs
- **Pricing Display**: Real-time pricing information for different instance types
- **Statistics Tracking**: Track total jobs, completed jobs, failed jobs, and costs

#### Supported Instance Types

- CPU instances: Small, Medium, Large
- GPU instances: Small, Medium, Large (NVIDIA T4 and similar)
- Configurable hourly rates and cost tracking

#### Render Configuration

- Multiple codec support: H.264, H.265 (HEVC), VP9, AV1
- Quality presets: Low, Medium, High, Ultra
- Resolution options: 720p, 1080p, 1440p, 4K
- Frame rate selection: 24, 30, 60 fps
- Customizable bitrate settings

---

## [1.14.0] - 2026-03-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "v-streaming",
"version": "1.14.0",
"version": "1.15.0",
"private": true,
"type": "module",
"scripts": {
Expand Down
Loading
Loading