Skip to content

Commit 11e88a9

Browse files
Merge pull request #280 from shobhit-pathak/dev
v0.8.9
2 parents 15031a8 + 44b9f6f commit 11e88a9

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
echo "MATCHZY_VERSION=$MATCHZY_VERSION" >> $GITHUB_ENV
3333
- name: Build and Release Artifacts
3434
run: |
35-
CSSHARP_VERSION=$(grep -Po '<PackageReference Include="CounterStrikeSharp.API" Version="\K\d+(\.\d+)*' MatchZy.csproj | sed 's|1.0.||g')
35+
CSSHARP_VERSION=$(grep -Po '<PackageReference Include="CounterStrikeSharp.API" Version="\K\d+(\.\d+)*' MatchZy.csproj)
3636
echo "Creating MatchZy base package with version: $MATCHZY_VERSION"
3737
dotnet publish -o package/addons/counterstrikesharp/plugins/MatchZy
3838
cp -r cfg package
@@ -43,7 +43,7 @@ jobs:
4343
echo "Installing CounterStrikeSharp (CSSharp) v$CSSHARP_VERSION"
4444
[ -e addons/counterstrikesharp ] && rm -rf addons/counterstrikesharp && echo "CounterStrikeSharp removed" || echo "old CounterStrikeSharp not found"
4545
curl -s https://api.github.com/repos/roflmuffin/CounterStrikeSharp/releases/tags/v$CSSHARP_VERSION |
46-
grep "/counterstrikesharp-with-runtime-build-$CSSHARP_VERSION-linux" |
46+
grep "/counterstrikesharp-with-runtime-linux-$CSSHARP_VERSION" |
4747
cut -d : -f 2,3 |
4848
tr -d \" |
4949
head -n 1 |
@@ -64,7 +64,7 @@ jobs:
6464
echo "Installing CounterStrikeSharp (CSSharp) v$CSSHARP_VERSION"
6565
[ -e addons/counterstrikesharp ] && rm -rf addons/counterstrikesharp && echo "CounterStrikeSharp removed" || echo "old CounterStrikeSharp not found"
6666
curl -s https://api.github.com/repos/roflmuffin/CounterStrikeSharp/releases/tags/v$CSSHARP_VERSION |
67-
grep "/counterstrikesharp-with-runtime-build-$CSSHARP_VERSION-windows" |
67+
grep "/counterstrikesharp-with-runtime-windows-$CSSHARP_VERSION" |
6868
cut -d : -f 2,3 |
6969
tr -d \" |
7070
head -n 1 |

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# MatchZy Changelog
22

3+
# 0.8.9
4+
5+
#### April 3, 2025
6+
7+
- Fixed issue with EventPlayerChat (. commands) post CSSharp v315 update.
8+
39
# 0.8.8
410

511
#### January 1, 2025

MatchZy.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using CounterStrikeSharp.API.Modules.Utils;
55
using CounterStrikeSharp.API.Core.Attributes;
66
using CounterStrikeSharp.API.Modules.Timers;
7+
using CounterStrikeSharp.API.Modules.Events;
78

89

910
namespace MatchZy
@@ -13,7 +14,7 @@ public partial class MatchZy : BasePlugin
1314
{
1415

1516
public override string ModuleName => "MatchZy";
16-
public override string ModuleVersion => "0.8.8";
17+
public override string ModuleVersion => "0.8.9";
1718

1819
public override string ModuleAuthor => "WD- (https://github.com/shobhit-pathak/)";
1920

MatchZy.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.291">
10+
<PackageReference Include="CounterStrikeSharp.API" Version="1.0.315">
1111
<PrivateAssets>none</PrivateAssets>
1212
<ExcludeAssets>runtime</ExcludeAssets>
1313
<IncludeAssets>compile; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)