Changelog
Track the latest updates, new features, and improvements in Air Pixels to stay informed about platform enhancements.
Changelog Overview
Air Pixels releases updates regularly to enhance AI flight planning, community features, and overall performance. Review the latest changes below to understand new capabilities for drone operations on film sets and rooftops.
Subscribe to the Air Pixels community newsletter at community.airpixels.com for release announcements and early access to betas.
Recent Releases
New Features
- Added advanced AI flight path optimization for rooftop inspections, reducing manual adjustments by 40%.
- Introduced community network sharing for pre-planned drone routes.
Improvements
- Enhanced real-time collision avoidance with improved sensor data integration.
Bug Fixes
- Fixed intermittent API timeouts during high-wind simulations.
New Features
- New AI precision landing module for film set operations, supporting dynamic obstacle mapping.
- Community dashboard now includes collaborative route editing tools.
Bug Fixes
- Resolved synchronization issues in multi-drone fleet management.
- Patched elevation data inaccuracies in urban environments.
// New AI planning API example
import { AirPixelsClient } from '@airpixels/sdk';
const client = new AirPixelsClient({ apiKey: 'YOUR_API_KEY' });
const plan = await client.flightPlans.create({
missionType: 'rooftop',
aiOptimizations: true,
waypoints: [{ lat: 34.0522, lng: -118.2437, alt: 100 }]
});
console.log('Optimized plan:', plan);
# New AI planning API example
from airpixels import AirPixelsClient
client = AirPixelsClient(api_key='YOUR_API_KEY')
plan = client.flight_plans.create(
mission_type='rooftop',
ai_optimizations=True,
waypoints=[{'lat': 34.0522, 'lng': -118.2437, 'alt': 100}]
)
print('Optimized plan:', plan)
New Features
- Beta release of solid-state battery integration for extended flight times.
- Expanded community events API for virtual mixers and job boards.
Breaking Changes
- Updated route validation schema; migrate existing plans to new format.
Improvements
- Performance boost in AI simulation rendering by 25%.
How to Upgrade
Follow these steps to update your Air Pixels integration.
Check Compatibility
Review your current version against release notes above.
Update SDK
npm update @airpixels/sdk
Or
pip install --upgrade airpixels
Test Flight Plans
Run simulations with new AI optimizations enabled.
Next Steps
AI Flight Planning
Explore enhanced path optimization for drone missions.
Community Features
Join the network for shared routes and events.
Found an issue? Report it via support@airpixels.com.