summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2006-04-19 18:43:51 +0000
committerMarcus Meissner <marcus@jet.franken.de>2006-04-19 18:43:51 +0000
commit0d31ebcf51feceabdd16f198614dc611309f5611 (patch)
tree876a854cf1d18cd91ca4527eccfe6befee64f208
parente48a69c9ee79a7d13fbdd100d677339f42c04c96 (diff)
downloadlibgphoto2-0d31ebcf51feceabdd16f198614dc611309f5611.tar.gz
merged from trunk
git-svn-id: https://svn.code.sf.net/p/gphoto/code/branches/libgphoto2-2_2/libgphoto2@8760 67ed7778-7388-44ab-90cf-0a291f65f57c
-rw-r--r--CHANGES74
1 files changed, 69 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index d068b6fe1..58d23a75b 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2,19 +2,28 @@ libgphoto2 HEAD
Build system (packagers beware!):
- * You can generate HAL FDI, linux-hotplug usb.usermap, and udev rules
- now:
+ * You should generate HAL FDI, linux-hotplug usb.usermap, and udev rules
+ now via our program:
${libdir}/print-camera-list (hal-fdi|usb-usermap|udev-rules)
- During chrooted build you can use:
+ During a chrooted build you can use:
CAMLIBS=$BUILDROOT/usr/lib/libgphoto2/2.2/ print-camera-list hal-fdi
This obsoletes print-usb-usermap and print-udev-rules.
-libgphoto2:
+ The hal FDI file should be put into:
+ /usr/share/hal/fdi/information/10freedesktop/10-camera-libgphoto2.fdi
+
+
+ If you need to generate different stuff based on the cameras, please add it
+ to the "print-camera-list" helper.
+
- * Added new function gp_message_codeset(const char*) to API.
+Client programmers (KDE, GNOME, MONO, C....) with specific character
+set requirements:
+
+ * We added new function gp_message_codeset(const char*) to API.
- If you do not call this function, libgphoto2 will give you its
messages in the codeset defined by the system locale.
(The system locale is defined by the LANG, LANGUAGE, and LC_*
@@ -26,6 +35,61 @@ libgphoto2:
libgphoto2_port and then calls gettext's bind_textdomain_codeset()
function.
+libgphoto2 changes:
+
+ * Lots of bugs were fixed.
+
+ * New translations were added.
+
+Driver changes:
+
+ * PTP
+
+ - PTP/IP support has been added.
+
+ - On selected Nikon and Canon cameras it is now possible to capture
+ images into the Camera SDRAM and in turn downloading it to libgphoto2
+ internal storage, bypassing the memory card.
+
+ To enable it, use the "capturetarget" setting, also saved in
+ .gphoto/settings.
+
+ This is useful for:
+ gphoto2 --capture-image -f /store_00010001 -p capt0000.jpg
+
+ Or use the timelapse capture of gphoto2:
+ gphoto2 --capture-image -F <total frames> -I <seconds interval>
+
+ Or write your own client using libgphoto2...
+
+
+ - Support of MTP devices has been greatly enhanced.
+
+ + Creative Zen devices now work.
+ + iRiver devices work, but have some protocol subtleties / flaws.
+
+ + Object Property (Meta Data) support now works in a basic way.
+
+ GP_FILE_TYPE_METADATA type get and put can be used to retrieve
+ and set meta data for files.
+
+ get: Returns all available properties and their contents.
+
+ put: Set the properties found in the file to the specified content.
+ The non-listed are untouched.
+
+ The metadata looks like:
+ <Artist>Elvis Presley</Artist>
+
+ gphoto2 -f /store_00010001/Folder... --get-metadata file.mp3 --stdout > meta_file.mp3
+ ... edit meta_file.mp3 ...
+ gphoto2 -f /store_00010001/Folder... --upload-metadata meta_file.mp3
+
+ gphoto2 --get-all-metadata ... retrieves metadata of all files, with meta_ prefix.
+
+ - Better --summary output, listing also Storage Devices and Device abilities.
+
+ - Lots of new device ids.
----------------------------------------------------------------------------
libgphoto2 2.1.99 (pre-release of 2.2)