Check-in [088b31f9e1]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:v1.3.0.0
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | publish | v1.3.0.0
Files: files | file ages | folders
SHA1: 088b31f9e198d0f1d91b82d72e211a27c514c5cc
User & Date: Martijn 2013-03-03 12:55:11
Context
2013-07-14
09:48
v1.3.1.0 Closed-Leaf check-in: fb02a79e74 user: Martijn tags: publish, v1.3.1.0
2013-03-03
12:55
v1.3.0.0 check-in: 088b31f9e1 user: Martijn tags: publish, v1.3.0.0
2013-01-29
21:44
Version v1.2.1.0 check-in: 0583210e3d user: Martijn tags: publish, v1.2.1.0
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes 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
Preview HTML plugin for Notepad++
=================================
http://fossil.2of4.net/npp_preview







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




>
>
>
>
>
>


|







|
|
|
|
|
|







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
Preview HTML plugin for Notepad++
=================================
http://fossil.2of4.net/npp_preview

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 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"