Skip to content

Commit

Permalink
Release r2frida 5.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed May 21, 2024
1 parent 2cd117a commit 2722bb9
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 58 deletions.
15 changes: 9 additions & 6 deletions configure
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
# This script was automatically generated by ACR v2.1.2
# This script was automatically generated by ACR v2.1.4
# @author: pancake <nopcode.org>
# @url: http://www.nopcode.org
# @repo: git clone https://github.com/radare/acr
Expand Down Expand Up @@ -113,12 +113,12 @@ done
: ${INSTALL_PROGRAM_STRIP:=${INSTALL} -m 755 -s}
: ${INSTALL_MAN:=${INSTALL} -m 444}
: ${INSTALL_LIB:=${INSTALL} -m 755 -c}
PKGNAME='r2frida' ; VERSION='5.9.0' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=0; VERSION_NUMBER=50900; CONTACT_MAIL="pancake@nowsecure.com" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nowsecure.com>" ;
PKGNAME='r2frida' ; VERSION='5.9.2' ; VERSION_MAJOR=5; VERSION_MINOR=9; VERSION_PATCH=2; VERSION_NUMBER=50902; CONTACT_MAIL="pancake@nowsecure.com" ; CONTACT_NAME="pancake" ; CONTACT="pancake <pancake@nowsecure.com>" ;
}

show_usage() {
cat <<EOF2
'configure' configures r2frida-5.9.0 to adapt to many kinds of systems.
'configure' configures r2frida-5.9.2 to adapt to many kinds of systems.
Usage: ./configure [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -200,10 +200,10 @@ ocho() {

show_version() {
if [ "$QUIET" = 1 ]; then
echo "5.9.0"
echo "5.9.2"
exit 0
fi
echo "r2frida-5.9.0 configuration script done with acr v2.1.2.
echo "r2frida-5.9.2 configuration script done with acr v2.1.4.
The 'Free Software Foundation' message is only for autodetection.
Originally written by pancake <nopcode.org>."
exit 0
Expand Down Expand Up @@ -232,7 +232,7 @@ case $flag in
show_version ; ;;
-r|--r|--report)
echo "PKGNAME: r2frida"
echo "VERSION: 5.9.0"
echo "VERSION: 5.9.2"
echo "AUTHOR: pancake"
echo "EMAIL: pancake@nowsecure.com"
echo "LANGS: c"
Expand Down Expand Up @@ -323,6 +323,7 @@ ocho "using prefix '${PREFIX}'"
ACR_RMFILES=" test.c a.out a.exe"

ochof "checking for pkg-config... "
ENVWORDS="${ENVWORDS} HAVE_PKGCONFIG"
if [ -n "$PKGCONFIG" ]; then
if [ -x "$PKGCONFIG" ]; then
_HAVE_PKGCONFIG="${PKGCONFIG}"
Expand All @@ -346,7 +347,9 @@ else
fi
if [ -n "${PKGCONFIG}" ]; then
ocho ${PKGCONFIG}
HAVE_PKGCONFIG=1
else
HAVE_PKGCONFIG=0
echo "Cannot find pkg-config or pkgconf in PATH" >&2
exit 1
ocho no; fi
Expand Down
2 changes: 1 addition & 1 deletion configure.acr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PKGNAME r2frida
VERSION 5.9.0
VERSION 5.9.2
CONTACT pancake ; pancake@nowsecure.com

USE_PKGCONFIG!
Expand Down
2 changes: 1 addition & 1 deletion make.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
REM setlocal EnableDelayedExpansion
set frida_version=16.2.5
set r2frida_version=5.9.0
set r2frida_version=5.9.2
if "%PLATFORM%" == "x64" (set frida_os_arch=x86_64) else (set frida_os_arch=x86)
set DEBUG=/O2

Expand Down
57 changes: 9 additions & 48 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": "r2frida-agent",
"version": "5.9.0",
"version": "5.9.2",
"description": "Agent for frida:// io plugin",
"private": true,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/agent/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export interface R2FridaPlugin {
}

export const r2frida: R2FridaPlugin = {
version: "5.9.0",
version: "5.9.2",
commandHandler: commandHandler,
pluginRegister: pluginRegister,
pluginUnregister: pluginUnregister,
Expand Down

0 comments on commit 2722bb9

Please sign in to comment.