Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | v1.3.2.0 (64-bits) |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | release | release-64bits | v1.3.2.0 | v1.3.2.0-64 |
Files: | files | file ages | folders |
SHA1: |
d556f084051fb44d5779d82842af14d4 |
User & Date: | tinus 2019-03-16 11:02:44.314 |
Original Comment: | Version 1.3.2.0. Changed setup to accomodate for Notepad++'s changes in plugin folder structure, and introduced 64-bits version. |
Context
2019-03-16
| ||
11:02 | v1.3.2.0 (64-bits) Leaf check-in: d556f08405 user: tinus tags: release, release-64bits, v1.3.2.0, v1.3.2.0-64 | |
2019-03-15
| ||
21:11 | New branch `release-64bits` to publish 64-bits version of the plugin. check-in: ff2fa8f86e user: tinus tags: release-64bits | |
Changes
Name change from PreviewHTML64.dll to PreviewHTML.dll.
cannot compute difference between binary files
Changes to ReleaseNotes.txt.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | Preview HTML plugin for Notepad++ ================================= http://fossil.2of4.net/npp_preview v1.3.2.0, 2019-03-16 -------------------- - Published a first official 64-bits version. v1.3.1.0, 2013-07-14 -------------------- - Fixed: IE 10 was not properly recognized. - Added: possibility to override the installed version of IE using via [settings]. v1.3.0.0, 2013-03-03 -------------------- - Added: ability to define output filters, that can convert source code to HTML before previewing. - Added: menu options to edit the settings and filter definitions. - Added: 'freeze' checkbox, which suspends refreshing the preview window. v1.2.1.0, 2013-01-29 -------------------- - Fixed: 'Unknown exception' on close of each document in certain cases. v1.2.0.0, 2013-01-26 -------------------- - Added: when switching documents, the scroll position of the preview is remembered, and restored whenever you switch back to that document. [cfc74baf4b] - Added: when changing the document, the preview is automatically refreshed. [20d1203257] By default, the plugin waits for 1000 ms (= 1 second), but this can be adjusted by creating a settings file "$(PLUGINSCONFIG)\PreviewHTML\Settings.ini", and adding the following lines to it, replacing 1000 by the number of milliseconds you want it to wait. If you want to disable the autorefresh, specify an interval of 0 ms. [Autorefresh] Interval=1000 v1.1.1.0, 2013-01-24 -------------------- - Bugfix: the plugin crashed if the registry key indicating which version of IE should be used, didn’t exist yet. v1.1.0.0, 2013-01-20 -------------------- - Added menu items to configure which version of IE should be emulated for previewing. Fixed bug [1b34ee74aa]. |
Changes to filters.sample.ini.
> > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | [--- Information ---] This SAMPLE file contains the filters to be run before previewing a file in Notepad++. Save this file as 'filters.ini' (instead of 'filters.sample.ini') to see it in action. Each section below defines a custom filter. The preview plugin decides whether or not to run each filter based on the file's extension OR the active highlighter language. The first filter encountered is run, any other matching filters are ignored. Any filter can be disabled by commenting it out, or by starting the name with a '-' hyphen; for example [-PHP] instead of [PHP]. [PHP] ; PHP is a popular scripting language, mostly used for generating HTML pages on a web server. ; See http://www.php.net/manual/en/features.commandline.options.php ;Extension=.php4, .php5, .php Language=PHP Command=php-cgi -q "%1" [Fossil-wiki] ; Fossil is a version control system, which also provides wiki. This filter will call fossil to ; convert a .wiki file to HTML. ; See http://fossil-scm.org/fossil/doc/trunk/www/wikitheory.wiki ; (and http://fossil-scm.org/fossil/wiki_rules for the syntax) Extension=.wiki Command=fossil test-wiki-render "%1" |