File tree Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Expand file tree Collapse file tree 5 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -126,12 +126,12 @@ done
126
126
: ${INSTALL_PROGRAM_STRIP:= ${INSTALL} -m 755 -s}
127
127
: ${INSTALL_MAN:= ${INSTALL} -m 444}
128
128
: ${INSTALL_LIB:= ${INSTALL} -m 755 -c}
129
- PKGNAME=' r2mcp' ; VERSION=' 1.2 .0' ; VERSION_MAJOR=1; VERSION_MINOR=2 ; VERSION_PATCH=0; VERSION_NUMBER=10200 ; CONTACT_MAIL=" pancake@nopcode.org" ; CONTACT_NAME=" pancake" ; CONTACT=" pancake <pancake@nopcode.org>" ;
129
+ PKGNAME=' r2mcp' ; VERSION=' 1.3 .0' ; VERSION_MAJOR=1; VERSION_MINOR=3 ; VERSION_PATCH=0; VERSION_NUMBER=10300 ; CONTACT_MAIL=" pancake@nopcode.org" ; CONTACT_NAME=" pancake" ; CONTACT=" pancake <pancake@nopcode.org>" ;
130
130
}
131
131
132
132
show_usage () {
133
133
cat << EOF2
134
- 'configure' configures r2mcp-1.2 .0 to adapt to many kinds of systems.
134
+ 'configure' configures r2mcp-1.3 .0 to adapt to many kinds of systems.
135
135
136
136
Usage: ./configure [OPTION]... [VAR=VALUE]...
137
137
@@ -208,10 +208,10 @@ ocho() {
208
208
209
209
show_version () {
210
210
if [ " $QUIET " = 1 ]; then
211
- echo " 1.2 .0"
211
+ echo " 1.3 .0"
212
212
exit 0
213
213
fi
214
- echo " r2mcp-1.2 .0 configuration script done with acr v2.2.4.
214
+ echo " r2mcp-1.3 .0 configuration script done with acr v2.2.4.
215
215
The 'Free Software Foundation' message is only for autodetection.
216
216
Originally written by pancake <nopcode.org>."
217
217
exit 0
@@ -240,7 +240,7 @@ case $flag in
240
240
show_version ; ;;
241
241
-r|--r|--report)
242
242
echo " PKGNAME: r2mcp"
243
- echo " VERSION: 1.2 .0"
243
+ echo " VERSION: 1.3 .0"
244
244
echo " AUTHOR: pancake"
245
245
echo " EMAIL: pancake@nopcode.org"
246
246
echo " LANGS: c"
Original file line number Diff line number Diff line change 1
1
PKGNAME r2mcp
2
- VERSION 1.2 .0
2
+ VERSION 1.3 .0
3
3
CONTACT pancake ; pancake@nopcode.org
4
4
5
5
LANG_C!
Original file line number Diff line number Diff line change 1
1
project (
2
2
' r2mcp' ,
3
3
' c' ,
4
- version : ' 1.2 .0' ,
4
+ version : ' 1.3 .0' ,
5
5
default_options : [' warning_level=2' , ' c_std=c11' ]
6
6
)
7
7
Original file line number Diff line number Diff line change @@ -216,7 +216,6 @@ typedef struct {
216
216
void prompts_registry_init (ServerState * ss ) {
217
217
if (ss -> prompts ) return ;
218
218
PromptRegistry * reg = R_NEW0 (PromptRegistry );
219
- if (!reg ) return ;
220
219
reg -> list = r_list_new ();
221
220
if (!reg -> list ) {
222
221
free (reg );
Original file line number Diff line number Diff line change 7
7
8
8
/* Version fallback if not provided by build */
9
9
#ifndef R2MCP_VERSION
10
- #define R2MCP_VERSION "1.2 .0"
10
+ #define R2MCP_VERSION "1.3 .0"
11
11
#endif
12
12
13
13
typedef struct {
You can’t perform that action at this time.
0 commit comments