File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed
Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 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
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 |
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 |
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 44using CounterStrikeSharp . API . Modules . Utils ;
55using CounterStrikeSharp . API . Core . Attributes ;
66using CounterStrikeSharp . API . Modules . Timers ;
7+ using CounterStrikeSharp . API . Modules . Events ;
78
89
910namespace 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
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments