Skip to content

Commit

Permalink
v3.15.0 (#160)
Browse files Browse the repository at this point in the history
* Corrected an issue that incorrectly displayed signalR status lights in production environments.

* Fixed an issue that allowed multiple gameboard tabs to generate the same browser notification.

* Change sponsor select example for clarity.

* Make signalr service singleton as originally designed

* Initial work on event horizon.

* More work on 110.

* Resolved an issue that could cause the Observe Challenges screen to resolve team names incorrectly. Resolves #334.

* More work on 110.

* The team deploy button now properly disables itself when it can't be used.

* Resolved an issue that caused signalR instability in the game hub.

* More work on 110.

* Add support code with link to challenges admin to ticket markdown.

* NPM audit

* More work on 110.

* More on 110.

* Don't select challenge upon launch (to avoid overwriting user selection). Resolves GBAPI#339.

* Fixed an issue that caused ticket-to-markdown to fail to capture requester name.

* More work on 110.

* More 110

* Code cleanup

* More work on 110.

* More work on 110.

* MOre work on 110

* Initial work on issue/336

* Draft of 336.

* Enable a max concurrency limit of 0 in practice settings. Disable practice mode if limit is zero.

* Format the announcements controls to be a little neater.

* Make practice search chips colored to match chips in list. Ignore case when evaluating text color.

* More iteration on 110.

* Announcement now shows error on fail, clears its text upon success, and disables itself if no message is present.

* Improve interface feedback on announce/extend session.

* Code cleanup

* Finish MVP of 110.

* Use correct css value

* Draft of 110.

* Allow games to be optionally visible on the home screen even while in practice mode.

* Improvements to timeline.

* Make game -> players not auto refresh while a player's info is being viewed.

* Add beta tag to timeline

* Disable ticket submit button during post. Resolves GBAPI#319.

* Automatically copy invitation code to the clipboard on generation.
  • Loading branch information
sei-bstein authored Jan 24, 2024
1 parent c832e6f commit c298a31
Show file tree
Hide file tree
Showing 56 changed files with 1,252 additions and 106 deletions.
5 changes: 2 additions & 3 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
],
"styles": [
"node_modules/toastify-js/src/toastify.css",
"node_modules/vis-timeline/styles/vis-timeline-graph2d.css",
"projects/gameboard-ui/src/styles.scss"
],
"scripts": [
Expand Down Expand Up @@ -215,9 +216,7 @@
"projects/gameboard-mks/src/favicon.ico",
"projects/gameboard-mks/src/assets"
],
"styles": [
"projects/gameboard-mks/src/styles.scss"
],
"styles": ["projects/gameboard-mks/src/styles.scss"],
"scripts": []
}
}
Expand Down
215 changes: 215 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
"toastify-js": "^1.12.0",
"tslib": "^2.1.0",
"uuid": "^9.0.0",
"vis-timeline": "^7.7.3",
"vmware-wmks": "^1.0.0",
"yaml": "^2.1.1",
"zone.js": "~0.11.4"
Expand Down Expand Up @@ -76,4 +77,4 @@
"karma-jasmine-html-reporter": "^2.0.0",
"typescript": "^4.9.5"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ <h1 class="admin-header mb-0 pl-0">Administration</h1>

<div class="container mb-4 pb-4">
<nav class="my-2">
<a class="btn btn-link" routerLinkActive="active" [routerLink]="['overview']">Overview</a>
<a class="btn btn-link" routerLinkActive="active" [routerLink]="['dashboard']">Games</a>
<a class="btn btn-link" routerLinkActive="active" [routerLink]="['practice']">Practice Area</a>
<a class="btn btn-link" routerLinkActive="active" [routerLink]="['registrar', 'users']">Users</a>
Expand Down
Loading

0 comments on commit c298a31

Please sign in to comment.