Re: [LyX/master] Some more SVG icons

2014-10-10 Thread Jean-Marc Lasgouttes

Le 10/10/2014 14:01, Juergen Spitzmueller a écrit :

commit 8e12587910195a6dbfbae2838be0c0066cf30669
Author: Juergen Spitzmueller sp...@lyx.org
Date:   Fri Oct 10 14:00:52 2014 +0200

 Some more SVG icons


Hi Juergen,

Why do we have a mix of svg and svgz files? Is that desirable?

JMarc



Re: [LyX/master] Some more SVG icons

2014-10-10 Thread Jürgen Spitzmüller
Am Freitag 10 Oktober 2014, 17:28:21 schrieb Jean-Marc Lasgouttes:
 Why do we have a mix of svg and svgz files?

The svgz files are those just copied from public sets, the svg files are those 
I 
created (or edited) myself with inkscape.

 Is that desirable?

Probably not (although I don't think it matters, except that the compressed 
ones are smaller).

Jürgen

 
 JMarc



Re: [LyX/master] Some more SVG icons

2014-10-10 Thread Richard Heck

On 10/10/2014 12:20 PM, Jürgen Spitzmüller wrote:

Am Freitag 10 Oktober 2014, 17:28:21 schrieb Jean-Marc Lasgouttes:

Why do we have a mix of svg and svgz files?

The svgz files are those just copied from public sets, the svg files are those I
created (or edited) myself with inkscape.


Is that desirable?

Probably not (although I don't think it matters, except that the compressed
ones are smaller).


If we want them to be the same, it's presumably possible to do a batch 
conversion with ImageMagick:


for i in *.svg; do convert $i ${i%svg}svgz; done

Untested, but should work.

Richard



Re: [LyX/master] Some more SVG icons

2014-10-10 Thread Jean-Marc Lasgouttes

Le 10/10/2014 14:01, Juergen Spitzmueller a écrit :

commit 8e12587910195a6dbfbae2838be0c0066cf30669
Author: Juergen Spitzmueller 
Date:   Fri Oct 10 14:00:52 2014 +0200

 Some more SVG icons


Hi Juergen,

Why do we have a mix of svg and svgz files? Is that desirable?

JMarc



Re: [LyX/master] Some more SVG icons

2014-10-10 Thread Jürgen Spitzmüller
Am Freitag 10 Oktober 2014, 17:28:21 schrieb Jean-Marc Lasgouttes:
> Why do we have a mix of svg and svgz files?

The svgz files are those just copied from public sets, the svg files are those 
I 
created (or edited) myself with inkscape.

> Is that desirable?

Probably not (although I don't think it matters, except that the compressed 
ones are smaller).

Jürgen

> 
> JMarc



Re: [LyX/master] Some more SVG icons

2014-10-10 Thread Richard Heck

On 10/10/2014 12:20 PM, Jürgen Spitzmüller wrote:

Am Freitag 10 Oktober 2014, 17:28:21 schrieb Jean-Marc Lasgouttes:

Why do we have a mix of svg and svgz files?

The svgz files are those just copied from public sets, the svg files are those I
created (or edited) myself with inkscape.


Is that desirable?

Probably not (although I don't think it matters, except that the compressed
ones are smaller).


If we want them to be the same, it's presumably possible to do a batch 
conversion with ImageMagick:


for i in *.svg; do convert $i ${i%svg}svgz; done

Untested, but should work.

Richard