Skip to content

Commit

Permalink
Rdrview 0.1.3
Browse files Browse the repository at this point in the history
This release allows the futex() syscall inside the sandbox, which is
necessary in some systems. It also improves error reporting when we fail
to fetch a webpage.
  • Loading branch information
eafer committed Oct 27, 2024
1 parent 36745f7 commit 0bf7b5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rdrview.1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.\"
.\" Copyright (C) 2020 Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
.\"
.TH rdrview 1 "June 2024" "0.1.2"
.TH rdrview 1 "October 2024" "0.1.3"
.SH NAME
rdrview \- extract readable content from a webpage
.SH SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions src/rdrview.c
Original file line number Diff line number Diff line change
Expand Up @@ -414,9 +414,9 @@ static void parse_arguments(int argc, char *argv[])
break;
case 'v':
if (*GIT_COMMIT)
printf("rdrview 0.1.2 - git commit id: %s\n", GIT_COMMIT);
printf("rdrview 0.1.3 - git commit id: %s\n", GIT_COMMIT);
else /* Git not available during build */
printf("rdrview 0.1.2 - unknown git commit id\n");
printf("rdrview 0.1.3 - unknown git commit id\n");
exit(0);
case 'B':
++output_opts;
Expand Down
2 changes: 1 addition & 1 deletion src/rdrview.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <libxml/debugXML.h>

/* The Incapsula CDN demands user-agent strings of a certain form */
#define RDRVIEW_DEFAULT_USER_AGENT "Mozilla/5.0 rdrview/0.1.2"
#define RDRVIEW_DEFAULT_USER_AGENT "Mozilla/5.0 rdrview/0.1.3"

/* Cli options, plus some internal configuration */
struct options {
Expand Down

0 comments on commit 0bf7b5a

Please # to comment.