diff --git a/libr/core/cmd_project.c b/libr/core/cmd_project.c index ec0b75efb6..4747129517 100644 --- a/libr/core/cmd_project.c +++ b/libr/core/cmd_project.c @@ -1,4 +1,5 @@ -/* radare - LGPL - Copyright 2009-2015 - pancake */ +/* radare - LGPL - Copyright 2009-2016 - pancake */ + #include "r_config.h" #include "r_core.h" #include "r_print.h" diff --git a/libr/core/project.c b/libr/core/project.c index c6df901f1f..14b444f4ee 100644 --- a/libr/core/project.c +++ b/libr/core/project.c @@ -397,6 +397,10 @@ R_API bool r_core_project_save_rdb(RCore *core, const char *file, int opts) { r_core_cmd (core, "afl*", 0); r_cons_flush (); } + if (opts & R_CORE_PRJ_FLAGS) { + r_core_cmd (core, "f.*", 0); + r_cons_flush (); + } if (opts & R_CORE_PRJ_DBG_BREAK) { r_core_cmd (core, "db*", 0); r_cons_flush (); diff --git a/sys/release-notes/index.js b/sys/release-notes/index.js index 9f9a4c0d7e..f965762e5c 100755 --- a/sys/release-notes/index.js +++ b/sys/release-notes/index.js @@ -5,10 +5,10 @@ const exec = require('child_process').exec; const spawn = require('child_process').spawn; const AsciiTable = require('ascii-table'); -const lastTag = '0.10.3'; +const lastTag = '0.10.4'; const curVersion = '@'; //0.10.4'; const showOnlyFinalReport = true; -const codeName = 'Tooth'; +const codeName = 'PreCon'; const topTen = 0; const topFive = 999;