Skip to content

Commit bdc1443

Browse files
author
Andrey Ponomarenko
committed
Added -d option to compare directories instead of packages. Added -list-added-removed option to show content of added/removed text files. Added -vnum1 and -vnum2 options to set version numbers of input packages. Added -title option to set name of the package in the title of the report. Added -skip-subarchives option to skip checking of archives inside packages.
1 parent 1a297df commit bdc1443

File tree

8 files changed

+452
-216
lines changed

8 files changed

+452
-216
lines changed

INSTALL

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ All rights reserved.
66
RELEASE INFORMATION
77

88
Project: Package Changes Analyzer (pkgdiff)
9-
Version: 1.6.4
10-
Date: 2015-09-08
9+
Version: 1.7.0
10+
Date: 2015-10-12
1111

1212

1313
This file explains how to install and setup environment

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
prefix ?= /usr
22

3+
.PHONY: install
34
install:
45
perl Makefile.pl -install -prefix "$(prefix)"
56

Makefile.pl

100755100644
File mode changed.

doc/Readme.html

+26-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ <h1><a href="https://github.com/lvc/pkgdiff">pkgdiff</a></h1>
9292
<h2>Downloads</h2>
9393
<p>All releases can be downloaded from <a href="https://github.com/lvc/pkgdiff/">this page</a>.</p>
9494

95-
<p>Latest release: <a href="https://github.com/lvc/pkgdiff/archive/1.6.4.tar.gz">pkgdiff-1.6.4.tar.gz</a></p>
95+
<p>Latest release: <a href="https://github.com/lvc/pkgdiff/archive/1.7.0.tar.gz">pkgdiff-1.7.0.tar.gz</a></p>
9696

9797
<p>Read-only access to the latest development version:</p>
9898

@@ -269,6 +269,28 @@ <h2>Maintainers</h2>
269269
<a name="ChangeLog"></a>
270270
<h2>Changes</h2>
271271

272+
<b>Version 1.7.0 (October 04, 2015)</b><br/>
273+
<b>New Features</b>
274+
<ul>
275+
<li>
276+
Added -d option: compare directories instead of packages
277+
</li>
278+
<li>
279+
Added -list-added-removed option: show content of added/removed text files
280+
</li>
281+
<li>
282+
Added -vnum1 and -vnum2 options: set version numbers of input packages
283+
</li>
284+
<li>
285+
Added -title option: set name of the package in the title of the report
286+
</li>
287+
<li>
288+
Added -skip-subarchives option: skip checking of archives inside packages
289+
</li>
290+
</ul>
291+
292+
<br/>
293+
272294
<b>Version 1.6.4 (September 08, 2015)</b><br/>
273295
<b>Bug Fixes</b>
274296
<ul>
@@ -294,6 +316,9 @@ <h2>Changes</h2>
294316
<b>Version 1.6.3 (November 05, 2014)</b><br/>
295317
<b>New Features</b>
296318
<ul>
319+
<li>
320+
Added -hide-unchanged option: don't show unchanged files in the report
321+
</li>
297322
<li>
298323
Show change rate in the extra info files.xml (moved, changed, renamed)
299324
</li>

modules/Internals/Styles/Index.css

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ table.summary th.left {
4949
table.summary td.f_path {
5050
font-size:0.875em;
5151
font-family:Consolas, 'DejaVu Sans Mono', 'Droid Sans Mono', Monaco, Monospace;
52+
white-space:normal;
53+
word-wrap:break-word;
54+
max-width:57em;
5255
}
5356
table.summary td.value {
5457
padding-left:10px;

modules/Internals/Styles/View.css

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
body {
2+
margin:0.4em;
3+
font-size:0.86em;
4+
}
5+
6+
.view {
7+
cursor:text;
8+
/*margin-top:7px;*/
9+
font-family:Consolas, 'DejaVu Sans Mono', 'Droid Sans Mono', Monaco, Monospace;
10+
background-color:White;
11+
word-wrap:break-word;
12+
background-color: #FFF;
13+
max-width:41.5em;
14+
display: inline-block;
15+
text-align:left;
16+
white-space:pre-wrap;
17+
}
18+
19+
.header {
20+
background-color:Orange;
21+
text-align:center;
22+
font-weight:bold;
23+
}
24+
25+
.add {
26+
background-color:#C6DEFF;
27+
}
28+
29+
.rm {
30+
background-color:#FFCCCC;
31+
}

modules/Internals/Tools/rfcdiff-1.41-CUSTOM.sh

100755100644
File mode changed.

0 commit comments

Comments
 (0)