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
This commit is contained in:
Jan Dittberner 2009-03-15 07:56:39 +00:00
parent 0566dd9023
commit dbba0d7128
6 changed files with 27 additions and 17 deletions

View file

@ -1,7 +1,14 @@
2009-03-15 Jan Dittberner <jan@dittberner.info>
* setup.py: set version for release 0.8.0.1
* btn4ws.py: update copyright years, checking using LC_ALL=C,
LANG=C to avoid umlauts
2009-03-13 Jan Dittberner <jan@dittberner.info>
* release as 0.8.0
2008-01-05 Jan Dittberner <jan@dittberner.info> 2008-01-05 Jan Dittberner <jan@dittberner.info>
* setup.py: set version for release 0.7.0 * setup.py: set version for release 0.7.0
set trunk version to 0.8.0a1
* btn4ws.py: switch to non gimpfu gimpplugin, GtkAssistant GUI, * btn4ws.py: switch to non gimpfu gimpplugin, GtkAssistant GUI,
get interactive functionallity completed, store settings in get interactive functionallity completed, store settings in

View file

@ -1,22 +1,22 @@
# Makefile for btn4ws.py # Makefile for btn4ws.py
# #
# copyright (c) 1999-2006 Jan Dittberner <jan@dittberner.info> # copyright (c) 1999-2009 Jan Dittberner <jan@dittberner.info>
# #
# This file is part of btn4ws. # This file is part of btn4ws.
# #
# btn4ws is free software; you can redistribute it and/or modify # btn4ws is free software; you can redistribute it and/or modify it
# it under the terms of the GNU General Public License as published by # under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or # the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# btn4ws is distributed in the hope that it will be useful, # btn4ws is distributed in the hope that it will be useful, but
# but WITHOUT ANY WARRANTY; without even the implied warranty of # WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# GNU General Public License for more details. # General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with btn4ws; if not, write to the Free Software # along with btn4ws; if not, write to the Free Software Foundation,
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# #
# version: $Id$ # version: $Id$
# #

4
README
View file

@ -13,7 +13,7 @@ http://www.dittberner.info/projects/btn4ws/newticket
MAINTAINER: Jan Dittberner <jan@dittberner.info> MAINTAINER: Jan Dittberner <jan@dittberner.info>
Copyright (C) 2000-2007 Jan Dittberner Copyright (C) 2000-2009 Jan Dittberner
This program is free software; you can redistribute it and/or modify This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@ -27,4 +27,4 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

View file

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This is the main file of btn4ws. # This is the main file of btn4ws.
# #
# Copyright (c) 1999-2008 Jan Dittberner <jan@dittberner.info> # Copyright (c) 1999-2009 Jan Dittberner <jan@dittberner.info>
# #
# This file is part of btn4ws. # This file is part of btn4ws.
# #
@ -27,7 +27,7 @@
Gimp script to generate button images for websites. This script is a Gimp script to generate button images for websites. This script is a
port of the older gimp-perl version to python. port of the older gimp-perl version to python.
(c) 2007, 2008 Jan Dittberner <jan@dittberner.info> (c) 2007, 2008, 2009 Jan Dittberner <jan@dittberner.info>
""" """
import os, urllib, logging, sys, pickle import os, urllib, logging, sys, pickle
import gimp, gimpplugin, gimpui, gimpcolor import gimp, gimpplugin, gimpui, gimpcolor
@ -38,7 +38,7 @@ from gimpenums import *
from gimpshelf import shelf from gimpshelf import shelf
pdb = gimp.pdb pdb = gimp.pdb
btn4ws_version = "0.8.0" btn4ws_version = "0.8.0.1"
logging.basicConfig(level=logging.WARN, logging.basicConfig(level=logging.WARN,
format='%(asctime)s %(levelname)s %(message)s', format='%(asctime)s %(levelname)s %(message)s',

3
setup.cfg Normal file
View file

@ -0,0 +1,3 @@
[egg_info]
tag_build = dev
tag_svn_revision = true

View file

@ -2,7 +2,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# This is the distutils setup file for btn4ws. # This is the distutils setup file for btn4ws.
# #
# Copyright (c) 2007 Jan Dittberner <jan@dittberner.info> # Copyright (c) 2007-2009 Jan Dittberner <jan@dittberner.info>
# #
# This file is part of btn4ws. # This file is part of btn4ws.
# #
@ -26,7 +26,7 @@
from distutils.core import setup from distutils.core import setup
setup(name='btn4ws', setup(name='btn4ws',
version='0.8.0a1', version='0.8.0.1',
description='Buttons for websites GIMP plugin', description='Buttons for websites GIMP plugin',
author='Jan Dittberner', author='Jan Dittberner',
author_email='jan@dittberner.info', author_email='jan@dittberner.info',