Skip to content

Commit 3abecaf

Browse files
committed
Release v1.3.6: Fix speed unit display in history details
- Fixed formatSpeed() function missing PPS (Packets Per Second) case - History details now properly display '100 PPS' instead of '100x' for PPS-based replays - Speed formatting now correctly handles all units: multiplier (x), PPS, Mbps, Gbps - Improves clarity in replay history when reviewing different speed configurations
1 parent b302a3b commit 3abecaf

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to PCAP Replaya 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+
## [1.3.6] - 2025-08-08
9+
10+
### Fixed
11+
- **Speed Unit Display**: Fixed history details not showing PPS (Packets Per Second) unit correctly
12+
- Added missing `pps` case to `formatSpeed()` function in frontend
13+
- History details now properly display "100 PPS" instead of "100x" for PPS-based replays
14+
- Speed formatting now correctly handles all units: multiplier (x), PPS, Mbps, Gbps
15+
- Improves clarity in replay history when reviewing different speed configurations
16+
17+
### Technical Improvements
18+
- Enhanced speed unit formatting for better user experience
19+
- Consistent speed display across all UI components
20+
- Better differentiation between speed modes in history view
21+
822
## [1.3.5] - 2025-08-08
923

1024
### Fixed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3.5
1+
1.3.6

frontend/src/services/api.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,8 @@ export const formatDuration = (seconds) => {
134134

135135
export const formatSpeed = (speed, unit) => {
136136
switch (unit) {
137+
case 'pps':
138+
return `${speed} PPS`;
137139
case 'mbps':
138140
return `${speed} Mbps`;
139141
case 'gbps':

0 commit comments

Comments
 (0)