From 40ca7d22e26e1d2585c45cd326ba0639b7f5ea18 Mon Sep 17 00:00:00 2001 From: Pedro Faria Date: Fri, 29 Mar 2024 22:43:49 +0100 Subject: [PATCH] feat: new track nurburgring_24h (#275) --- .circleci/config.yml | 24 ------------------- CHANGELOG.md | 5 ++++ Makefile | 2 +- public/src/data/tracks.js | 49 ++++++++++++++++++++------------------- 4 files changed, 31 insertions(+), 49 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 03d3c2f5..00000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,24 +0,0 @@ -version: 2.1 -jobs: - backend: - docker: - - image: golang - working_directory: /go/src/github.com/assetto-corsa-web/accweb - steps: - - checkout - - run: go test ./... - frontend: - docker: - - image: node - working_directory: /go/src/github.com/assetto-corsa-web/accweb/public - steps: - - checkout - - run: cd public && ls - - run: cd public && npm i - - run: cd public && npm run build -workflows: - version: 2 - build_and_test: - jobs: - - backend - - frontend diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f19ff4e..a4a18c81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/Makefile b/Makefile index 0fd2541f..7310ea4b 100644 --- a/Makefile +++ b/Makefile @@ -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: diff --git a/public/src/data/tracks.js b/public/src/data/tracks.js index e4d03b9e..097f0bb6 100644 --- a/public/src/data/tracks.js +++ b/public/src/data/tracks.js @@ -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" }, ];