Skip to content

Commit

Permalink
RPCN 1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
RipleyTom committed Sep 16, 2024
1 parent 7c97113 commit 5237f94
Show file tree
Hide file tree
Showing 25 changed files with 3,762 additions and 941 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ jobs:
- name: Create artifact
run: cd artifact && tar -zcvf ../rpcn-linux.tar.gz ./ && cd ..
- name: Upload artifact
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v4.0.0
with:
name: rpcn
path: rpcn-linux.tar.gz
compression-level: 9
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -49,10 +50,11 @@ jobs:
- name: Create artifact
run: Compress-Archive -Path artifact-win/* -Destination rpcn-win.zip
- name: Upload artifact
uses: actions/upload-artifact@v1.0.0
uses: actions/upload-artifact@v4.0.0
with:
name: rpcn-win
path: rpcn-win.zip
compression-level: 9
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
/.vscode/**
/db/**
ticket_private.pem
key.pem
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.3.0] - 2024-09-

### Added

- Added a configuration setting letting you set admins rights for specific usernames(set on launch or at account creation)
- Added commands to support old GUI API (CreateRoomGUI, JoinRoomGUI, LeaveRoomGUI, GetRoomListGUI, SetRoomSearchFlagGUI, GetRoomSearchFlagGUI, SetRoomInfoGUI, GetRoomInfoGUI, QuickMatchGUI, SearchJoinGUI)

### Changed

- Changed the default ranking limit(number of scores ranked per table) from 100 to 250
- Ticket issuer ID was changed to 0x100(from 0x33333333) as Tony Hawk: SHRED was found to be checking this value

### Fixed

- Allow all messages but invites to be sent to non-friends
- Fixed score cache last insertion/update time not being updated on insert
- Fixed SceNpCommunicationId to reflect the sub_id
- Fixed startIndex in Matching2 search requests not being interpreted and being set wrong in the reply
- Fixed user_rooms not being appropriately updated when removed from the room forcefully(ie room destroyed)
- Fixed SCE_NP_MATCHING2_ROOMMEMBER_FLAG_ATTR_OWNER not being set for the member becoming the new owner if the succession didn't go through the list
- Ninetime: added servers for all Arcsys games so they should work now(BBCT, BBCSE, BBCPE, BBCF, P4A, P4AU, UNIEL) and for a few other games(Outrun Online Arcade, SCV, KOF13)
- CookiePLMonster: Fixed scoreboards ordering/rules for RR7, Crazy Taxi, GTHD, Daytona USA, Wrecked, Hotline Miami 2

### Misc

- Updated dependencies


## [1.2.4] - 2024-03-23

### Fixed
Expand Down
Loading

0 comments on commit 5237f94

Please sign in to comment.