Skip to content

Releases: gafirst/match-uploader

v3.6.0

16 Oct 15:35
86acb20
Compare
Choose a tag to compare

3.6.0 (2024-10-16)

Features

v3.5.0

15 Oct 04:42
Compare
Choose a tag to compare

3.5.0 (2024-10-15)

Features

v3.4.0

19 Jun 20:19
95f4c0b
Compare
Choose a tag to compare

3.4.0 (2024-06-19)

Features

  • client: Add beta version of Live Mode (#126) (95f4c0b)

v3.3.0

24 Mar 22:28
3ed94b9
Compare
Choose a tag to compare

3.3.0 (2024-03-24)

Features

Upgrade notes

Note

This was a feature release because the steps below are optional.

After upgrading, you should adjust your existing docker-compose.yml file as follows:

  1. Rename the file to docker-compose.yaml
  2. Make the following 2 modifications to use a YAML anchor to keep the web and worker Docker volumes in sync (for an example of the diff, see here)
    1. web container, find the volumes: line. Append &common_volumes to this line, so it becomes volumes: &common_volumes.
    2. worker container, remove the existing volumes: block including its children. Then, add the line back as volumes: *common_volumes (this references the common_volumes anchor defined in the web container's YAML).

After these changes, the web/worker container service definitions should look like this:

services:
  web:
    [... omitted for brevity ...]
    volumes: &common_volumes
     - ./server/settings:/home/node/app/server/settings
     - ./server/env:/home/node/app/server/env
     - ./server/videos:/home/node/app/server/videos
  worker:
    image: ghcr.io/gafirst/match-uploader:latest
    command: yarn start:worker
    volumes: *common_volumes
    env_file:
      - ./server/env/production.env
    [... omitted for brevity ...]

You can also view docker-compose.yaml on this tag for a full, functional example.

v3.2.2

24 Mar 22:16
b027e03
Compare
Choose a tag to compare

3.2.2 (2024-03-24)

Bug Fixes

  • client: Ensure stale data is discarded when event code changes (#115) (b027e03)

v3.2.1

08 Mar 04:35
72f3bd6
Compare
Choose a tag to compare

3.2.1 (2024-03-08)

Bug Fixes

  • Fix Next Match bug and refresh match list on settings changes (#109) (72f3bd6)

v3.2.0

19 Feb 04:51
07bab8b
Compare
Choose a tag to compare

3.2.0 (2024-02-19)

Features

  • Implement full Next Match button functionality (#99) (07bab8b)

v3.1.0

17 Feb 04:29
8884ccd
Compare
Choose a tag to compare

3.1.0 (2024-02-17)

Features

  • Allow uploading replayed matches (#97) (8884ccd)

v3.0.0

12 Feb 05:02
3a583ad
Compare
Choose a tag to compare

3.0.0 (2024-02-12)

Features

  • server: Restructure videos directory by label (#92) (3a583ad)

BREAKING CHANGES

v2.3.0

08 Feb 05:28
33f6151
Compare
Choose a tag to compare

2.3.0 (2024-02-08)

Features

  • Allow cancelling jobs from client (#91) (33f6151)