Notable changes: * Version 3.2 Patch 0 - 2020-01-03 - IMPROVEMENT: Add support for events spanning multiple days (with AT and DURATION). Add trigeventstart() and trigeventduration() introspection functions; see "MULTI-DAY EVENTS" in the man page. - IMPROVEMENT: Add introspection functions trigback(), trigdelta(), trigduration(), trigfrom(), trigpriority(), trigrep(), trigscanfrom(), trigtimedelta(), trigtimerep(), and triguntil(). See man page for details; thanks to Tim Chase for the suggestion. - CHANGE: Modify addition so that previously-illegal combinations TIME + TIME, TIME + DATETIME and DATETIME + TIME are now allowed. Also allow DATETIME - TIME. If t1 and t2 are expressions of type TIME and dt is an expression of type DATETIME, then the following are now equivalent (before, the expressions on the left-hand side would fail with a "Type mismatch" error.) t1 + t2 == t1 + coerce("INT", t2) dt + t2 == dt + coerce("INT", t2) t1 + dt == coerce("INT", t1) + dt dt - t2 == dt - coerce("INT", t2) - BUG FIX: Specifying a DURATION without an AT clause results in an error. Before, it would be accepted but not do anything useful. - BUG FIX: TkRemind: Fix startup failure of TkRemind if options are at default. :( * Version 3.1 Patch 17 - 2019-11-15 - SYNTACTIC SUGAR: Make "SCANFROM -n" the same as "SCANFROM [today() - n]" - BUG FIX: Fix failure when specifying a Jahrzeit in Adar. Fix courtesy of Dov Feldstern * Version 3.1 Patch 16 - 2018-11-09 - IMPROVEMENT: Add patch from Stephen Morgan to calculate astronomical and nautical twilight in addition to civil twilight. - IMPROVEMENT: Remind accepts DATETIME constants in ISO-8601 format and can optionally be configured to output them that way too.
34 lines
1.4 KiB
Text
34 lines
1.4 KiB
Text
$NetBSD: patch-ae,v 1.5 2020/01/07 10:09:38 kim Exp $
|
|
|
|
--- man/cm2rem.1.orig 2020-01-03 20:14:53.000000000 +0200
|
|
+++ man/cm2rem.1 2020-01-07 11:49:19.026503238 +0200
|
|
@@ -1,23 +1,23 @@
|
|
.TH CM2REM 1 "18 October 1999"
|
|
.UC 4
|
|
.SH NAME
|
|
-cm2rem.tcl \- Convert Sun's "cm" input file to Remind format
|
|
+cm2rem \- Convert Sun's "cm" input file to Remind format
|
|
.SH SYNOPSIS
|
|
-.B cm2rem.tcl < cm_file > remind_file
|
|
+.B cm2rem < cm_file > remind_file
|
|
.SH DESCRIPTION
|
|
-\fBcm2rem.tcl\fR reads the Sun calendar manager data file and converts
|
|
-it into a \fBRemind\fR script. Note that \fBcm2rem.tcl\fR can convert
|
|
+\fBcm2rem\fR reads the Sun calendar manager data file and converts
|
|
+it into a \fBRemind\fR script. Note that \fBcm2rem\fR can convert
|
|
\fIonly\fR version 3 calendar manager files. If you are using version 4
|
|
files, there should be a system utility to convert them to version 3 files.
|
|
.SH AUTHOR
|
|
-\fBcm2rem.tcl\fR was written by Dianne Skoll <dianne@skoll.ca>.
|
|
+\fBcm2rem\fR was written by Dianne Skoll <dianne@skoll.ca>.
|
|
.SH BUGS
|
|
Not all of the Sun calendar manager options are respected. In particular,
|
|
nothing is done for e-mail actions. Also, the resulting Remind script
|
|
is not editable with \fBTkRemind\fR; you can only edit it with a text
|
|
editor.
|
|
.PP
|
|
-\fBcm2rem.tcl\fR requires Tcl/Tk version 8.0 or higher. The
|
|
+\fBcm2rem\fR requires Tcl/Tk version 8.0 or higher. The
|
|
\fBtclsh\fR interpreter must be on your \fBpath\fR.
|
|
|
|
.SH SEE ALSO
|