Difference between revisions of "BlueGriffon"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(bluegriffon.extensions.update.enabled)
(1.1.1 -> 1.2.1 + minor tidyup)
Line 1: Line 1:
BlueGriffon is a GUI web authoring program, similar to DreamWeaver. BlueGriffon, written by Daniel Glazman and available from http://bluegriffon.org/, is the successor to NVU and its fork KompoZer (and long before that Mozilla Composer and Netscape Composer). BlueGriffon is free open source software and is based on the Gecko rendering engine in the same way Firefox and Thunderbird are.
+
BlueGriffon is a web authoring program, similar to DreamWeaver, available from http://bluegriffon.org/. BlueGriffon is free open source software written by Daniel Glazman and is the successor to his Nvu, its fork KompoZer, and long before that Mozilla Composer and Netscape Composer. It is based on the Gecko rendering engine in the same way Firefox and Thunderbird are.
  
 
=WPKG Package=
 
=WPKG Package=
  
 
BlueGriffon uses the Inno Setup installer.
 
BlueGriffon uses the Inno Setup installer.
 +
Version 1.1 and 1.2 share the same installation options.
  
 
<source lang="xml">
 
<source lang="xml">
Line 9: Line 10:
 
id="bluegriffon"
 
id="bluegriffon"
 
name="BlueGriffon"
 
name="BlueGriffon"
revision="1"
+
revision="2"
 
reboot="false"
 
reboot="false"
 
priority="3">
 
priority="3">
Line 17: Line 18:
 
condition="versiongreaterorequal"
 
condition="versiongreaterorequal"
 
path="BlueGriffon .+"
 
path="BlueGriffon .+"
value="1.1.1" />
+
value="1.2.1" />
  
 
<install
 
<install
Line 32: Line 33:
 
=Configuration=
 
=Configuration=
  
The pref for turning off automatic updating of the app is
+
The preference for turning off automatic updating is
 
   bluegriffon.extensions.update.enabled
 
   bluegriffon.extensions.update.enabled
  
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Revision as of 17:23, 20 November 2011

BlueGriffon is a web authoring program, similar to DreamWeaver, available from http://bluegriffon.org/. BlueGriffon is free open source software written by Daniel Glazman and is the successor to his Nvu, its fork KompoZer, and long before that Mozilla Composer and Netscape Composer. It is based on the Gecko rendering engine in the same way Firefox and Thunderbird are.

WPKG Package

BlueGriffon uses the Inno Setup installer. Version 1.1 and 1.2 share the same installation options.

<package
	id="bluegriffon"
	name="BlueGriffon"
	revision="2"
	reboot="false"
	priority="3">

	<check
		type="uninstall"
		condition="versiongreaterorequal"
		path="BlueGriffon .+"
		value="1.2.1" />

	<install
		cmd="%SOFTWARE%\bluegriffon\setup-bluegriffon.exe /SILENT" />

	<upgrade
		cmd="%SOFTWARE%\bluegriffon\setup-bluegriffon.exe /SILENT" />
			
	<remove
		cmd="%PROGRAMFILES%\bluegriffon\unins000.exe /silent /log /norestart" />
</package>

Configuration

The preference for turning off automatic updating is

 bluegriffon.extensions.update.enabled