Changeset dbba0d71280f4ff436a0790befbda803e5dfbb01

Show
Ignore:
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:
1 added
5 modified

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r0c42754 rdbba0d7  
     12009-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 
     62009-03-13  Jan Dittberner  <jan@dittberner.info> 
     7        * release as 0.8.0 
     8 
    192008-01-05  Jan Dittberner  <jan@dittberner.info> 
    210 
    311        * setup.py: set version for release 0.7.0 
    4         set trunk version to 0.8.0a1 
    512 
    613        * btn4ws.py: switch to non gimpfu gimpplugin, GtkAssistant GUI, 
  • Makefile

    rd87ff52 rdbba0d7  
    11# Makefile for btn4ws.py 
    22# 
    3 # copyright (c) 1999-2006 Jan Dittberner <jan@dittberner.info> 
     3# copyright (c) 1999-2009 Jan Dittberner <jan@dittberner.info> 
    44# 
    55# This file is part of btn4ws. 
    66# 
    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 
    99# the Free Software Foundation; either version 2 of the License, or 
    1010# (at your option) any later version. 
    1111# 
    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. 
    1616# 
    1717# 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 
    2020# 
    2121# version: $Id$ 
  • README

    r2033aa3 rdbba0d7  
    1414 
    1515 
    16 Copyright (C) 2000-2007 Jan Dittberner 
     16Copyright (C) 2000-2009 Jan Dittberner 
    1717 
    1818This program is free software; you can redistribute it and/or modify 
  • btn4ws.py

    r0566dd9 rdbba0d7  
    33# This is the main file of btn4ws. 
    44# 
    5 # Copyright (c) 1999-2008 Jan Dittberner <jan@dittberner.info> 
     5# Copyright (c) 1999-2009 Jan Dittberner <jan@dittberner.info> 
    66# 
    77# This file is part of btn4ws. 
     
    2828port of the older gimp-perl version to python. 
    2929 
    30 (c) 2007, 2008 Jan Dittberner <jan@dittberner.info> 
     30(c) 2007, 2008, 2009 Jan Dittberner <jan@dittberner.info> 
    3131""" 
    3232import os, urllib, logging, sys, pickle 
     
    3939pdb = gimp.pdb 
    4040 
    41 btn4ws_version = "0.8.0" 
     41btn4ws_version = "0.8.0.1" 
    4242 
    4343logging.basicConfig(level=logging.WARN, 
  • setup.py

    r0c42754 rdbba0d7  
    33# This is the distutils setup file for btn4ws. 
    44# 
    5 # Copyright (c) 2007 Jan Dittberner <jan@dittberner.info> 
     5# Copyright (c) 2007-2009 Jan Dittberner <jan@dittberner.info> 
    66# 
    77# This file is part of btn4ws. 
     
    2727 
    2828setup(name='btn4ws', 
    29       version='0.8.0a1', 
     29      version='0.8.0.1', 
    3030      description='Buttons for websites GIMP plugin', 
    3131      author='Jan Dittberner',