* Some fixes in sw, update TODO and prepare Changelog for release..

This commit is contained in:
pancake 2010-07-22 14:29:03 +02:00
parent bccc048aec
commit c9cda4c3de
4 changed files with 2614 additions and 4 deletions

2601
ChangeLog

File diff suppressed because it is too large Load Diff

4
TODO
View File

@ -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)

View File

@ -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

View File

@ -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"