Difference between revisions of "BlueGriffon"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Mentioned Mozilla Composer and Netscape Composer)
(bluegriffon.extensions.update.enabled)
Line 2: Line 2:
  
 
=WPKG Package=
 
=WPKG Package=
 
=BlueGriffon 1.1.x=
 
  
 
BlueGriffon uses the Inno Setup installer.
 
BlueGriffon uses the Inno Setup installer.
Line 32: Line 30:
 
</source>
 
</source>
  
 +
=Configuration=
 +
 +
The pref for turning off automatic updating of the app is
 +
  bluegriffon.extensions.update.enabled
  
 
[[Category:Silent Installers]]
 
[[Category:Silent Installers]]

Revision as of 16:20, 25 August 2011

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.

WPKG Package

BlueGriffon uses the Inno Setup installer.

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

	<check
		type="uninstall"
		condition="versiongreaterorequal"
		path="BlueGriffon .+"
		value="1.1.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 pref for turning off automatic updating of the app is

 bluegriffon.extensions.update.enabled