Skip to content

Commit

Permalink
feat: new track nurburgring_24h (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrofaria authored Mar 29, 2024
1 parent 7cdd67f commit 40ca7d2
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 49 deletions.
24 changes: 0 additions & 24 deletions .circleci/config.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.25.0
* html adjustments on server password [#273](https://github.com/assetto-corsa-web/accweb/pull/273)
* New track nurburgring_24h
* Remove circleci integration

## 1.24.0
* GT2 pack update [#269](https://github.com/assetto-corsa-web/accweb/pull/269)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ run-dev-frontend:
swag:
${GOPATH}/bin/swag init -d cmd,internal -g ../internal/app/server.go

IMG ?= accweb/acceweb
IMG ?= accweb/accweb
VERSION ?= dev
TAG ?= latest
docker-build:
Expand Down
49 changes: 25 additions & 24 deletions public/src/data/tracks.js
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
export default [
{value: "barcelona", label: "Barcelona"},
{value: "brands_hatch", label: "Brands Hatch"},
{value: "cota", label: "Circuit of the Americas"},
{value: "donington", label: "Donington"},
{value: "hungaroring", label: "Hungaroring"},
{value: "imola", label: "Imola"},
{value: "indianapolis", label: "Indianapolis Motor Speedway"},
{value: "kyalami", label: "Kyalami"},
{value: "laguna_seca", label: "Laguna Seca"},
{value: "misano", label: "Misano"},
{value: "monza", label: "Monza"},
{value: "mount_panorama", label: "Mount Panorama"},
{value: "nurburgring", label: "Nürburgring GP"},
{value: "oulton_park", label: "Outlon Park"},
{value: "paul_ricard", label: "Paul Ricard"},
{value: "red_bull_ring", label: "RedBull Ring"},
{value: "silverstone", label: "Silverstone"},
{value: "snetterton", label: "Snetterton"},
{value: "spa", label: "Spa"},
{value: "suzuka", label: "Suzuka"},
{value: "valencia", label: "Valencia"},
{value: "watkins_glen", label: "Watkins Glen"},
{value: "zandvoort", label: "Zandvoort"},
{value: "zolder", label: "Zolder"},
{ value: "barcelona", label: "Barcelona" },
{ value: "brands_hatch", label: "Brands Hatch" },
{ value: "cota", label: "Circuit of the Americas" },
{ value: "donington", label: "Donington" },
{ value: "hungaroring", label: "Hungaroring" },
{ value: "imola", label: "Imola" },
{ value: "indianapolis", label: "Indianapolis Motor Speedway" },
{ value: "kyalami", label: "Kyalami" },
{ value: "laguna_seca", label: "Laguna Seca" },
{ value: "misano", label: "Misano" },
{ value: "monza", label: "Monza" },
{ value: "mount_panorama", label: "Mount Panorama" },
{ value: "nurburgring", label: "Nürburgring GP" },
{ value: "nurburgring_24h", label: "Nürburgring GP 24 hours" },
{ value: "oulton_park", label: "Outlon Park" },
{ value: "paul_ricard", label: "Paul Ricard" },
{ value: "red_bull_ring", label: "RedBull Ring" },
{ value: "silverstone", label: "Silverstone" },
{ value: "snetterton", label: "Snetterton" },
{ value: "spa", label: "Spa" },
{ value: "suzuka", label: "Suzuka" },
{ value: "valencia", label: "Valencia" },
{ value: "watkins_glen", label: "Watkins Glen" },
{ value: "zandvoort", label: "Zandvoort" },
{ value: "zolder", label: "Zolder" },
];

0 comments on commit 40ca7d2

Please sign in to comment.