root / pykota / trunk / NEWS @ 936

Revision 936, 7.9 kB (checked in by jalet, 21 years ago)

Change was forgotten

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# $Id$
2
3PyKota - Print Quota for CUPS
4
5(c) 2003 Jerome Alet <alet@librelogiciel.com>
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19
20============================================================
21
22PyKota NEWS :
23
24    - 1.03beta2 :
25   
26        - repykota now reports account balances too.
27       
28        - PyKota now has a nice logo, see the logos
29          subdirectory.
30       
31        - Manual pages were finally updated.
32       
33    - 1.03beta :
34   
35        - Group quotas seem to work now !
36       
37    - 1.03alpha :
38   
39        - IMPORTANT : DataBase schema has changed.
40          DON'T TRY TO UPGRADE AN EXISTING PYKOTA INSTALLATION !
41          The upgrade script will be finalized ASAP, be patient,
42          or drop your old quota database to start anew.
43          Upgrade script will be provided when 1.03final will
44          be out.
45         
46        - The new database schema allows to keep an history of all
47          jobs as well as charge users per page and/or per job,
48          and track users' account balance.
49         
50        - edpykota now accepts much more command line options to 
51          use the new functionnalities. See edpykota --help for
52          details.
53         
54        - The installation script now allows to install the sample
55          configuration file during first installation.
56         
57        - More group quota code works, but still not finished. 
58       
59        - The CGI script displays a link to PyKota's website.
60       
61        - The job history is now kept, this will allow per-period
62          reports in the future.
63         
64        - After having modified the quota for an user with edpykota,
65          a quota check is done to eventually warn the user/admin about
66          a quota which is too low to print.
67         
68        - A workaround is provided for HP Printers : their internal
69          page counter is only saved to NVRAM in a 10 increment, so
70          if you switch them off and then on, the reported page counter
71          may be lower than the real number of pages printed.
72          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
73          We unconditionnally set the last job's page count to
74          abs(int((10 - abs(lastcounter(snmp) - lastcounter(storage)) / 2))
75          in this case.
76          For a more accurate accounting, never switch your HP printers
77          off.
78         
79        - A fix is provided for printers which only have a volatile 
80          page counter (reset to 0 every time you switch the printer on)
81          This should allow PyKota to work reasonably fine with HP Laserjet
82          4L/5L/6L, not perfect, but better than nothing.
83          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
84          For a more accurate accounting, never switch your HP printers
85          off. This is untested, please report any problem.
86         
87        - A bug was fixed when edpykota --add was used with users who already
88          had a quota on the specified printer.
89         
90        - A small display bug in repykota was introduced in preliminary
91          1.03 versions, and fixed later on.
92         
93        - Some minor bugs which happened in rare situations were fixed.
94       
95        - Support for AppleTalk printers was added, see sample configuration
96          file for details.
97         
98        - Users and group printing can now be controlled (limited) either by 
99          print quota or by account balance.
100       
101    - 1.02 :
102   
103        - The installation script now checks for software availability
104          and in case a software is missing asks the user if he
105          wants to continue with the installation or abort it.
106         
107        - The configuration file pykota.conf is now expected to be
108          found in /etc instead of in /etc/cups
109          The installation script prompts the user to see if he
110          wants to move an old configuration file to the new location
111          if needed.
112         
113        - Improved documentation.
114       
115        - You can now set the tcp/ip port on which the Quota Storage
116          Server is listening, see sample configuration file for details.
117       
118        - Better general error handling.
119       
120        - Upgrade script for pre 1.01 PostgreSQL database schema is now
121          included as well.
122       
123    - 1.01 :
124   
125        - The configuration file now accepts an option   
126          to choose the recipient(s) of the email messages :
127         
128            - DevNull means no one will receive them.
129            - User means only the user will receive them.
130            - Admin means only the admin will receive them.
131            - Both means the User and the Admin will receive them.
132           
133        - The configuration file now uses hard-coded default values
134          when an option is not set. See sample configuration file
135          for details.
136         
137        - Manual pages are included since 1.00, but I forgot to   
138          add this information to this file.
139         
140        - Redistribution terms for the official package have 
141          softened and are now fully GPL compatible :
142          unrestricted modification is now allowed even for
143          the version number.
144         
145    - 1.00 :
146   
147        - edpykota now accepts a --noquota option. This
148          disable quota checking while still doing page
149          accounting. This is really useful for people
150          who don't want to limit their users but want
151          to know how much pages they print.
152         
153        - Some untested scripts were added to retrieve
154          the life time page counter of non-SNMP printers.
155         
156        - Every directory now has a specific README file. 
157       
158    - 0.99 :
159   
160        - Under some circumstances while the user wasn't allowed
161          to print, he didn't receive any email message. It is
162          now fixed.
163         
164        - When an user wasn't allowed to print, the quota for
165          the previous user wasn't updated. This is now fixed.
166         
167    - 0.98 :
168   
169        - Correctly handle the case where the printer is switched off.
170       
171        - Small bug wrt syslog fixed.
172       
173    - 0.97 :
174   
175        - edpykota accepts wildcards on its command line for users/groups too
176          if the --add option is not set, e.g. :
177         
178              $ edpykota --printer lp --softlimit 50 --hardlimit 100 "jer*"
179             
180        - If no user name is passed at all, then a default wildcard of "*"
181          which means apply the command on ALL users for this printer is used.
182         
183        - Small bug fixes.
184       
185    - 0.96 :
186
187        - Options requester, policy, admin, adminmail and gracedelay can now
188          be set either globally or per printer. The printer option has
189          priority if both are defined.
190
191        - More powerful configuration parser.
192       
193        - If all options are defined globally, there's no need to
194          define a section for each printer in the configuration
195          file anymore. Just define a [global] section and it's ok.
196
197    - 0.95 :
198
199        - External requesters for printers finally added.
200
201        - Full internationalization (english and french are supported)
202 
203        - More complete quota usage report
204
205        - CGI script to access to the quota usage report
206
207        - Several bugs fixed.
208
209
210    - 0.9 :
211
212        - First public version
Note: See TracBrowser for help on using the browser.