Skip to content

Commit 6836acb

Browse files
authored
Release/v1.16.2 (#195)
* fix and feat: live lap delta and race gaps (#189) * fix and feat: Fix session timeout handler and add confirmation before stop all servers (#192) * fix: Handling acc server passwords properly #186 (#191) * automatic defining version and commit at end.vue file * removing gin-swagger from codebase * fix: improved live car handshake with driver * feat: showing live current splits * improving logs
1 parent 4b791a1 commit 6836acb

32 files changed

+21439
-21200
lines changed
+27-27
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
1-
name: Build and release accweb
2-
on:
3-
push:
4-
tags:
5-
- '*'
6-
jobs:
7-
build-accweb:
8-
runs-on: ubuntu-latest
9-
permissions:
10-
contents: write
11-
steps:
12-
- name: Checkout and setup
13-
uses: actions/checkout@v2
14-
- name: Setup go
15-
uses: actions/setup-go@v2
16-
with:
17-
go-version: '^1.17.7'
18-
- name: Get the version
19-
id: get_version
20-
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
21-
- name: Build accweb release
22-
run: chmod u+x ./build/build_release.sh && ./build/build_release.sh ${{ steps.get_version.outputs.VERSION }}
23-
- uses: ncipollo/release-action@v1
24-
with:
25-
artifacts: 'releases/accweb_${{ steps.get_version.outputs.VERSION }}.zip'
26-
generateReleaseNotes: true
27-
token: ${{ secrets.GITHUB_TOKEN }}
1+
name: Build and release accweb
2+
on:
3+
push:
4+
tags:
5+
- '*'
6+
jobs:
7+
build-accweb:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: write
11+
steps:
12+
- name: Checkout and setup
13+
uses: actions/checkout@v2
14+
- name: Setup go
15+
uses: actions/setup-go@v2
16+
with:
17+
go-version: '^1.17.7'
18+
- name: Get the version
19+
id: get_version
20+
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
21+
- name: Build accweb release
22+
run: chmod u+x ./build/build_release.sh && ./build/build_release.sh ${{ steps.get_version.outputs.VERSION }}
23+
- uses: ncipollo/release-action@v1
24+
with:
25+
artifacts: 'releases/accweb_${{ steps.get_version.outputs.VERSION }}.zip'
26+
generateReleaseNotes: true
27+
token: ${{ secrets.GITHUB_TOKEN }}

.vscode/launch.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Launch accweb",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "auto",
12+
"program": "cmd/main.go",
13+
"cwd": "${workspaceFolder}"
14+
}
15+
]
16+
}

CHANGELOG.md

+137-127
Original file line numberDiff line numberDiff line change
@@ -1,127 +1,137 @@
1-
# Changelog
2-
3-
## 1.16.1
4-
* Fix acc dedicated server create instance. ( #185 )
5-
* Building releases assets automatically.
6-
* Generating Swagger docummention of accweb api.
7-
8-
## 1.16.0
9-
* Adding instance live view.
10-
* Fix bug on UI to prevent unnecessary backend requests.
11-
* Add utility buttons to server configuration for event session to add Q/R and P/Q/R automagically.
12-
13-
## 1.15.1
14-
* Sorting option on server list screen.
15-
* Fix release mode message when it's in production mode.
16-
* Update js libraries versions
17-
18-
## 1.15.0
19-
* Reorganization of the codebase
20-
* added server instance auto start ( #74 and #119 )
21-
* added stop all instances
22-
* embedding web client public files
23-
* simplified file import ( #84 )
24-
25-
## 1.14.2
26-
* Update js libraries versions
27-
* Fix build script to force linux OS build
28-
29-
## 1.14.1
30-
* fixed import servers with old encoding charset
31-
32-
## 1.14.0
33-
* fixed server names with character "/"
34-
* fixed OpenSSL download url
35-
* ACC v1.8 update
36-
37-
## 1.13.4
38-
39-
* fixed ballast -> ballastKg in bop.json
40-
* updated dependencies
41-
42-
## 1.13.3
43-
44-
* added trackTemp support
45-
* fixed openssl download link on Windows
46-
47-
## 1.13.2
48-
49-
* changed default for trackMedalsRequirement from -1 to 0
50-
* added ignorePrematureDisconnects with a default of 1 (use 0 on Linux)
51-
* updated dependencies
52-
53-
## 1.13.1
54-
55-
* added missing tracks for 2020
56-
57-
## 1.13.0
58-
59-
* added tracks from the British GT DLC
60-
61-
## 1.12.3
62-
63-
* added missing tracks
64-
* updated dependencies
65-
66-
## 1.12.2
67-
68-
* add track and cars for 2020 DLC to BOP
69-
70-
## 1.12.1
71-
72-
* fixed tracks in event configuration
73-
74-
## 1.12.0
75-
76-
* added 2020 cars and tracks
77-
* fixed error starting accweb due to incompatible clib on Linux
78-
79-
## 1.11.2
80-
81-
* converted bunch of number fields to check boxes, where applicable
82-
* fixed broken selection fields for entrylist
83-
* fixed defaultGridPosition being in the wrong location
84-
* fixed some inconsistent code formatting
85-
86-
## 1.11.1
87-
88-
* added selection dropdown view for DriverCategory and ForcedCarModel
89-
90-
## 1.11.0
91-
92-
**When upgrading from a previous version, make sure you replace all true/false values with 1/0 for simracerWeatherConditions and isFixedConditionQualification in event JSON.**
93-
94-
* fixed type of simracerWeatherConditions and isFixedConditionQualification
95-
* added tyreSetCount to eventRules.json
96-
97-
## 1.10.0
98-
99-
* added car groups for GT4 pack DLC
100-
101-
## 1.9.2
102-
103-
* fixed saving/loading assist rules
104-
* fixed assist rules import
105-
* fixed name of ballast to ballastKg in entrylist
106-
107-
## 1.9.1
108-
109-
* better default configuration
110-
* fixed exporting configuration if server name contains invalid characters for filenames
111-
112-
## 1.9.0
113-
114-
* added automatic generation of private/public token files
115-
* switched to yaml configuration instead of environment variables
116-
* new design
117-
118-
## 1.8.0
119-
120-
* minor changes to the global view
121-
* corrections of values for "formationLapType"
122-
* added parameter "simracerWeatherConditions" in event.json
123-
* added parameter "isFixedConditionQualification" in event.json
124-
* added "bop.json"
125-
* added "assistRules"
126-
127-
IMPORTANT: You will have to delete the servers already created in order to create new ones!
1+
# Changelog
2+
3+
## 1.16.2
4+
* Fix server password handler.
5+
* Fix session timeout, redirecting to login screen.
6+
* Add confirmation before stop all acc servers.
7+
* Fix live laps delta calculation.
8+
* Add live gaps column during races.
9+
* Add live current splits.
10+
* Fix live driver handshake.
11+
* Removing the necessity of external scripts to generate secret keys.
12+
13+
## 1.16.1
14+
* Fix acc dedicated server create instance. ( #185 )
15+
* Building releases assets automatically.
16+
* Generating Swagger docummention of accweb api.
17+
18+
## 1.16.0
19+
* Adding instance live view.
20+
* Fix bug on UI to prevent unnecessary backend requests.
21+
* Add utility buttons to server configuration for event session to add Q/R and P/Q/R automagically.
22+
23+
## 1.15.1
24+
* Sorting option on server list screen.
25+
* Fix release mode message when it's in production mode.
26+
* Update js libraries versions
27+
28+
## 1.15.0
29+
* Reorganization of the codebase
30+
* added server instance auto start ( #74 and #119 )
31+
* added stop all instances
32+
* embedding web client public files
33+
* simplified file import ( #84 )
34+
35+
## 1.14.2
36+
* Update js libraries versions
37+
* Fix build script to force linux OS build
38+
39+
## 1.14.1
40+
* fixed import servers with old encoding charset
41+
42+
## 1.14.0
43+
* fixed server names with character "/"
44+
* fixed OpenSSL download url
45+
* ACC v1.8 update
46+
47+
## 1.13.4
48+
49+
* fixed ballast -> ballastKg in bop.json
50+
* updated dependencies
51+
52+
## 1.13.3
53+
54+
* added trackTemp support
55+
* fixed openssl download link on Windows
56+
57+
## 1.13.2
58+
59+
* changed default for trackMedalsRequirement from -1 to 0
60+
* added ignorePrematureDisconnects with a default of 1 (use 0 on Linux)
61+
* updated dependencies
62+
63+
## 1.13.1
64+
65+
* added missing tracks for 2020
66+
67+
## 1.13.0
68+
69+
* added tracks from the British GT DLC
70+
71+
## 1.12.3
72+
73+
* added missing tracks
74+
* updated dependencies
75+
76+
## 1.12.2
77+
78+
* add track and cars for 2020 DLC to BOP
79+
80+
## 1.12.1
81+
82+
* fixed tracks in event configuration
83+
84+
## 1.12.0
85+
86+
* added 2020 cars and tracks
87+
* fixed error starting accweb due to incompatible clib on Linux
88+
89+
## 1.11.2
90+
91+
* converted bunch of number fields to check boxes, where applicable
92+
* fixed broken selection fields for entrylist
93+
* fixed defaultGridPosition being in the wrong location
94+
* fixed some inconsistent code formatting
95+
96+
## 1.11.1
97+
98+
* added selection dropdown view for DriverCategory and ForcedCarModel
99+
100+
## 1.11.0
101+
102+
**When upgrading from a previous version, make sure you replace all true/false values with 1/0 for simracerWeatherConditions and isFixedConditionQualification in event JSON.**
103+
104+
* fixed type of simracerWeatherConditions and isFixedConditionQualification
105+
* added tyreSetCount to eventRules.json
106+
107+
## 1.10.0
108+
109+
* added car groups for GT4 pack DLC
110+
111+
## 1.9.2
112+
113+
* fixed saving/loading assist rules
114+
* fixed assist rules import
115+
* fixed name of ballast to ballastKg in entrylist
116+
117+
## 1.9.1
118+
119+
* better default configuration
120+
* fixed exporting configuration if server name contains invalid characters for filenames
121+
122+
## 1.9.0
123+
124+
* added automatic generation of private/public token files
125+
* switched to yaml configuration instead of environment variables
126+
* new design
127+
128+
## 1.8.0
129+
130+
* minor changes to the global view
131+
* corrections of values for "formationLapType"
132+
* added parameter "simracerWeatherConditions" in event.json
133+
* added parameter "isFixedConditionQualification" in event.json
134+
* added "bop.json"
135+
* added "assistRules"
136+
137+
IMPORTANT: You will have to delete the servers already created in order to create new ones!

0 commit comments

Comments
 (0)