Skip to content

Commit 3642800

Browse files
committed
Rdrview 0.1.2
This release adds a new option to preserve html class attributes. The man path for OpenBSD is also fixed (thanks to a patch by Veraellyunjie), and support is enabled for the file URI scheme.
1 parent 43fb5d0 commit 3642800

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

rdrview.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.\"
33
.\" Copyright (C) 2020 Ernesto A. Fernández <ernesto.mnd.fernandez@gmail.com>
44
.\"
5-
.TH rdrview 1 "March 2024" "0.1.1"
5+
.TH rdrview 1 "June 2024" "0.1.2"
66
.SH NAME
77
rdrview \- extract readable content from a webpage
88
.SH SYNOPSIS

src/rdrview.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -407,9 +407,9 @@ static void parse_arguments(int argc, char *argv[])
407407
break;
408408
case 'v':
409409
if (*GIT_COMMIT)
410-
printf("rdrview 0.1.1 - git commit id: %s\n", GIT_COMMIT);
410+
printf("rdrview 0.1.2 - git commit id: %s\n", GIT_COMMIT);
411411
else /* Git not available during build */
412-
printf("rdrview 0.1.1 - unknown git commit id\n");
412+
printf("rdrview 0.1.2 - unknown git commit id\n");
413413
exit(0);
414414
case 'B':
415415
++output_opts;

src/rdrview.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#include <libxml/debugXML.h>
3535

3636
/* The Incapsula CDN demands user-agent strings of a certain form */
37-
#define RDRVIEW_DEFAULT_USER_AGENT "Mozilla/5.0 rdrview/0.1.1"
37+
#define RDRVIEW_DEFAULT_USER_AGENT "Mozilla/5.0 rdrview/0.1.2"
3838

3939
/* Cli options, plus some internal configuration */
4040
struct options {

0 commit comments

Comments
 (0)