Skip to content

Commit

Permalink
Release 5.8.8
Browse files Browse the repository at this point in the history
  • Loading branch information
radare committed Jun 9, 2023
1 parent 6e8b079 commit d887153
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 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.0
# This script was automatically generated by ACR v2.1.1
# @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.8.6' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=6; VERSION_NUMBER=50806; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
PKGNAME='r2frida' ; VERSION='5.8.8' ; VERSION_MAJOR=5; VERSION_MINOR=8; VERSION_PATCH=8; VERSION_NUMBER=50808; CONTACT_MAIL="[email protected]" ; CONTACT_NAME="pancake" ; CONTACT="pancake <[email protected]>" ;
}

show_usage() {
cat <<EOF2
'configure' configures r2frida-5.8.6 to adapt to many kinds of systems.
'configure' configures r2frida-5.8.8 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.8.6"
echo "5.8.8"
exit 0
fi
echo "r2frida-5.8.6 configuration script done with acr v2.1.0.
echo "r2frida-5.8.8 configuration script done with acr v2.1.1.
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.8.6"
echo "VERSION: 5.8.8"
echo "AUTHOR: pancake"
echo "EMAIL: [email protected]"
echo "LANGS: c"
Expand Down Expand Up @@ -358,7 +358,7 @@ if [ "${CROSSBUILD}" = 1 ]; then
if [ $? = 0 ]; then CC="${HOST}-${CC}"; fi
fi
echo "int main(int argc, char **argv){return 0;}" > test.c
(exec ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} test.c >/dev/null 2>&1)
(exec ${CC} -o a.out ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} test.c >/dev/null 2>&1)
if [ $? = 0 ]; then echo ${CC}; else
echo no ; HAVE_LANG_C=0
do_remove
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.8.6
VERSION 5.8.8
CONTACT pancake ; [email protected]

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
setlocal EnableDelayedExpansion
set frida_version=16.0.19
set r2frida_version=5.8.6
set r2frida_version=5.8.8
if "%PLATFORM%" == "x64" (set frida_os_arch=x86_64) else (set frida_os_arch=x86)
set DEBUG=/O2

Expand Down
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.8.6",
"version": "5.8.8",
"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 @@ -69,7 +69,7 @@ r2frida.puts = initializePuts();
*/

export const r2frida: R2FridaPlugin = {
version: "5.8.6",
version: "5.8.8",
safeio: false,
commandHandler: commandHandler,
pluginRegister: pluginRegister,
Expand Down

0 comments on commit d887153

Please sign in to comment.