Skip to content

Commit 1d778f4

Browse files
author
csaba
committed
* *.tcl: Bumped the version number to 3.12; updated the
* COPYRIGHT.txt: copyright information. * README.txt:
1 parent 9144f88 commit 1d778f4

File tree

6 files changed

+26
-25
lines changed

6 files changed

+26
-25
lines changed

modules/mentry/COPYRIGHT.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Multi-entry widget package Mentry, version 3.11
2-
Copyright (c) 1999-2020 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
1+
Multi-entry widget package Mentry, version 3.12
2+
Copyright (c) 1999-2021 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
33

44
This library is free software; you can use, modify, and redistribute it
55
for any purpose, provided that existing copyright notices are retained

modules/mentry/README.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ How to Get It?
5454
--------------
5555

5656
Mentry is available for free download from the same URL as Wcb. The
57-
distribution file is "mentry3.11.tar.gz" for UNIX and "mentry3_11.zip"
57+
distribution file is "mentry3.12.tar.gz" for UNIX and "mentry3_12.zip"
5858
for Windows. These files contain the same information, except for the
5959
additional carriage return character preceding the linefeed at the end
6060
of each line in the text files for Windows.
@@ -73,19 +73,19 @@ locations of these library directories are given by the "tcl_library"
7373
and "tk_library" variables, respectively.
7474

7575
To install Mentry on UNIX, "cd" to the desired directory and unpack the
76-
distribution file "mentry3.11.tar.gz":
76+
distribution file "mentry3.12.tar.gz":
7777

78-
gunzip -c mentry3.11.tar.gz | tar -xf -
78+
gunzip -c mentry3.12.tar.gz | tar -xf -
7979

8080
On most UNIX systems this can be replaced with
8181

82-
tar -zxf mentry3.11.tar.gz
82+
tar -zxf mentry3.12.tar.gz
8383

84-
Both commands will create a directory named "mentry3.11", with the
84+
Both commands will create a directory named "mentry3.12", with the
8585
subdirectories "demos", "doc", and "scripts".
8686

8787
On Windows, use WinZip or some other program capable of unpacking the
88-
distribution file "mentry3_11.zip" into the directory "mentry3.11", with
88+
distribution file "mentry3_12.zip" into the directory "mentry3.12", with
8989
the subdirectories "demos", "doc", and "scripts".
9090

9191
The file "mentryThemes.tcl" in the "scripts" directory is only needed

modules/mentry/mentry.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#==============================================================================
22
# Main Mentry package module.
33
#
4-
# Copyright (c) 1999-2020 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
4+
# Copyright (c) 1999-2021 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
55
#==============================================================================
66

7-
package require -exact mentry::common 3.11
7+
package require -exact mentry::common 3.12
88

99
package provide mentry $::mentry::version
1010
package provide Mentry $::mentry::version

modules/mentry/mentryCommon.tcl

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#==============================================================================
22
# Main Mentry and Mentry_tile package module.
33
#
4-
# Copyright (c) 1999-2020 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
4+
# Copyright (c) 1999-2021 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
55
#==============================================================================
66

77
if {[catch {package require Wcb 3.1} result1] != 0 &&
@@ -13,7 +13,7 @@ namespace eval ::mentry {
1313
#
1414
# Public variables:
1515
#
16-
variable version 3.11
16+
variable version 3.12
1717
variable library
1818
if {$::tcl_version >= 8.4} {
1919
set library [file dirname [file normalize [info script]]]
@@ -95,9 +95,10 @@ proc ::mentry::createTkAliases {} {
9595
lappend auto_path [file join $::mentry::library scripts]
9696

9797
#
98-
# Load the package mwutil from the directory "scripts/mwutil"
98+
# Load the package mwutil from the directory "scripts/mwutil". Take
99+
# into account that it is also included in Scrollutil and Tablelist.
99100
#
100-
if {[catch {package present mwutil} version] == 0 && $version < 2.17} {
101+
if {[catch {package present mwutil} version] == 0 && $version < 2.18} {
101102
package forget mwutil
102103
}
103-
package require mwutil 2.17
104+
package require mwutil 2.18

modules/mentry/mentry_tile.tcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
#==============================================================================
22
# Main Mentry_tile package module.
33
#
4-
# Copyright (c) 1999-2020 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
4+
# Copyright (c) 1999-2021 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
55
#==============================================================================
66

77
package require Tk 8.4
88
if {$::tk_version < 8.5 || [regexp {^8\.5a[1-5]$} $::tk_patchLevel]} {
99
package require tile 0.6
1010
}
11-
package require -exact mentry::common 3.11
11+
package require -exact mentry::common 3.12
1212

1313
package provide mentry_tile $::mentry::version
1414
package provide Mentry_tile $::mentry::version

modules/mentry/pkgIndex.tcl

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
#==============================================================================
22
# Mentry and Mentry_tile package index file.
33
#
4-
# Copyright (c) 1999-2020 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
4+
# Copyright (c) 1999-2021 Csaba Nemethi (E-mail: csaba.nemethi@t-online.de)
55
#==============================================================================
66

77
#
88
# Regular packages:
99
#
10-
package ifneeded mentry 3.11 \
10+
package ifneeded mentry 3.12 \
1111
[list source [file join $dir mentry.tcl]]
12-
package ifneeded mentry_tile 3.11 \
12+
package ifneeded mentry_tile 3.12 \
1313
[list source [file join $dir mentry_tile.tcl]]
1414

1515
#
1616
# Aliases:
1717
#
18-
package ifneeded Mentry 3.11 \
19-
[list package require -exact mentry 3.11]
20-
package ifneeded Mentry_tile 3.11 \
21-
[list package require -exact mentry_tile 3.11]
18+
package ifneeded Mentry 3.12 \
19+
[list package require -exact mentry 3.12]
20+
package ifneeded Mentry_tile 3.12 \
21+
[list package require -exact mentry_tile 3.12]
2222

2323
#
2424
# Code common to all packages:
2525
#
26-
package ifneeded mentry::common 3.11 \
26+
package ifneeded mentry::common 3.12 \
2727
[list source [file join $dir mentryCommon.tcl]]

0 commit comments

Comments
 (0)