Changeset dbba0d71280f4ff436a0790befbda803e5dfbb01
- Timestamp:
- 03/15/2009 08:56:39 AM (3 years ago)
- Author:
- Jan Dittberner <jan@…>
- Parents:
- 0566dd902348578d419bfcabbe0a6e6885195c3c
- git-committer:
- Jan Dittberner <jan@…> (03/15/2009 08:56:39 AM)
- Message:
-
update version and copyright
- update copyright years to include 2009 (fixes #22)
- checkin using LC_ALL=C and LANG=C (fixes #21)
- add a setup.cfg to make dev builds easily available
- Files:
-
Legend:
- Unmodified
- Added
- Removed
-
|
r0c42754
|
rdbba0d7
|
|
| | 1 | 2009-03-15 Jan Dittberner <jan@dittberner.info> |
| | 2 | * setup.py: set version for release 0.8.0.1 |
| | 3 | * btn4ws.py: update copyright years, checking using LC_ALL=C, |
| | 4 | LANG=C to avoid umlauts |
| | 5 | |
| | 6 | 2009-03-13 Jan Dittberner <jan@dittberner.info> |
| | 7 | * release as 0.8.0 |
| | 8 | |
| 1 | 9 | 2008-01-05 Jan Dittberner <jan@dittberner.info> |
| 2 | 10 | |
| 3 | 11 | * setup.py: set version for release 0.7.0 |
| 4 | | set trunk version to 0.8.0a1 |
| 5 | 12 | |
| 6 | 13 | * btn4ws.py: switch to non gimpfu gimpplugin, GtkAssistant GUI, |
-
|
rd87ff52
|
rdbba0d7
|
|
| 1 | 1 | # Makefile for btn4ws.py |
| 2 | 2 | # |
| 3 | | # copyright (c) 1999-2006 Jan Dittberner <jan@dittberner.info> |
| | 3 | # copyright (c) 1999-2009 Jan Dittberner <jan@dittberner.info> |
| 4 | 4 | # |
| 5 | 5 | # This file is part of btn4ws. |
| 6 | 6 | # |
| 7 | | # btn4ws is free software; you can redistribute it and/or modify |
| 8 | | # it under the terms of the GNU General Public License as published by |
| | 7 | # btn4ws is free software; you can redistribute it and/or modify it |
| | 8 | # under the terms of the GNU General Public License as published by |
| 9 | 9 | # the Free Software Foundation; either version 2 of the License, or |
| 10 | 10 | # (at your option) any later version. |
| 11 | 11 | # |
| 12 | | # btn4ws is distributed in the hope that it will be useful, |
| 13 | | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | | # GNU General Public License for more details. |
| | 12 | # btn4ws is distributed in the hope that it will be useful, but |
| | 13 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
| | 14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| | 15 | # General Public License for more details. |
| 16 | 16 | # |
| 17 | 17 | # You should have received a copy of the GNU General Public License |
| 18 | | # along with btn4ws; if not, write to the Free Software |
| 19 | | # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| | 18 | # along with btn4ws; if not, write to the Free Software Foundation, |
| | 19 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | 20 | # |
| 21 | 21 | # version: $Id$ |
-
|
r2033aa3
|
rdbba0d7
|
|
| 14 | 14 | |
| 15 | 15 | |
| 16 | | Copyright (C) 2000-2007 Jan Dittberner |
| | 16 | Copyright (C) 2000-2009 Jan Dittberner |
| 17 | 17 | |
| 18 | 18 | This program is free software; you can redistribute it and/or modify |
-
|
r0566dd9
|
rdbba0d7
|
|
| 3 | 3 | # This is the main file of btn4ws. |
| 4 | 4 | # |
| 5 | | # Copyright (c) 1999-2008 Jan Dittberner <jan@dittberner.info> |
| | 5 | # Copyright (c) 1999-2009 Jan Dittberner <jan@dittberner.info> |
| 6 | 6 | # |
| 7 | 7 | # This file is part of btn4ws. |
| … |
… |
|
| 28 | 28 | port of the older gimp-perl version to python. |
| 29 | 29 | |
| 30 | | (c) 2007, 2008 Jan Dittberner <jan@dittberner.info> |
| | 30 | (c) 2007, 2008, 2009 Jan Dittberner <jan@dittberner.info> |
| 31 | 31 | """ |
| 32 | 32 | import os, urllib, logging, sys, pickle |
| … |
… |
|
| 39 | 39 | pdb = gimp.pdb |
| 40 | 40 | |
| 41 | | btn4ws_version = "0.8.0" |
| | 41 | btn4ws_version = "0.8.0.1" |
| 42 | 42 | |
| 43 | 43 | logging.basicConfig(level=logging.WARN, |
-
|
r0c42754
|
rdbba0d7
|
|
| 3 | 3 | # This is the distutils setup file for btn4ws. |
| 4 | 4 | # |
| 5 | | # Copyright (c) 2007 Jan Dittberner <jan@dittberner.info> |
| | 5 | # Copyright (c) 2007-2009 Jan Dittberner <jan@dittberner.info> |
| 6 | 6 | # |
| 7 | 7 | # This file is part of btn4ws. |
| … |
… |
|
| 27 | 27 | |
| 28 | 28 | setup(name='btn4ws', |
| 29 | | version='0.8.0a1', |
| | 29 | version='0.8.0.1', |
| 30 | 30 | description='Buttons for websites GIMP plugin', |
| 31 | 31 | author='Jan Dittberner', |