mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 21:29:49 +00:00
* Some fixes in sw, update TODO and prepare Changelog for release..
This commit is contained in:
parent
bccc048aec
commit
c9cda4c3de
4
TODO
4
TODO
@ -8,6 +8,8 @@
|
||||
|
||||
0.5 RELEASE
|
||||
===========
|
||||
* Ensure -p works (to choose project, save, etc..)
|
||||
* Handle ^C in search..
|
||||
|
||||
Build system:
|
||||
-------------
|
||||
@ -19,11 +21,13 @@ Build system:
|
||||
|
||||
TODO edu
|
||||
--------
|
||||
* review vapis and bindings
|
||||
* use RList in r_search
|
||||
* typedef all function pointers, like in r_bp
|
||||
|
||||
TODO nibble
|
||||
-----------
|
||||
* ret 4?
|
||||
* rabin2 doesnt works for fat mach-o
|
||||
* Cx/CX are not displayed in disasm as they should.. (C! must die)
|
||||
|
||||
|
@ -1,6 +1,10 @@
|
||||
Description
|
||||
===========
|
||||
Introduction
|
||||
============
|
||||
|
||||
This directory aims to provide helpful documentation tips for radare2.
|
||||
radare is a multiplatform *nix-like reverse engineering framework.
|
||||
|
||||
It is composed by a set of libraries, programs and scripts.
|
||||
|
||||
[Analysis](analysis/index.html)
|
||||
|
||||
--pancake
|
||||
|
@ -34,8 +34,9 @@ sw_menu() {
|
||||
# absolute paz
|
||||
#[ -n "${DIR}" ] && echo "<li><a href=\"`dirname ${PREFIX}${BIN}/${DIR}`\">..</a></li>"
|
||||
# relative fun
|
||||
[ -z "`echo $FILE|grep index.md`" ] && echo "<li><a href=\"index.html\">.</a></li>"
|
||||
[ -n "${DIR}" ] && echo "<li><a href=\"../index.html\">..</a></li>"
|
||||
for i in `ls ${SITE}/${DIR} | grep -v ${BL} ` ; do
|
||||
for i in `ls ${SITE}/${DIR} | grep -v ${BL} | grep -v index` ; do
|
||||
NAME=`echo "${i}" | sed -e "s/\..*$//" -e "s/_/ /g"`
|
||||
# THIS IS RELATIVE STATIC FUN
|
||||
[ -z "`echo $i | grep md$`" ] && i="$i/index.md"
|
||||
|
Loading…
Reference in New Issue
Block a user