Skip to content

Commit 6dca44f

Browse files
committed
updated the changelog
1 parent b2fe505 commit 6dca44f

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.5.2] - 2025-12-20
9+
10+
### Added
11+
12+
- **Enhanced Plot Types**
13+
- Multi-color support for Line plots, allowing different colors per segment.
14+
- New Step plot type for discrete value visualization.
15+
- **Documentation & Examples**
16+
- Live demos integrated into documentation pages.
17+
- Additional demo examples showcasing plugin usage and features.
18+
- Plugin integration examples in demo charts.
19+
20+
### Fixed
21+
22+
- Zoom controller improvements and tweaks for better user experience.
23+
- Chart.js integration fixes for proper module loading.
24+
- Documentation page rendering and theme consistency.
25+
- Updated internal GitHub repository links.
26+
27+
### Changed
28+
29+
- Enhanced demo pages with more comprehensive examples.
30+
- Improved documentation structure and navigation.
31+
- Optimized chart sizing for various use cases.
32+
833
## [0.5.0] - 2025-12-17 (first public release)
934

1035
### Added

docs/demos/full.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,16 @@ <h1>Full featured Demo</h1>
7171
volume: k.volume,
7272
}));
7373

74+
const isMobileDevice = /iPhone|iPad|iPod|Android/i.test(navigator.userAgent);
75+
7476
// Initialize Chart
7577
const chartContainer = document.getElementById('main-chart');
7678
window.chart = new QFChart.QFChart(chartContainer, {
7779
title: 'BTC/USDT', // Custom title
7880
height: '800px',
7981
padding: 0.2,
8082
databox: {
81-
position: 'right',
83+
position: isMobileDevice ? 'floating' : 'right',
8284
},
8385
dataZoom: {
8486
visible: true,

0 commit comments

Comments
 (0)