Skip to content

Commit

Permalink
Merge branch 'client'
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mao committed Jan 2, 2022
2 parents 33a4878 + 324076d commit c8b8b26
Show file tree
Hide file tree
Showing 80 changed files with 12,578 additions and 1,556 deletions.
4 changes: 2 additions & 2 deletions EMAILS.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ We currently maintain the following lists on Mailman:
1. Update the administrator to the Battlecode contact email (this is the publicly viewable list owner), and set yourself and others to be moderators.
After doing this, you will need to re-authenticate (you're no longer the admin), using the password that was emailed to you.
1. Set list parameters. Below are some examples.
- Description: MIT Battlecode 2021
- Subject prefix: [battlecode-21]
- Description: MIT Battlecode 2022
- Subject prefix: [battlecode-22]
- Hide sender = Yes. All sent emails will appear to come from the list, not you.
- Strip Reply-To header = Yes, explicit Reply-To = the battlecode address. This configures replies to not go back to the list.
- In the privacy menu:
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ if (!project.hasProperty("maps")) {
}

if (project.hasProperty("release_version")) {
if (!project.property("release_version").startsWith("2021")) {
throw new StopExecutionException("release version must start with 2021!")
if (!project.property("release_version").startsWith("2022")) {
throw new StopExecutionException("release version must start with 2022!")
}
}

Expand Down
2 changes: 1 addition & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Look at `package.json`.
This NPM module does not have any dependencies or meaningful output, but it is for wrapping scripts of `playback` and `visualizer` in one place.

* `npm run install-all`: Installs npm packages in `playback` and `visualizer`. **Execute this when you start**
* `npm run build`, `npm run build_playback`
* `npm run build`, `npm run build-playback`
* `npm run electron`: Run the client in electron. You might want to run this most of the time.
* `npm run watch`: Watch for the changes of `visualizer`. Note that it *does not watch* `playback`.
* `npm run prod-electron`, `npm run prod-electron-no-sign`, `npm run prod-test`
Expand Down
2 changes: 1 addition & 1 deletion client/package-lock.json

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

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "battlecode-client",
"version": "2021.0.0",
"version": "2022.0.0",
"description": "Client wrapper of visualizer and playback",
"main": "visualizer/electron-main.js",
"scripts": {
Expand Down
Loading

0 comments on commit c8b8b26

Please sign in to comment.