Skip to content

Commit a7c47d1

Browse files
authored
3.0.7 release
1 parent aafc224 commit a7c47d1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1842
-1701
lines changed

.devcontainer/devcontainer.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "Ubuntu",
3+
"image": "mcr.microsoft.com/devcontainers/base:noble",
4+
"features": {
5+
"ghcr.io/devcontainers/features/dotnet:2": {
6+
"version": "10.0",
7+
"workloads": "aspire"
8+
},
9+
"ghcr.io/devcontainers/features/git-lfs:1": {},
10+
"ghcr.io/devcontainers/features/node:1": {
11+
"version": "22.21.1"
12+
}
13+
},
14+
"postCreateCommand": {
15+
"npm-check-updates": "npm install -g npm-check-updates",
16+
"dotnet-outdated-tool": "dotnet tool install -g dotnet-outdated-tool",
17+
"jetbrains.resharper.globaltools": "dotnet tool install -g JetBrains.ReSharper.GlobalTools"
18+
},
19+
"customizations": {
20+
"vscode": {
21+
"extensions": [
22+
"editorconfig.editorconfig",
23+
"github.vscode-github-actions",
24+
"ms-dotnettools.csdevkit",
25+
"redhat.vscode-yaml",
26+
"redhat.vscode-xml",
27+
"styled-components.vscode-styled-components"
28+
],
29+
"settings": {
30+
"redhat.telemetry.enabled": false
31+
}
32+
}
33+
}
34+
}

.gitginore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
1+
### https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
22

33
# Windows thumbnail cache files
44
Thumbs.db
@@ -25,7 +25,7 @@ $RECYCLE.BIN/
2525
# Windows shortcuts
2626
*.lnk
2727

28-
# https://github.com/github/gitignore/blob/main/Global/macOS.gitignore
28+
### https://github.com/github/gitignore/blob/main/Global/macOS.gitignore
2929

3030
# General
3131
.DS_Store

source/client/.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# https://github.com/github/gitignore/blob/main/Node.gitignore
1+
### https://github.com/github/gitignore/blob/main/Node.gitignore
22

33
# Logs
44
logs
@@ -129,4 +129,4 @@ dist
129129
.yarn/unplugged
130130
.yarn/build-state.yml
131131
.yarn/install-state.gz
132-
.pnp.*
132+
.pnp.*

source/client/.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"url": "https://localhost:5173",
99
"webRoot": "${workspaceFolder}",
1010
"runtimeArgs": [
11-
"-incognito"
11+
"--guest"
1212
],
1313
"preLaunchTask": "react-start",
1414
"postDebugTask": "react-terminate"

0 commit comments

Comments
 (0)