Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dadleyy/twowaiyo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.4
Choose a base ref
...
head repository: dadleyy/twowaiyo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 12 commits
  • 33 files changed
  • 1 contributor

Commits on Jan 15, 2022

  1. v0.4.0 (#7)

    * move seat processing to bg
    
    * background create + sit
    
    * cargo updates + table cleanup
    
    * release prepare - v0.4.0
    
    * set roller appropriately
    dadleyy authored Jan 15, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4f9c311 View commit details

Commits on Jan 21, 2022

  1. v0.4.1 rc (#8)

    * rust 1.58.1 github ci
    
    * adding more logs
    dadleyy authored Jan 21, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    3297bdc View commit details

Commits on Jan 23, 2022

  1. bump deps, v0.4.2 (#9)

    dadleyy authored Jan 23, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6839de4 View commit details

Commits on Jan 27, 2022

  1. cargo updates

    dadleyy committed Jan 27, 2022

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dadleyy Danny Hadley
    Copy the full SHA
    87f5a60 View commit details

Commits on Feb 7, 2022

  1. timeout on redis connection, version in heartbeat (#10)

    * timeout on redis connection, version in heartbeat
    
    * add warning log on attempt fail
    dadleyy authored Feb 7, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    69877f3 View commit details

Commits on Feb 9, 2022

  1. v0.4.4 version fix (#11)

    * fix version display + artifact name
    
    * fix ci
    dadleyy authored Feb 9, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    d2ba010 View commit details

Commits on Feb 11, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dc8e2be View commit details

Commits on Feb 25, 2022

  1. minor package updates (#13)

    * more updates
    
    * bump - v4.6.0
    dadleyy authored Feb 25, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    feafcd5 View commit details

Commits on Jun 10, 2022

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dadleyy Danny Hadley
    Copy the full SHA
    63b8c8b View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dadleyy Danny Hadley
    Copy the full SHA
    c41642f View commit details
  3. cleanup unused dep

    dadleyy committed Jun 10, 2022

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dadleyy Danny Hadley
    Copy the full SHA
    09f4ec5 View commit details

Commits on Jul 9, 2022

  1. fix cookie lookup

    dadleyy committed Jul 9, 2022

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    dadleyy Danny Hadley
    Copy the full SHA
    f4059e3 View commit details
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -20,3 +20,9 @@ STICKBOT_ADMIN_EMAILS=""
STICKBOT_MAX_ACTIVE_TABLES_PER_PLAYER=

BOXBOT_WORKER_DELAY=1000

STICKBOT_TABLE_COLLECTION="stickbot:tables"
STICKBOT_TABLE_LIST_COLLECTION="stickbot:table_list"
STICKBOT_PLAYER_COLECTION="stickbot:players"
STICKBOT_JOB_QUEUE="stickbot:jobs"
STICKBOT_JOB_RESULTS="stickbot:job_results"
13 changes: 5 additions & 8 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -12,7 +12,9 @@ jobs:
dist:
runs-on: ubuntu-latest
container:
image: rust:1.57.0
image: rust:1.61.0
env:
TWOWAIYO_VERSION: "${{ github.sha }}"
steps:
- uses: actions/checkout@v2
- name: Update apt
@@ -53,14 +55,9 @@ jobs:
- name: Populate distributable (boxbot)
run: cp target/armv7-unknown-linux-gnueabihf/release/boxbot target/dist/twowaiyo/boxbot
- name: Compress distributable
run: tar cvzf ./twowaiyo-armv7-unknown-linux-gnueabihf.tar.gz -C target/dist twowaiyo
run: tar cvzf ./twowaiyo-armv7-unknown-linux-gnueabihf-$GITHUB_SHA.tar.gz -C target/dist twowaiyo
- name: Create Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ./twowaiyo-armv7-unknown-linux-gnueabihf.tar.gz
################################################################
# the following workflow have been deprecated:
# - https://github.com/actions/create-release
# - https://github.com/actions/upload-release-asset
################################################################
files: "./twowaiyo-armv7-unknown-linux-gnueabihf-${{ github.sha }}.tar.gz"
Loading