mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 01:31:39 -05:00
Change order of points on the Points page
This commit is contained in:
parent
6e89bc9dd7
commit
3e2f9f77d7
4 changed files with 17 additions and 3 deletions
|
|
@ -1 +1 @@
|
||||||
0.7.1
|
0.7.2
|
||||||
|
|
|
||||||
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [0.7.2] — 2024-06-25
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- New Settings page to change Dawarich settings.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Calculation of city visits that are shown in right sidebar on Map page was reworked and now is more accurate.
|
||||||
|
- Order of points on Points page is now descending by timestamp instead of ascending.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## [0.7.1] — 2024-06-20
|
## [0.7.1] — 2024-06-20
|
||||||
|
|
||||||
In new Settings page you can now change the following settings:
|
In new Settings page you can now change the following settings:
|
||||||
|
|
@ -22,6 +35,7 @@ In new Settings page you can now change the following settings:
|
||||||
- Old settings page is now available undeer Account link in user menu.
|
- Old settings page is now available undeer Account link in user menu.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## [0.7.0] — 2024-06-19
|
## [0.7.0] — 2024-06-19
|
||||||
|
|
||||||
## The GPX MVP Release
|
## The GPX MVP Release
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -9,7 +9,7 @@ class PointsController < ApplicationController
|
||||||
.tracked_points
|
.tracked_points
|
||||||
.without_raw_data
|
.without_raw_data
|
||||||
.where(timestamp: start_at..end_at)
|
.where(timestamp: start_at..end_at)
|
||||||
.order(timestamp: :asc)
|
.order(timestamp: :desc)
|
||||||
.paginate(page: params[:page], per_page: 50)
|
.paginate(page: params[:page], per_page: 50)
|
||||||
|
|
||||||
@start_at = Time.zone.at(start_at)
|
@start_at = Time.zone.at(start_at)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue