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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [11.8.0] - 2024-09-10

### Added
- Enhanced animation control features:
- Keyboard shortcuts for play/pause (Space)
- Reload functionality (R key)
- Skip to end (Right arrow)
- Forward 250ms (. key)
- Mouse click controls
- Animation time tracker
- New configuration option `controlsOff` to toggle visual controls

### Changed
- Improved animation control accessibility for non-technical users
- Enhanced preview interface with time tracking display

## [11.7.0] - 2024-03-27

### Added
Expand Down
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,24 @@ The easiest way to get started is by using the yeoman template [@mediamonks/gene

View the [documentation](https://mediamonks.github.io/display-advertising-docs/).

## 🆕 Latest Updates (v11.8.0)
### Enhanced Animation Controls
- ⌨️ Keyboard Controls
- `Space` - Play/Pause animations
- `R` - Reload all visible banners
- `` - Skip to end frame
- `.` - Forward 250ms
- 🖱 Mouse click support for play/pause
- ⏱ Animation time tracker
- ⚙️ Configurable controls visibility via `controlsOff` setting

### Configuration
```javascript
{
// Hide visual controls while maintaining keyboard shortcuts
controlsOff: false
}

## Contribute

View [CONTRIBUTING.md](./CONTRIBUTING.md)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mediamonks/display-dev-server",
"version": "11.7.0",
"version": "11.8.0",
"description": "This is the Display.Monks development server, which handles previewing and compiling ads via webpack.",
"scripts": {
"preview-dev": "cd ./src/preview && npm run dev",
Expand Down
Loading