Post-release version bump.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5023 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2010-06-12 13:42:50 +00:00
parent 7d69bb708e
commit 8e1c7ffa32
9 changed files with 917 additions and 914 deletions

View File

@ -6,6 +6,9 @@
Change the RequestExecutionLevel for the Windows installer to Change the RequestExecutionLevel for the Windows installer to
'highest'. 'highest'.
* New release: Geany 0.19 "Vellam". * New release: Geany 0.19 "Vellam".
* configure.ac, doc/geany.html, doc/geany.txt, geany.nsi,
geany_private.rc, win32-config.h, wscript, src/geany.h:
Post-release version bump.
2010-06-10 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com> 2010-06-10 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>

View File

@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
dnl $Id$ dnl $Id$
AC_INIT(configure.ac) AC_INIT(configure.ac)
AM_INIT_AUTOMAKE(geany, 0.19) AM_INIT_AUTOMAKE(geany, 0.20)
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
.. |(version)| replace:: 0.19 .. |(version)| replace:: 0.20
======= =======
Geany Geany
@ -2755,7 +2755,7 @@ You can also use underlines in the labels to set mnemonic characters.
Configuration Files Configuration Files
``````````````````` ```````````````````
The configurable Build Menu capability was introduced in Geany V0.19 and The configurable Build Menu capability was introduced in Geany 0.19 and
required a new section to be added to the configuration files (See required a new section to be added to the configuration files (See
`Preferences File Format`_). Geany will still load older format project, `Preferences File Format`_). Geany will still load older format project,
preferences and filetype file settings and will attempt to map them into the new preferences and filetype file settings and will attempt to map them into the new
@ -3640,7 +3640,7 @@ lexer_filetype
[build_settings] Section [build_settings] Section
```````````````````````` ````````````````````````
As of Geany v0.19 this section is supplemented by the `[build-menu] Section`_. As of Geany 0.19 this section is supplemented by the `[build-menu] Section`_.
Values that are set in the [build-menu] section will override those in this section. Values that are set in the [build-menu] section will override those in this section.
error_regex error_regex

View File

@ -33,8 +33,8 @@ RequestExecutionLevel highest ; set execution level for Windows Vista
; helper defines ; ; helper defines ;
;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;
!define PRODUCT_NAME "Geany" !define PRODUCT_NAME "Geany"
!define PRODUCT_VERSION "0.19" !define PRODUCT_VERSION "0.20"
!define PRODUCT_VERSION_ID "0.19.0.0" !define PRODUCT_VERSION_ID "0.20.0.0"
!define PRODUCT_PUBLISHER "The Geany developer team" !define PRODUCT_PUBLISHER "The Geany developer team"
!define PRODUCT_WEB_SITE "http://www.geany.org/" !define PRODUCT_WEB_SITE "http://www.geany.org/"
!define PRODUCT_DIR_REGKEY "Software\Geany" !define PRODUCT_DIR_REGKEY "Software\Geany"

View File

@ -5,8 +5,8 @@
A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "../icons/geany.ico" A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "../icons/geany.ico"
1 VERSIONINFO 1 VERSIONINFO
FILEVERSION 0,19,0,0 FILEVERSION 0,20,0,0
PRODUCTVERSION 0,19,0,0 PRODUCTVERSION 0,20,0,0
FILETYPE VFT_APP FILETYPE VFT_APP
{ {
BLOCK "StringFileInfo" BLOCK "StringFileInfo"
@ -14,14 +14,14 @@ FILETYPE VFT_APP
BLOCK "040704E4" BLOCK "040704E4"
{ {
VALUE "CompanyName", "" VALUE "CompanyName", ""
VALUE "FileVersion", "0.19" VALUE "FileVersion", "0.20"
VALUE "FileDescription", "Geany" VALUE "FileDescription", "Geany"
VALUE "InternalName", "geany" VALUE "InternalName", "geany"
VALUE "LegalCopyright", "Copyright 2005-2010 by the Geany developers" VALUE "LegalCopyright", "Copyright 2005-2010 by the Geany developers"
VALUE "LegalTrademarks", "" VALUE "LegalTrademarks", ""
VALUE "OriginalFilename", "geany" VALUE "OriginalFilename", "geany"
VALUE "ProductName", "geany" VALUE "ProductName", "geany"
VALUE "ProductVersion", "0.19" VALUE "ProductVersion", "0.20"
} }
} }
} }

View File

@ -47,7 +47,7 @@
* listed in the documentation should not be changed */ * listed in the documentation should not be changed */
#define GEANY_FILEDEFS_SUBDIR "filedefs" #define GEANY_FILEDEFS_SUBDIR "filedefs"
#define GEANY_TEMPLATES_SUBDIR "templates" #define GEANY_TEMPLATES_SUBDIR "templates"
#define GEANY_CODENAME "Vellam" #define GEANY_CODENAME "Disra"
#define GEANY_HOMEPAGE "http://www.geany.org/" #define GEANY_HOMEPAGE "http://www.geany.org/"
#define GEANY_STRING_UNTITLED _("untitled") #define GEANY_STRING_UNTITLED _("untitled")
#define GEANY_DEFAULT_DIALOG_HEIGHT 350 #define GEANY_DEFAULT_DIALOG_HEIGHT 350

View File

@ -314,7 +314,7 @@
/* #undef volatile */ /* #undef volatile */
/* Version number of package */ /* Version number of package */
#define VERSION "0.19" #define VERSION "0.20"
#define REVISION "-1" #define REVISION "-1"

View File

@ -55,7 +55,7 @@ from TaskGen import taskgen, feature
APPNAME = 'geany' APPNAME = 'geany'
VERSION = '0.19' VERSION = '0.20'
srcdir = '.' srcdir = '.'
blddir = '_build_' blddir = '_build_'