| Summary: | Stopwatch Lap function displays lap times in decimal seconds, rather than MM:SS.ss | ||
|---|---|---|---|
| Product: | [Applications] KClock | Reporter: | Kerne Fahey <kernefahey> |
| Component: | General | Assignee: | Devin Lin <espidev> |
| Status: | RESOLVED FIXED | ||
| Severity: | minor | CC: | hanyoung |
| Priority: | NOR | ||
| Version First Reported In: | 23.08.4 | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Kerne Fahey
2024-02-27 06:41:24 UTC
Git commit 56c7e30bec4901e28364cbbbbaeeeacc9e9a9013 by Devin Lin. Committed on 02/03/2024 at 05:27. Pushed by devinlin into branch 'master'. stopwatch: Refactor and move laps model to C++, improve UI This commit: - cleans up the stopwatch page, and moves the laps model to C++ - properly formats lap durations with hh:mm:ss.00 - adds flags to show which lap is the fastest and which is the slowest - adds a lap duration label under the stopwatch time to show how long the current lap is - adds table headers for the laps M +2 -0 src/kclock/CMakeLists.txt M +7 -4 src/kclock/main.cpp M +168 -88 src/kclock/qml/stopwatch/StopwatchPage.qml A +130 -0 src/kclock/stopwatchmodel.cpp [License: GPL(v2.0+)] A +56 -0 src/kclock/stopwatchmodel.h [License: GPL(v2.0+)] M +72 -54 src/kclock/stopwatchtimer.cpp M +32 -22 src/kclock/stopwatchtimer.h M +28 -6 src/kclock/utilmodel.cpp M +10 -6 src/kclock/utilmodel.h https://invent.kde.org/utilities/kclock/-/commit/56c7e30bec4901e28364cbbbbaeeeacc9e9a9013 |