Skip to content

Commit 6e6e5a7

Browse files
committed
removed duplicate entry for thumbnail_prex in docs
1 parent 01aac9b commit 6e6e5a7

File tree

10 files changed

+15
-42
lines changed

10 files changed

+15
-42
lines changed

Changes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,7 @@ Revision history for jQuery-File-Upload
7474
0.18
7575

7676
added 'close OUTFILE;' in _save_local.
77+
78+
0.19
79+
80+
removed duplicate entry for thumbnail_prex in docs

MYMETA.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@
4545
}
4646
},
4747
"release_status" : "stable",
48-
"version" : "0.18"
48+
"version" : "0.19"
4949
}

MYMETA.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ requires:
2727
Net::SSH2::SFTP: 0
2828
URI: 0
2929
perl: 5.006
30-
version: 0.18
30+
version: 0.19

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ DIRFILESEP = /
6161
DFSEP = $(DIRFILESEP)
6262
NAME = jQuery::File::Upload
6363
NAME_SYM = jQuery_File_Upload
64-
VERSION = 0.18
64+
VERSION = 0.19
6565
VERSION_MACRO = VERSION
66-
VERSION_SYM = 0_18
66+
VERSION_SYM = 0_19
6767
DEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\"
68-
XS_VERSION = 0.18
68+
XS_VERSION = 0.19
6969
XS_VERSION_MACRO = XS_VERSION
7070
XS_DEFINE_VERSION = -D$(XS_VERSION_MACRO)=\"$(XS_VERSION)\"
7171
INST_ARCHLIB = blib/arch
@@ -262,7 +262,7 @@ RCS_LABEL = rcs -Nv$(VERSION_SYM): -q
262262
DIST_CP = best
263263
DIST_DEFAULT = tardist
264264
DISTNAME = jQuery-File-Upload
265-
DISTVNAME = jQuery-File-Upload-0.18
265+
DISTVNAME = jQuery-File-Upload-0.19
266266

267267

268268
# --- MakeMaker macro section:
@@ -511,7 +511,7 @@ metafile : create_distdir
511511
$(NOECHO) $(ECHO) ' Net::SSH2::SFTP: 0' >> META_new.yml
512512
$(NOECHO) $(ECHO) ' URI: 0' >> META_new.yml
513513
$(NOECHO) $(ECHO) ' perl: 5.006' >> META_new.yml
514-
$(NOECHO) $(ECHO) 'version: 0.18' >> META_new.yml
514+
$(NOECHO) $(ECHO) 'version: 0.19' >> META_new.yml
515515
-$(NOECHO) $(MV) META_new.yml $(DISTVNAME)/META.yml
516516
$(NOECHO) $(ECHO) Generating META.json
517517
$(NOECHO) $(ECHO) '{' > META_new.json
@@ -561,7 +561,7 @@ metafile : create_distdir
561561
$(NOECHO) $(ECHO) ' }' >> META_new.json
562562
$(NOECHO) $(ECHO) ' },' >> META_new.json
563563
$(NOECHO) $(ECHO) ' "release_status" : "stable",' >> META_new.json
564-
$(NOECHO) $(ECHO) ' "version" : "0.18"' >> META_new.json
564+
$(NOECHO) $(ECHO) ' "version" : "0.19"' >> META_new.json
565565
$(NOECHO) $(ECHO) '}' >> META_new.json
566566
-$(NOECHO) $(MV) META_new.json $(DISTVNAME)/META.json
567567

blib/lib/jQuery/File/Upload.pm

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use URI;
1616
#use LWP::UserAgent;
1717
#use LWP::Protocol::https;
1818

19-
our $VERSION = '0.18';
19+
our $VERSION = '0.19';
2020

2121
my %errors = (
2222
'_validate_max_file_size' => 'File is too big',
@@ -2102,13 +2102,6 @@ file is an image. Default is 80.
21022102
This sets the height for the thumbnail that will be created if the
21032103
file is an image. Default is 80.
21042104
2105-
=head3 tumbnail_quality
2106-
2107-
$j_fu->thumbnail_quality(70);
2108-
2109-
This sets the quality of the generated thumbnail. Default is 70 and it
2110-
can be on a scale of 0-100. See L<Image::Magick> for more information.
2111-
21122105
=head3 thumbnail_quality
21132106
21142107
$j_fu->thumbnail_quality(70);

blib/man3/jQuery::File::Upload.3pm

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -654,16 +654,6 @@ file is an image. Default is 80.
654654
This sets the height for the thumbnail that will be created if the
655655
file is an image. Default is 80.
656656
.PP
657-
\fItumbnail_quality\fR
658-
.IX Subsection "tumbnail_quality"
659-
.PP
660-
.Vb 1
661-
\& $j_fu\->thumbnail_quality(70);
662-
.Ve
663-
.PP
664-
This sets the quality of the generated thumbnail. Default is 70 and it
665-
can be on a scale of 0\-100. See Image::Magick for more information.
666-
.PP
667657
\fIthumbnail_quality\fR
668658
.IX Subsection "thumbnail_quality"
669659
.PP

jQuery-File-Upload-0.18.tar.gz

-19.9 KB
Binary file not shown.

jQuery-File-Upload-0.19.tar.gz

20 KB
Binary file not shown.

lib/jQuery/File/Upload.pm

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use URI;
1616
#use LWP::UserAgent;
1717
#use LWP::Protocol::https;
1818

19-
our $VERSION = '0.18';
19+
our $VERSION = '0.19';
2020

2121
my %errors = (
2222
'_validate_max_file_size' => 'File is too big',
@@ -2102,13 +2102,6 @@ file is an image. Default is 80.
21022102
This sets the height for the thumbnail that will be created if the
21032103
file is an image. Default is 80.
21042104
2105-
=head3 tumbnail_quality
2106-
2107-
$j_fu->thumbnail_quality(70);
2108-
2109-
This sets the quality of the generated thumbnail. Default is 70 and it
2110-
can be on a scale of 0-100. See L<Image::Magick> for more information.
2111-
21122105
=head3 thumbnail_quality
21132106
21142107
$j_fu->thumbnail_quality(70);

lib/jQuery/File/Upload.pm~

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use URI;
1616
#use LWP::UserAgent;
1717
#use LWP::Protocol::https;
1818

19-
our $VERSION = '0.17';
19+
our $VERSION = '0.18';
2020

2121
my %errors = (
2222
'_validate_max_file_size' => 'File is too big',
@@ -2102,13 +2102,6 @@ file is an image. Default is 80.
21022102
This sets the height for the thumbnail that will be created if the
21032103
file is an image. Default is 80.
21042104

2105-
=head3 tumbnail_quality
2106-
2107-
$j_fu->thumbnail_quality(70);
2108-
2109-
This sets the quality of the generated thumbnail. Default is 70 and it
2110-
can be on a scale of 0-100. See L<Image::Magick> for more information.
2111-
21122105
=head3 thumbnail_quality
21132106

21142107
$j_fu->thumbnail_quality(70);

0 commit comments

Comments
 (0)