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:
parent
0566dd9023
commit
dbba0d7128
6 changed files with 27 additions and 17 deletions
|
@ -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>
|
||||
|
||||
* 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,
|
||||
get interactive functionallity completed, store settings in
|
||||
|
|
18
Makefile
18
Makefile
|
@ -1,22 +1,22 @@
|
|||
# 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.
|
||||
#
|
||||
# btn4ws is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# btn4ws is free software; you can redistribute it and/or modify it
|
||||
# under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# btn4ws is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
# btn4ws is distributed in the hope that it will be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
# General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with btn4ws; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
# along with btn4ws; if not, write to the Free Software Foundation,
|
||||
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
#
|
||||
# version: $Id$
|
||||
#
|
||||
|
|
4
README
4
README
|
@ -13,7 +13,7 @@ http://www.dittberner.info/projects/btn4ws/newticket
|
|||
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
|
||||
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
|
||||
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.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# 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.
|
||||
#
|
||||
|
@ -27,7 +27,7 @@
|
|||
Gimp script to generate button images for websites. This script is a
|
||||
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 gimp, gimpplugin, gimpui, gimpcolor
|
||||
|
@ -38,7 +38,7 @@ from gimpenums import *
|
|||
from gimpshelf import shelf
|
||||
pdb = gimp.pdb
|
||||
|
||||
btn4ws_version = "0.8.0"
|
||||
btn4ws_version = "0.8.0.1"
|
||||
|
||||
logging.basicConfig(level=logging.WARN,
|
||||
format='%(asctime)s %(levelname)s %(message)s',
|
||||
|
|
3
setup.cfg
Normal file
3
setup.cfg
Normal file
|
@ -0,0 +1,3 @@
|
|||
[egg_info]
|
||||
tag_build = dev
|
||||
tag_svn_revision = true
|
4
setup.py
4
setup.py
|
@ -2,7 +2,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# 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.
|
||||
#
|
||||
|
@ -26,7 +26,7 @@
|
|||
from distutils.core import setup
|
||||
|
||||
setup(name='btn4ws',
|
||||
version='0.8.0a1',
|
||||
version='0.8.0.1',
|
||||
description='Buttons for websites GIMP plugin',
|
||||
author='Jan Dittberner',
|
||||
author_email='jan@dittberner.info',
|
||||
|
|
Loading…
Reference in a new issue