Skip to content

Commit

Permalink
release: 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CanadaHonk committed Apr 28, 2024
1 parent 68775af commit cca93db
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# arRPC Changelog

## v3.4.0 [28-04-2024]
- Linux process detection is now improved, thanks to [Sqaaakoi](https://github.com/Sqaaakoi). ([#75](https://github.com/OpenAsar/arrpc/pull/75))
- Rewrote ready packet sent to applications so potential regressions from v3.3.1 should be fixed.
- Rewrote detectable DB loading to work with Node v22.
- Removed top-level await so older runtimes should no longer crash.

## v3.3.1 [13-02-2024]
- Fixed a bug crashing some RPC libraries.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arrpc",
"version": "3.3.1",
"version": "3.4.0",
"description": "Open Discord RPC server for atypical setups",
"main": "src/server.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const rgb = (r, g, b, msg) => `\x1b[38;2;${r};${g};${b}m${msg}\x1b[0m`;
const log = (...args) => console.log(`[${rgb(88, 101, 242, 'arRPC')}]`, ...args);

log('arRPC v3.1.0');
log('arRPC v3.4.0');

import * as Bridge from './bridge.js';
import Server from './server.js';
Expand Down

0 comments on commit cca93db

Please sign in to comment.