Release 2.9.2-1
SVN revision: 2457
This commit is contained in:
+19
-4
@@ -1,23 +1,38 @@
|
||||
Checklist for new ELOG version
|
||||
==============================
|
||||
|
||||
On PC6562:
|
||||
On RS32:
|
||||
|
||||
- Put all new options in doc/config.html
|
||||
- Increse version in elogd.c and elog.c
|
||||
- Increase version in elogd.h
|
||||
- Do the same in doc/index.html and index_nd.html
|
||||
- Modify ChangeLog
|
||||
- Add release date to ChangeLog
|
||||
- Do a "make indent"
|
||||
- Do a "make loc"
|
||||
|
||||
On VPC6562-1:
|
||||
|
||||
- svn update
|
||||
- make loc
|
||||
- Translate new strings in eloglang.german
|
||||
- make indent
|
||||
- svn -m "Run indent" commit
|
||||
|
||||
On RS32:
|
||||
|
||||
- svn update
|
||||
- c:\elog> svn ci -m "Release x.x.x-y"
|
||||
|
||||
On VPC6562-1:
|
||||
|
||||
- open VS 2008 command window, build xxx-1 in c:\elog
|
||||
- copy index_nd.html to index.html on web server
|
||||
|
||||
|
||||
On midas.psi.ch:
|
||||
|
||||
- svn update
|
||||
- Do a "make indent"
|
||||
- Commit formatted C files
|
||||
- Increase version in elog.spec
|
||||
- klog ritt
|
||||
- ./build x.x.x 1
|
||||
|
||||
@@ -1,3 +1,21 @@
|
||||
Version 2.9.2, released April 27th 2012
|
||||
=======================================
|
||||
|
||||
- Implemented "Preset on edit"
|
||||
- Increased stack size under Windows
|
||||
- Increased MAX_PARAM
|
||||
- Added escape char possibility to "\#" for substitutions
|
||||
- Abort program start if password file is write protected
|
||||
- Show error "File not found" on "Preset text" only if text is a file
|
||||
- Fixed problem with CSV import and first two lines disappearing
|
||||
- Added RSS description
|
||||
- Remove cookies when user is logged out
|
||||
- Delete always messages together with their replies
|
||||
- Strip html only for html encoded entries
|
||||
- Added nowrap to all date/time attributes
|
||||
- Apply reverse sorting to all attribute types
|
||||
- Added "login user" check (needed for global password files)
|
||||
|
||||
Version 2.9.1, released February 20th 2012
|
||||
==========================================
|
||||
|
||||
|
||||
+1
-1
@@ -28,7 +28,7 @@
|
||||
[<a class="nav" href="#links">Links</a>] * </div>
|
||||
<P class="Sub">Home of the <i>Electronic Logbook</i> package by <a href="mailto:Stefan.Ritt@psi.ch">
|
||||
Stefan Ritt</a></P>
|
||||
<div class="version">Current version is : 2.9.1</div>
|
||||
<div class="version">Current version is : 2.9.2</div>
|
||||
<center>
|
||||
<a href="http://www.softpedia.com/progClean/ELOG-Clean-30897.html"><img border="0" src="http://www.softpedia.com/images/spyward/softpedia_free_award_f.gif" alt="certificate" title="certificate" /></a>
|
||||
|
||||
|
||||
+1
-1
@@ -28,7 +28,7 @@
|
||||
[<a class="nav" href="#links">Links</a>] * </div>
|
||||
<P class="Sub">Home of the <i>Electronic Logbook</i> package by <a href="mailto:Stefan.Ritt@psi.ch">
|
||||
Stefan Ritt</a></P>
|
||||
<div class="version">Current version is : 2.9.1</div>
|
||||
<div class="version">Current version is : 2.9.2</div>
|
||||
<center>
|
||||
<a href="http://www.softpedia.com/progClean/ELOG-Clean-30897.html"><img border="0" src="http://www.softpedia.com/images/spyward/softpedia_free_award_f.gif" alt="certificate" title="certificate" /></a>
|
||||
</center>
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
[<a class="nav" href="#browse">Browsing</a>]
|
||||
[<a class="nav" href="#add">Adding</a>]
|
||||
[<a class="nav" href="#misc">Misc.</a>]
|
||||
[<a class="nav" href="#rss">RSS</a>]
|
||||
* </div>
|
||||
<p>
|
||||
<div class=Sub><i>How to get the most from your ELOG server</i></div>
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
\********************************************************************/
|
||||
|
||||
/* Version of ELOG */
|
||||
#define VERSION "2.9.1"
|
||||
#define VERSION "2.9.2"
|
||||
|
||||
#define _GNU_SOURCE
|
||||
#include <stdio.h>
|
||||
|
||||
@@ -43,6 +43,7 @@
|
||||
D545158F1399A23B0037D7FB /* elogd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = elogd.h; path = /elog/src/elogd.h; sourceTree = "<absolute>"; };
|
||||
D54515901399A23B0037D7FB /* regex.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = regex.c; path = /elog/src/regex.c; sourceTree = "<absolute>"; };
|
||||
D54515911399A23B0037D7FB /* regex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = regex.h; path = /elog/src/regex.h; sourceTree = "<absolute>"; };
|
||||
D5AC5BF9154AC7200018DD90 /* config.html */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.html; name = config.html; path = /elog/doc/config.html; sourceTree = "<absolute>"; };
|
||||
D5F11B9113AFA164002CE8BF /* elogd.cfg */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = elogd.cfg; path = /elogdemo/elogd.cfg; sourceTree = "<absolute>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
@@ -94,6 +95,7 @@
|
||||
D5F11B9013AFA146002CE8BF /* Resources */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
D5AC5BF9154AC7200018DD90 /* config.html */,
|
||||
D51F4A9414F27F4400CB29E9 /* index_nd.html */,
|
||||
D51F4A9214F27F3C00CB29E9 /* index.html */,
|
||||
D528A7C514F278DA00D33974 /* checklist.txt */,
|
||||
|
||||
Reference in New Issue
Block a user