Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
Bump PKGREVISION
|
|
Not exactly sure why, but it was repeatable, so add a patch that makes
sure SIZE_MAX is defined.
|
|
Change log:
Added Support for the Following New Printers:
- HP Officejet Pro 8730
- HP Officejet Pro 8210 Printer
- HP Pagewide P55250
- HP Pagewide MFP P57750
- HP Pagewide Color 556
- HP Pagewide Color MFP 586
- HP Pagewide Color flow MFP 586
- HP DeskJet Ink Advantage Ultra 5730 All-in-One Printer
- HP Color Laserjet MFP M377 fnw
|
|
|
|
|
|
|
|
Release 0.46.0
core:
* cairo: fix bug in setAntialias()
* cairo: Fix tiling patterns with BBox with non-zero x,y
* cairo: try finding glyphs in substitute fonts by unicode value. Bug #96994
* Added XRef modification flag
* Added DocInfo setters & getters
* Be less strict when parsing FitH Link destinations. Bug #96661
utils:
* pdftocairo: revert the use of groups for blending into white page
* pdftocairo: Use fprintf for printing errors
* pdfinfo: Don't print pdf info when printing metadata, javascript, or structure. Bug #96801
glib:
* Added document property setters & simplified getters
* make document metatag gobject properties writeable
cpp:
* pass len to GooString constructor in detail::ustring_to_unicode_GooString(). Bug #96426
* Added functions to save a document
* Added document property setters & getters
qt4:
* Added document property setters & simplified getters
qt5:
* Added document property setters & simplified getters
build system:
* configure: Don't use -fPIC on cygwin
* configure: Work with non gnu greps
Release 0.45.0
core:
* SplashOutputDev: Fix iccTransform + splashModeXBGR8
* Fix memory leaks
* Fix crash in broken files. Bug #95567. Bug #96027
* Emulate some non portable glibc functions when not available
utils:
* pdftohtml: Fix crash in broken files. Bug #95563
* pdfinfo: convert dates to local time zone
* pdfinfo: add -isodates for printing dates in ISO-8601 format
* pdfinfo: Fix memory leaks
glib:
* return date in UTC instead of local time. Bug #94173
cpp:
* switched from detail::convert_date() to core's dateStringToTime()
|
|
with the help of many new contributors.
As there are so many improvements, patches and fixes that made it into this release, we are not able to list them, so please stick with the svn log.
|
|
The package introduces a command \shadowtext, which adds a drop
shadow to the text that is given as its argument. The colour and
positioning of the shadow are customisable.
|
|
Found out by trying to use it.
Bump PKGREVISION.
|
|
The NCCtools bundle contains many packages for general use under LaTeX.
|
|
Found by trying to use it.
Bump PKGREVISION.
|
|
Upstream changes:
CHANGES IN knitr VERSION 1.13
NEW FEATURES
code chunks that generate metadata may be cached now; it requires htmlwidgets >= v0.6 and htmltools >= 0.3.3 if you cache code chunks that contain HTML widgets or Shiny inputs/outputs (#1158)
when the output format is not HTML, HTML widgets used to fail to render; now knitr will try to generate static screenshots for HTML widgets automatically using the webshot package; you can specify alternative screenshots via the chunk option screenshot.alt (which takes a character vector of image paths), and pass more options to webshot::webshot() via the chunk option screenshot.opts, e.g. list(delay = 3, cliprect = 'viewport')
added two functions include_url() and include_app() to embed URLs in the output (the latter is for Shiny app URLs); when the output format is HTML, iframe will be used; otherwise screenshots of the URLs will be used
screenshotting for HTML widgets and URLs can be forced for all output formats via the chunk option screenshot.force = TRUE; if you set the chunk option screenshot.force = FALSE, knitr will just render these content normally and not take screenshots
added a new chunk option fig.link, which can be used to attach hyperlinks on figures, e.g. you can add a link to a screenshot of a Shiny app so that readers can check out the actual live app after clicking on the static screenshot (this chunk option currently only works for Markdown and LaTeX output)
syntactical errors in code chunks will be allowed when the chunk option error = TRUE and the package version of evaluate is at least 0.8.4; previously knitr would just stop on parsing errors (hadley/evaluate#65)
PNG/JPEG images included via include_graphics() also respects the chunk option dpi now; if it is numeric and the chunk option out.width is not set, the output width (in inches) of an image will be automatically calculated from the actual width (in pixels) divided by dpi; note this feature requires the packages png and/or jpeg to be installed, and you can disable the feature using dpi = NA (thanks, @hadley, rstudio/bookdown#38)
added a new hook function named evaluate in knit_hooks so that users can redefine a evaluator to evaluate the code chunk; the default is evaluate::evaluate(), and your custom evaluator must be compatible with evaluate::evaluate() in terms of the argument names and the data structure of the returned value (a list of values with special classes)
added a new function combine_words() to combine multiple words / phrases into a single string, which may be useful in inline R expressions, e.g. combine_words(c('a', 'b', 'c')) returns a, b, and c
render_markdown() gained a new argument fence_char to customize the character to be used as the code blocks fence, e.g. it can be a backtick, or a tilde, depending on the Markdown rendering engine (thanks, @tinyheero, #1161)
the pandoc() function no longer assumes Markdown input (thanks, @scls19fr, #1170)
added a new function knit_meta_add() so that users can manually inject metadata into the current knitr session
for the tikz engine, if fig.ext = 'svg', dvisvgm will be called to convert the DVI output of TikZ to SVG; you need to install dvisvgm, and Windows users have to install GhostScript as well (thanks, @dkilfoyle, #1177)
new js and css engines which surround their content with <script> and <style> tags respecitvely, and print no output when not in an HTML document
for LaTeX tables, kable() supports short captions now via the caption.short argument, e.g. kable(..., caption = 'A long caption', caption.short = 'A short caption') (thanks, @ismayc, #1199)
added three global R options knitr.sanitize.errors, knitr.sanitize.warnings, and knitr.sanitize.messages to mask or change the messages, e.g. if options(knitr.sanitize.errors = TRUE) and the chunk option error = TRUE, the actual error message will be replaced by a character string like "An error occurred"; these options can also accept character values so you can customize the messages to be displayed, e.g. options(knitr.sanitize.warnings = 'You had a warning from the code'); see rstudio/shiny#1123 for the motivation of these options
BUG FIXES
when the chunk option cache.rebuild = TRUE, the cache database should be rewritten (thanks, Oleg Mayba)
include_graphics() did not work in inline R expressions (thanks, @WastlM, #1166)
the cex parameter was not correctly restored in the case of opts_knit$set(global.par = TRUE) (http://stackoverflow.com/q/35606445/559676)
for Rnw documents, when there are two instances of \documentclass{}, knitr might mistakenly treats the second instance as the the actual command to declare the document class (thanks, #1180, @ekstroem)
corrected the environment for evaluating R scripts in stitch_rhtml() and stitch_rmd() (thanks, @Hughan, #1207)
MAJOR CHANGES
the default value of the package option eval.after is changed from NULL to fig.cap, i.e. the figure caption will always be evaluated after a code chunk is evaluated (thanks, @JoshOBrien, #1165)
the function eclipse_theme() has been removed since the website eclipsecolorthemes.org has been down for a long time
|
|
Bump PKGREVISION
|
|
|
|
p5-Package-DeprecationManager-[0-9]*
p5-Module-Pluggable-[0-9]*
|
|
|
|
Changes:
CHANGES IN V1.10.0
- texttotext: Added new filter for text-only printers written
in C, to use the CUPS library to access the print queue's
PPD file, with a lot of options to fit practically all
printer models amd paper sizes, support for CUPS' page
management options, and support for configuring the print
queue and controlling the options by the PPD file. The PPD
is now generated on-the-fly by cupsfilters.drv.
- textonly: Removed the old script-based filter and its PPD
for text-only printers.
- rastertops: Added new filter to turn PWG Raster into
PostScript, in preparation for MuPDF support. Thanks to
Pranjal Bhor for contributing this as part of his Google
Summer of Code project.
- gstoraster, gstopxl, gstopdf, pstopdf: Integrated
functionality of script-based filters pstopdf and gstopxl
into gstoraster filter as script-based filters cannot access
the print queue's PPD file with current CUPS due to change
of PPD file permissions. To make gstoraster always produce
the correct output format (CUPS/PWG Raster, PDF, PCL-XL) it
is called via new wrapper scripts (gstopdf, gstopxl) which
set an environment variable telling the format. The old
filter scripts got removed.
- imagetops, texttops: Do not use $0 in the wrapper scripts,
when CUPS calls filters, it passes the queue name as $0, not
path and name of the called filter.
- cups-browsed: When creating local queues for discovered IPP
network printers always create PPD files and if the
information supplied by the printer via IPP is insufficient
use information from the DNS-SD entry or default values
suitable for most printers. Use System V interface scripts
only on explicit request in cups-browsed.conf. This change
is to address the fact that System V interface script
support is removed from CUPS 2.2.x and later for security
reasons.
- pstopdf: Make the filter only get installed if Ghostscript is
present and also moved its conversion rules into the
cupsfilters-ghostscript.convs file.
- cups-browsed: Fixed crash when trying to get debugg logging
both to the terminal and into a file.
- libcupsfilters: Fixed crash of pdftoraster when the color
space is an RGB space (3 colors) with 1 bit color
depth. Here we need to add one bit to the pixels (to get 4
bits per pixel) to align the pixels with the bytes.
- cups-browsed: From cups-browsed.service removed the unneeded
"Wants=cups.service" as we have "Requires=cups.service"
(Debian bug #827455, #827457).
- foomatic-rip: Updated man page for removed page logging
facility.
- pdftops: Also added Dell to the list of manufacturers whose
printers need Poppler's PostScript to work around their
PostScript interpreter bugs (Debian bug #827040).
|
|
|
|
|
|
Restrict OPJ_STATIC definition to Windows (as the comment suggests).
This avoid linking errors with openjpeg-2.1.1.
Bump PKGREVISION
|
|
|
|
This package provides a method for defining category code table
stacks in LuaTeX. It builds on code provided by the 2015/10/01
release of LaTeX2e (also available as ltluatex.sty for plain
users). It is required by the luatexbase package (v1.0 onward)
which uses ctablestack to provide a back-compatibility form of
this concept.
|
|
|
|
Add tex-luatex85{,-doc} 1.0 - pdfTeX aliases for LuaTeX
Add tex-luatex-def{,-doc} 0.01b - LuaTeX option file for color and graphics
|
|
|
|
Fixes PR pkg/51338
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ensure both SunOS and NetBSD builds are fixed.
|
|
|
|
|
|
|
|
ABI depends and perform a PKGREVISION bump for dependents.
Noticed by OSX binary package users.
|
|
No PKGREVISION bump required as wouldn't build with older versions.
|
|
|
|
color tag. Bump revision.
|
|
|
|
|
|
|
|
|
|
Sample configuration files for LaTeX color and graphics
Add tex-dvisvgm-def{,-doc} 1.0a
Colour and Graphics support for dvisvgm
|
|
|