Post-release version bump.
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2231 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
		
							parent
							
								
									511b495a19
								
							
						
					
					
						commit
						25dc10c65c
					
				@ -2,6 +2,9 @@
 | 
			
		||||
 | 
			
		||||
 * scintilla/include/Platform.h: Fix definition of PLAT_GTK_WIN32 on
 | 
			
		||||
                                 Windows to fix Copy&Paste problems.
 | 
			
		||||
 * New release: Geany 0.13 "Vensell".
 | 
			
		||||
 * configure.in, geany.nsi, geany_private.rc, win32-config.h,
 | 
			
		||||
   src/geany.h: Post-release version bump.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
2008-02-04  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
 | 
			
		||||
 | 
			
		||||
@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
 | 
			
		||||
dnl $Id$
 | 
			
		||||
 | 
			
		||||
AC_INIT(configure.in)
 | 
			
		||||
AM_INIT_AUTOMAKE(geany, 0.13)
 | 
			
		||||
AM_INIT_AUTOMAKE(geany, 0.14)
 | 
			
		||||
 | 
			
		||||
AM_CONFIG_HEADER(config.h)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -8,8 +8,8 @@
 | 
			
		||||
; helper defines  ;
 | 
			
		||||
;;;;;;;;;;;;;;;;;;;
 | 
			
		||||
!define PRODUCT_NAME "Geany"
 | 
			
		||||
!define PRODUCT_VERSION "0.13svn_r2188"
 | 
			
		||||
!define PRODUCT_VERSION_ID "0.12.9.4"
 | 
			
		||||
!define PRODUCT_VERSION "0.14"
 | 
			
		||||
!define PRODUCT_VERSION_ID "0.14.0.0"
 | 
			
		||||
!define PRODUCT_PUBLISHER "Enrico Troeger"
 | 
			
		||||
!define PRODUCT_WEB_SITE "http://geany.uvena.de"
 | 
			
		||||
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\Geany.exe"
 | 
			
		||||
@ -44,7 +44,7 @@ VIProductVersion "${PRODUCT_VERSION_ID}"
 | 
			
		||||
VIAddVersionKey "ProductName" "${PRODUCT_NAME}"
 | 
			
		||||
VIAddVersionKey "FileVersion" "${PRODUCT_VERSION}"
 | 
			
		||||
VIAddVersionKey "ProductVersion" "${PRODUCT_VERSION}"
 | 
			
		||||
VIAddVersionKey "LegalCopyright" "Copyright 2005-2008 by Enrico Tröger"
 | 
			
		||||
VIAddVersionKey "LegalCopyright" "Copyright 2005-2008 by the Geany developers"
 | 
			
		||||
VIAddVersionKey "FileDescription" "${PRODUCT_NAME} Installer"
 | 
			
		||||
 | 
			
		||||
;;;;;;;;;;;;;;;;
 | 
			
		||||
 | 
			
		||||
@ -5,8 +5,8 @@
 | 
			
		||||
A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "../pixmaps/geany.ico"
 | 
			
		||||
 | 
			
		||||
1 VERSIONINFO
 | 
			
		||||
FILEVERSION 0,13,0,0
 | 
			
		||||
PRODUCTVERSION 0,13,0,0
 | 
			
		||||
FILEVERSION 0,14,0,0
 | 
			
		||||
PRODUCTVERSION 0,14,0,0
 | 
			
		||||
FILETYPE VFT_APP
 | 
			
		||||
{
 | 
			
		||||
  BLOCK "StringFileInfo"
 | 
			
		||||
@ -14,14 +14,14 @@ FILETYPE VFT_APP
 | 
			
		||||
		 BLOCK "040704E4"
 | 
			
		||||
		 {
 | 
			
		||||
			 VALUE "CompanyName", ""
 | 
			
		||||
			 VALUE "FileVersion", "0.13"
 | 
			
		||||
			 VALUE "FileVersion", "0.14"
 | 
			
		||||
			 VALUE "FileDescription", "Geany"
 | 
			
		||||
			 VALUE "InternalName", "geany"
 | 
			
		||||
			 VALUE "LegalCopyright", "Copyright 2005-2008 by Enrico Troeger"
 | 
			
		||||
			 VALUE "LegalCopyright", "Copyright 2005-2008 by the Geany developers"
 | 
			
		||||
			 VALUE "LegalTrademarks", ""
 | 
			
		||||
			 VALUE "OriginalFilename", "geany"
 | 
			
		||||
			 VALUE "ProductName", "geany"
 | 
			
		||||
			 VALUE "ProductVersion", "0.13"
 | 
			
		||||
			 VALUE "ProductVersion", "0.14"
 | 
			
		||||
		 }
 | 
			
		||||
	 }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -44,7 +44,7 @@
 | 
			
		||||
// listed in the documentation should not be changed ;-)
 | 
			
		||||
#define GEANY_FILEDEFS_SUBDIR			"filedefs"
 | 
			
		||||
#define GEANY_TEMPLATES_SUBDIR			"templates"
 | 
			
		||||
#define GEANY_CODENAME					"Vensell"
 | 
			
		||||
#define GEANY_CODENAME					"Selit"
 | 
			
		||||
#define GEANY_HOMEPAGE					"http://geany.uvena.de/"
 | 
			
		||||
#define GEANY_PROJECT_EXT				"geany"
 | 
			
		||||
#define GEANY_USE_WIN32_DIALOG			0
 | 
			
		||||
 | 
			
		||||
@ -289,7 +289,7 @@
 | 
			
		||||
/* #undef TM_IN_SYS_TIME */
 | 
			
		||||
 | 
			
		||||
/* Version number of package */
 | 
			
		||||
#define VERSION "0.13"
 | 
			
		||||
#define VERSION "0.14"
 | 
			
		||||
 | 
			
		||||
/* Define to empty if `const' does not conform to ANSI C. */
 | 
			
		||||
/* #undef const */
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user