summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--NEWS38
-rw-r--r--RELEASE43
3 files changed, 83 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index a1b8848..4115a8c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,3 +25,5 @@ Makefile
Makefile.in
missing
stamp-h1
+*.patch
+NEWS.new
diff --git a/NEWS b/NEWS
index e69de29..7bb2eb2 100644
--- a/NEWS
+++ b/NEWS
@@ -0,0 +1,38 @@
+Version 0.1.0
+~~~~~~~~~~~~~
+Released: 2011-01-13
+
+Notes:
+ - Colord is a simple system activated daemon that maps devices to color
+ profiles.
+ - It is used by gnome-color-manager for CUPS integration and is also
+ used when there are no users logged in.
+ - The only real user at the moment is CUPS, but GNOME Color Manager
+ will start depending on colord when it is included in most mainstream
+ distributions.
+ - The DBus interface is not set in stone, and the libcolord library
+ will have new API added to it as required. If colord needs to break
+ public API at this stage for a specific use case, it will.
+ - The persistent storage code is not written yet, but that will come
+ with the next colord version.
+
+New Features:
+ - Add a 'Kind' attribute to the device objects (Richard Hughes)
+ - Add a libcolord shared library that can be used in the client tools (Richard Hughes)
+ - Add an example spec file (Richard Hughes)
+ - Add a simple colormgr man page (Richard Hughes)
+ - Add a simple GTK test GUI for testing the DBus interfaces (Richard Hughes)
+ - Add a simple script to create a test device (Richard Hughes)
+ - Add basic DBus interface (Richard Hughes)
+ - Add code for the DeleteDevice method (Richard Hughes)
+ - Add DeleteProfile() on the main interface (Richard Hughes)
+ - Add GetProfileForQualifier() code (Richard Hughes)
+ - Add MakeProfileDefault() implementation to CdDevice (Richard Hughes)
+ - Add qualifiers to profiles (Richard Hughes)
+ - Allow clients to set properties on the objects using SetProperty (Richard Hughes)
+ - Expose the device created time (Richard Hughes)
+ - Fixed typo in ColorManager API description (Tim Waugh)
+ - Open the profile using lcms2 after we set the profile filename (Richard Hughes)
+ - Provide a method to assign an ICC profile to a profile object (Richard Hughes)
+ - Provide methods for mapping the device ID to the object path (Richard Hughes)
+ - Use seporate PolicyKit authorisations for each action type (Richard Hughes)
diff --git a/RELEASE b/RELEASE
new file mode 100644
index 0000000..2b32bc1
--- /dev/null
+++ b/RELEASE
@@ -0,0 +1,43 @@
+colord Release Notes
+
+1. Write NEWS entries for colord in the same format as usual.
+
+git shortlog COLORD_0_1_0.. | grep -i -v trivial | grep -v Merge > NEWS.new
+
+Version 0.1.0
+~~~~~~~~~~~~~
+Released: 2011-xx-xx
+
+Translations:
+New Features:
+Bugfixes:
+
+2. Commit changes to git:
+
+git commit -a -m "Release colord 0.1.0"
+git tag -s -f -m "Release colord 0.1.0" COLORD_0_1_0
+<wait>
+git push --tags
+git push
+
+3. Generate the tarball:
+
+make dist
+
+4. Upload tarball:
+
+scp *.tar.gz hughsient@people.freedesktop.org:public_html/releases/
+
+5. Do post release version bump in configure.ac
+
+6. Commit changes:
+
+git commit -a -m "trivial: post release version bump"
+git push
+
+7. Send an email to gnome-color-manager-list@gnome.org
+
+colord is a system activated daemon that maps devices to color profiles.
+It is used by gnome-color-manager for system integration and use when
+there are no users logged in.
+