Skip to content

Commit

Permalink
Update workflows to use latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
JockeJarre committed Jun 5, 2024
1 parent 5cd26f2 commit ba96798
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/b2s-backglass.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
- platform: x86
config: Release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# This empty uses is here on purpose
- uses: actions/checkout@v4
with:
repository: DirectOutput/B2SServerPluginInterface
path: B2SServerPluginInterface
Expand Down Expand Up @@ -53,7 +54,7 @@ jobs:
VERSION=$(grep -Eo "AssemblyVersion\(.*\)" "${ASSEMBLY_INFO}" | grep -Eo "[0-9\.]+" | tail -1)
TAG="${VERSION}-${SHA7}"
perl -i -pe"s/AssemblyInformationalVersion\(\".*\"\)/AssemblyInformationalVersion\(\"${TAG}\"\)/g" "${ASSEMBLY_INFO}"
- uses: microsoft/setup-msbuild@v1.3
- uses: microsoft/setup-msbuild@v2
- name: Build B2SServerPluginInterface
run: |
msbuild B2SServerPluginInterface/B2SServerPluginInterface.sln /t:Rebuild /p:Configuration=${{ matrix.config }}
Expand Down Expand Up @@ -101,7 +102,7 @@ jobs:
cp -r ScreenResTemplates tmp
cp -r B2STools tmp
cp b2sbackglassserverregisterapp/ScreenResTemplates.cmd tmp
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: B2SServer-${{ steps.version.outputs.tag }}-${{ matrix.config }}-win
path: tmp
7 changes: 7 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2.1.2
- Request to turn off backglass in b2s settings #80 Thanks @stevejones72!
It is a setting per table, so the table you save with hidden backglass will have it's backglass not shown.
You can still get settings opened on the background or b2s-dmd using right click though.
To edit the B2SBackglassSettings.xml file manually search for <HideB2SBackglass>1</HideB2SBackglass> and set to zero.
- Backglasses using overlapping partly transparent pictures get it's events merged. This is now deactivated by default. And cannot be deactivated!

2.1.1

- Add B2STools/B2SRandom.cmd to randomize many Backglasses when activated in Pinup Popper or similar
Expand Down

0 comments on commit ba96798

Please sign in to comment.