summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--MANIFEST.in2
-rw-r--r--fedora-business-cards.spec7
-rw-r--r--pavement.py4
4 files changed, 12 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 97def64..7630dc0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+* Sun Oct 09 2008 Ian Weller <ianweller@gmail.com> 0.2.2
+Modularize some things, fix the colors in the back templates, prepare for
+visual branch merge whenever that gets done; version 0.2.2.
+
* Thu Oct 20 2008 Ian Weller <ianweller@gmail.com> 0.2.1
Add overnightprints templates (same as northamerica with a 1/16" bleed);
cleaned up python a little bit; version 0.2.1.
diff --git a/MANIFEST.in b/MANIFEST.in
index 40a00b3..f48fccf 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1 +1 @@
-include pavement.py config.ini templates/* COPYING INSTALL ChangeLog fedora-business-cards
+include pavement.py config.ini templates/* ui/* COPYING INSTALL ChangeLog fedora-business-cards
diff --git a/fedora-business-cards.spec b/fedora-business-cards.spec
index 9c87bc2..aa20ec3 100644
--- a/fedora-business-cards.spec
+++ b/fedora-business-cards.spec
@@ -1,7 +1,7 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Name: fedora-business-cards
-Version: 0.2.1
+Version: 0.2.2
Release: 1%{?dist}
Summary: A tool for rendering Fedora contributor business cards
@@ -32,7 +32,7 @@ paver build
%install
rm -rf %{buildroot}
paver install --skip-build --root %{buildroot}
-paver install_templates --root %{buildroot}
+paver install_data --root %{buildroot}
paver install_executable --root %{buildroot}
@@ -49,6 +49,9 @@ rm -rf %{buildroot}
%changelog
+* Sun Nov 09 2008 Ian Weller <ianweller@gmail.com> 0.2.2-1
+- Fix coloration in back templates
+
* Thu Oct 30 2008 Ian Weller <ianweller@gmail.com> 0.2.1-1
- Upstream update
diff --git a/pavement.py b/pavement.py
index a790396..c69e075 100644
--- a/pavement.py
+++ b/pavement.py
@@ -6,9 +6,9 @@ import paver.path
options(
setup=Bunch(
name="fedora-business-cards",
- version="0.2.1",
+ version="0.2.2",
description="A generator for Fedora contributor business cards",
- packages=["fedora_business_cards"],
+ packages=["fedora_business_cards", "fedora_business_cards.frontend"],
author="Ian Weller",
author_email="ianweller@gmail.com",
license="GPLv2+",