root / pykota / trunk / NEWS @ 930

Revision 929, 7.8 kB (checked in by jalet, 21 years ago)

repykota now reports account balances too.

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