f-spot r4408 - in trunk: . extensions/Tools extensions/Tools/ChangePhotoPath extensions/Tools/DevelopInUFraw extensions/Tools/MetaPixel extensions/Tools/PictureTile extensions/Tools/RawPlusJpeg extensions/Tools/RetroactiveRoll extensions/Tools/SyncCatalog



Author: sdelcroix
Date: Wed Sep 17 19:37:13 2008
New Revision: 4408
URL: http://svn.gnome.org/viewvc/f-spot?rev=4408&view=rev

Log:
bumping addin versions, including some more in the build


Added:
   trunk/extensions/Tools/ChangePhotoPath/Makefile.am   (contents, props changed)
   trunk/extensions/Tools/DevelopInUFraw/Makefile.am
   trunk/extensions/Tools/RawPlusJpeg/Makefile.am
Removed:
   trunk/extensions/Tools/ChangePhotoPath/Makefile
   trunk/extensions/Tools/DevelopInUFraw/Makefile
   trunk/extensions/Tools/RawPlusJpeg/Makefile
Modified:
   trunk/configure.in
   trunk/extensions/Tools/ChangePhotoPath/ChangePhotoPath.addin.xml
   trunk/extensions/Tools/ChangePhotoPath/ChangePhotoPathController.cs
   trunk/extensions/Tools/DevelopInUFraw/DevelopInUFRaw.addin.xml
   trunk/extensions/Tools/Makefile.am
   trunk/extensions/Tools/MetaPixel/MetaPixel.addin.xml
   trunk/extensions/Tools/PictureTile/PictureTile.addin.xml
   trunk/extensions/Tools/RawPlusJpeg/RawPlusJpeg.addin.xml
   trunk/extensions/Tools/RetroactiveRoll/RetroactiveRoll.addin.xml
   trunk/extensions/Tools/SyncCatalog/SyncCatalog.addin.xml

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Wed Sep 17 19:37:13 2008
@@ -376,6 +376,9 @@
 extensions/Services/BeagleService/Makefile
 extensions/Services/DBusService/Makefile
 extensions/Tools/Makefile
+extensions/Tools/RawPlusJpeg/Makefile
+extensions/Tools/ChangePhotoPath/Makefile
+extensions/Tools/DevelopInUFraw/Makefile
 extensions/Tools/MergeDb/Makefile
 f-spot.pc
 f-spot.spec

Modified: trunk/extensions/Tools/ChangePhotoPath/ChangePhotoPath.addin.xml
==============================================================================
--- trunk/extensions/Tools/ChangePhotoPath/ChangePhotoPath.addin.xml	(original)
+++ trunk/extensions/Tools/ChangePhotoPath/ChangePhotoPath.addin.xml	Wed Sep 17 19:37:13 2008
@@ -1,13 +1,14 @@
 <Addin namespace="FSpot"
         id="ChangePath"
-        version="0.4.4.100"
+        version="0.5.0.0"
         name="ChangePath"
         description="UNSTABLE - Please ensure you have a backup of your photos.db before you test this extension. This extension will allow you to change the base path to the your photos. It is very handy if you move your photos from ~/Photos to /OurPhotos for instance. Just ensure you let SqLite continue to process the changes for up to a few hours after f-spot reports finished. It will only change the path to photos which are located under the Photo directory."
         author="Bengt Thuree"
         url="http://f-spot.org/Extensions";
-        category="Tools">
+        category="Tools"
+	defaultEnabled="false">
 	<Dependencies>
-		<Addin id="Core" version="0.4.4.100"/>
+		<Addin id="Core" version="0.5.0.0"/>
 	</Dependencies>
 	<Extension path = "/FSpot/Menus/Tools">
 		<Command id="FileList" _label = "Change path to photos" command_type = "ChangePhotoPath.Dump" />

Modified: trunk/extensions/Tools/ChangePhotoPath/ChangePhotoPathController.cs
==============================================================================
--- trunk/extensions/Tools/ChangePhotoPath/ChangePhotoPathController.cs	(original)
+++ trunk/extensions/Tools/ChangePhotoPath/ChangePhotoPathController.cs	Wed Sep 17 19:37:13 2008
@@ -221,7 +221,7 @@
 					}
 
 					if ( (photo != null) && !StillOnSamePhotoId (last_index-1, last_index, photo_id_array) ) {
-						photo_store.Commit (photo, true, false);
+						photo_store.Commit (photo);
 						photo = null;
 					}
 
@@ -233,7 +233,7 @@
 					// float apa = last_index / (last_index-6);
 				}
 				if (photo != null)
-					photo_store.Commit (photo, true, false);
+					photo_store.Commit (photo);
 			} catch (Exception e) {
 				Console.WriteLine(e);
 				return ProcessResult.Error;

Added: trunk/extensions/Tools/ChangePhotoPath/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/extensions/Tools/ChangePhotoPath/Makefile.am	Wed Sep 17 19:37:13 2008
@@ -0,0 +1,50 @@
+include $(top_srcdir)/Makefile.include
+
+PLUGIN_NAME = ChangePhotoPath
+
+PLUGIN_MANIFEST = $(PLUGIN_NAME).addin.xml
+
+PLUGIN_ASSEMBLY = $(PLUGIN_NAME).dll
+
+PLUGIN_SOURCES =			\
+	$(srcdir)/ChangePhotoPathController.cs \
+	$(srcdir)/ChangePhotoPathGui.cs \
+	$(srcdir)/IChangePhotoPathGui.cs
+
+REFS =					\
+	-r:Mono.Posix			\
+	-r:$(top_builddir)/src/f-spot.exe		\
+	-r:$(top_builddir)/src/FSpot.Core.dll	\
+	-r:$(top_builddir)/src/FSpot.Utils.dll	\
+	-r:$(top_builddir)/src/FSpot.Query.dll
+
+PKGS =					\
+	-pkg:gtk-sharp-2.0		\
+	-pkg:glade-sharp-2.0
+
+RESOURCES =				\
+	-resource:$(srcdir)/$(PLUGIN_MANIFEST)	\
+	-resource:$(srcdir)/$(PLUGIN_NAME).glade
+
+all: $(PLUGIN_ASSEMBLY)
+
+mpack: $(PLUGIN_ASSEMBLY)
+	mautil p $(PLUGIN_ASSEMBLY)
+
+$(PLUGIN_ASSEMBLY): $(PLUGIN_SOURCES) $(PLUGIN_MANIFEST) $(PLUGIN_NAME).glade
+	$(CSC_LIB) -out:$@ $(PLUGIN_SOURCES) $(REFS) $(PKGS) $(ASSEMBLIES) $(RESOURCES)
+
+plugindir = $(pkglibdir)/extensions
+
+plugin_DATA =			\
+	$(PLUGIN_ASSEMBLY)
+
+EXTRA_DIST = 			\
+	$(PLUGIN_SOURCES)	\
+	$(PLUGIN_MANIFEST)	\
+	$(PLUGIN_NAME).glade
+
+CLEANFILES =			\
+	$(PLUGIN_ASSEMBLY)	\
+	$(PLUGIN_ASSEMBLY).mdb	\
+	*.mpack

Modified: trunk/extensions/Tools/DevelopInUFraw/DevelopInUFRaw.addin.xml
==============================================================================
--- trunk/extensions/Tools/DevelopInUFraw/DevelopInUFRaw.addin.xml	(original)
+++ trunk/extensions/Tools/DevelopInUFraw/DevelopInUFRaw.addin.xml	Wed Sep 17 19:37:13 2008
@@ -1,13 +1,14 @@
 <Addin namespace="FSpot"
 	id="DevelopInUFraw"
-	version="0.4.4.102"
+	version="0.5.0.0"
 	name="DevelopInUFRaw"
 	description="Develop the image in UFRaw, saves the result as a new version\n\nNote: Require ufraw 0.13 or CVS version newer than 2007-09-06 !!!"
 	author="Stephane Delcroix"
 	url="http://f-spot.org/Extensions";
-	category="Tools">
+	category="Tools"
+	defaultEnabled="false">
 	<Dependencies>
-		<Addin id="Core" version="0.4.4.100"/>
+		<Addin id="Core" version="0.5.0.0"/>
 	</Dependencies>
 	<Extension path = "/FSpot/Menus/PhotoPopup">
 		<Command id = "DevelopInUFRaw" _label = "Develop in UFRaw" command_type = "DevelopInUFRawExtension.DevelopInUFRaw" insertbefore="OpenWith"/>

Added: trunk/extensions/Tools/DevelopInUFraw/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/extensions/Tools/DevelopInUFraw/Makefile.am	Wed Sep 17 19:37:13 2008
@@ -0,0 +1,48 @@
+include $(top_srcdir)/Makefile.include
+
+PLUGIN_NAME = DevelopInUFRaw
+
+PLUGIN_MANIFEST = $(PLUGIN_NAME).addin.xml
+
+PLUGIN_ASSEMBLY = $(PLUGIN_NAME).dll
+
+PLUGIN_SOURCES =			\
+	$(srcdir)/DevelopInUFRaw.cs
+
+REFS =					\
+	-r:Mono.Posix			\
+	-r:$(top_builddir)/src/f-spot.exe	\
+	-r:$(top_builddir)/src/FSpot.Core.dll	\
+	-r:$(top_builddir)/src/FSpot.Utils.dll	\
+	-r:$(top_builddir)/src/FSpot.Query.dll	\
+	$(LINK_MONO_ADDINS)			\
+	$(LINK_SEMWEB)
+
+PKGS =					\
+	-pkg:gnome-vfs-sharp-2.0	\
+	-pkg:gtk-sharp-2.0
+
+RESOURCES =				\
+	-resource:$(srcdir)/$(PLUGIN_MANIFEST)
+
+all: $(PLUGIN_ASSEMBLY)
+
+mpack: $(PLUGIN_ASSEMBLY)
+	mautil p $(PLUGIN_ASSEMBLY)
+
+$(PLUGIN_ASSEMBLY): $(PLUGIN_SOURCES) $(PLUGIN_MANIFEST)
+	$(CSC_LIB) -out:$@ $(PLUGIN_SOURCES) $(REFS) $(PKGS) $(ASSEMBLIES) $(RESOURCES)
+
+plugindir = $(pkglibdir)/extensions
+
+plugin_DATA =			\
+	$(PLUGIN_ASSEMBLY)
+
+EXTRA_DIST = 			\
+	$(PLUGIN_SOURCES)	\
+	$(PLUGIN_MANIFEST)
+
+CLEANFILES =			\
+	$(PLUGIN_ASSEMBLY)	\
+	$(PLUGIN_ASSEMBLY).mdb	\
+	*.mpack

Modified: trunk/extensions/Tools/Makefile.am
==============================================================================
--- trunk/extensions/Tools/Makefile.am	(original)
+++ trunk/extensions/Tools/Makefile.am	Wed Sep 17 19:37:13 2008
@@ -1,2 +1,5 @@
 SUBDIRS = 			\
+	ChangePhotoPath		\
+	DevelopInUFraw		\
+	RawPlusJpeg		\
 	MergeDb

Modified: trunk/extensions/Tools/MetaPixel/MetaPixel.addin.xml
==============================================================================
--- trunk/extensions/Tools/MetaPixel/MetaPixel.addin.xml	(original)
+++ trunk/extensions/Tools/MetaPixel/MetaPixel.addin.xml	Wed Sep 17 19:37:13 2008
@@ -1,13 +1,13 @@
 <Addin namespace="FSpot"
 	id="MetaPixelExtension"
-	version="0.4.4.100"
+	version="0.5.0.0"
 	description="Create photomosaics using MetaPixel (http://www.complang.tuwien.ac.at/schani/metapixel/)"
 	author="Lorenzo Milesi"
 	name="MetaPixel"
 	url="http://f-spot.org/Extensions";
 	category="Tools">
 	<Dependencies>
-		<Addin id="Core" version="0.4.4.100"/>
+		<Addin id="Core" version="0.5.0.0"/>
 	</Dependencies>
 	<Extension path = "/FSpot/Menus/Tools">
 		<Command id = "MetaPixel" _label = "Create p_hotomosaic" command_type = "MetaPixelExtension.MetaPixel" />

Modified: trunk/extensions/Tools/PictureTile/PictureTile.addin.xml
==============================================================================
--- trunk/extensions/Tools/PictureTile/PictureTile.addin.xml	(original)
+++ trunk/extensions/Tools/PictureTile/PictureTile.addin.xml	Wed Sep 17 19:37:13 2008
@@ -1,13 +1,13 @@
 <Addin namespace="FSpot"
 	id="PictureTileExtension"
-	version="0.4.4.100"
+	version="0.5.0.0"
 	description="Create photo wall using PictureTile by Jamie Zawinski (http://www.jwz.org/picturetile/)"
 	author="Lorenzo Milesi"
 	name="PictureTile"
 	url="http://f-spot.org/Extensions";
 	category="Tools">
 	<Dependencies>
-		<Addin id="Core" version="0.4.4.100"/>
+		<Addin id="Core" version="0.5.0.0"/>
 	</Dependencies>
 	<Extension path = "/FSpot/Menus/Tools">
 		<Command id = "PictureTile" _label = "Create photo_wall" command_type = "PictureTileExtension.PictureTile" />

Added: trunk/extensions/Tools/RawPlusJpeg/Makefile.am
==============================================================================
--- (empty file)
+++ trunk/extensions/Tools/RawPlusJpeg/Makefile.am	Wed Sep 17 19:37:13 2008
@@ -0,0 +1,48 @@
+include $(top_srcdir)/Makefile.include
+
+PLUGIN_NAME = RawPlusJpeg
+
+PLUGIN_MANIFEST = $(PLUGIN_NAME).addin.xml
+
+PLUGIN_ASSEMBLY = $(PLUGIN_NAME).dll
+
+PLUGIN_SOURCES =			\
+	$(srcdir)/RawPlusJpeg.cs
+
+REFS =					\
+	-r:Mono.Posix			\
+	-r:$(top_builddir)/src/f-spot.exe		\
+	-r:$(top_builddir)/src/FSpot.Core.dll	\
+	-r:$(top_builddir)/src/FSpot.Utils.dll	\
+	-r:$(top_builddir)/src/FSpot.Query.dll	\
+	$(LINK_MONO_ADDINS)			\
+	$(LINK_SEMWEB)
+
+PKGS =					\
+	-pkg:gtk-sharp-2.0		\
+	-pkg:glade-sharp-2.0
+
+RESOURCES =					\
+	-resource:$(srcdir)/$(PLUGIN_MANIFEST)
+
+all: $(PLUGIN_ASSEMBLY)
+
+mpack: $(PLUGIN_ASSEMBLY)
+	mautil p $(PLUGIN_ASSEMBLY)
+
+$(PLUGIN_ASSEMBLY): $(PLUGIN_SOURCES) $(PLUGIN_MANIFEST)
+	$(CSC_LIB) -out:$@ $(PLUGIN_SOURCES) $(REFS) $(PKGS) $(ASSEMBLIES) $(RESOURCES)
+
+plugindir = $(pkglibdir)/extensions
+
+plugin_DATA =			\
+	$(PLUGIN_ASSEMBLY)
+
+EXTRA_DIST = 			\
+	$(PLUGIN_SOURCES)	\
+	$(PLUGIN_MANIFEST)
+
+CLEANFILES =			\
+	$(PLUGIN_ASSEMBLY)	\
+	$(PLUGIN_ASSEMBLY).mdb	\
+	*.mpack

Modified: trunk/extensions/Tools/RawPlusJpeg/RawPlusJpeg.addin.xml
==============================================================================
--- trunk/extensions/Tools/RawPlusJpeg/RawPlusJpeg.addin.xml	(original)
+++ trunk/extensions/Tools/RawPlusJpeg/RawPlusJpeg.addin.xml	Wed Sep 17 19:37:13 2008
@@ -1,13 +1,14 @@
 <Addin namespace="FSpot"
 	id="RawPlusJpeg"
 	name="RawPlusJpeg"
-	version="0.4.4.100"
+	version="0.5.0.0"
 	description="Merge RAW+Jpeg as multiple versions of the same photo"
 	author="Stephane Delcroix"
 	url="http://f-spot.org/Extensions";
-	category="Tools">
+	category="Tools"
+	defaultEnabled="false">
 	<Dependencies>
-		<Addin id="Core" version="0.4.4.100"/>
+		<Addin id="Core" version="0.5.0.0"/>
 	</Dependencies>
 	<Extension path = "/FSpot/Menus/Tools">
 		<Command id = "MergeRawJpeg" _label = "Merge Raw" command_type = "RawPlusJpegExtension.RawPlusJpeg" />

Modified: trunk/extensions/Tools/RetroactiveRoll/RetroactiveRoll.addin.xml
==============================================================================
--- trunk/extensions/Tools/RetroactiveRoll/RetroactiveRoll.addin.xml	(original)
+++ trunk/extensions/Tools/RetroactiveRoll/RetroactiveRoll.addin.xml	Wed Sep 17 19:37:13 2008
@@ -1,13 +1,13 @@
 <Addin namespace="FSpot"
 	id="RetroactiveRoll"
 	name="RetroactiveRoll"
-	version="0.4.4.100"
+	version="0.5.0.0"
 	description="Retroactively assign old photos to import rolls"
 	author="Andy Wingo"
 	url="http://f-spot.org/Extensions";
 	category="Tools">
 	<Dependencies>
-		<Addin id="Core" version="0.4.4.100"/>
+		<Addin id="Core" version="0.5.0.0"/>
 	</Dependencies>
 	<Extension path = "/FSpot/Menus/PhotoPopup">
 		<Command id = "RetroactiveRoll" _label = "Reassign to new import roll" command_type = "RetroactiveRoll.RetroactiveRoll"/>

Modified: trunk/extensions/Tools/SyncCatalog/SyncCatalog.addin.xml
==============================================================================
--- trunk/extensions/Tools/SyncCatalog/SyncCatalog.addin.xml	(original)
+++ trunk/extensions/Tools/SyncCatalog/SyncCatalog.addin.xml	Wed Sep 17 19:37:13 2008
@@ -1,13 +1,13 @@
 <Addin namespace="FSpot"
 	id="SyncMetaData"
-	version="0.4.4.100"
+	version="0.5.0.0"
 	description="Sync MetaData information of all catalog with Photos"
 	author="Miguel Aguero"
 	url="http://f-spot.org/Extensions";
 	name="SyncMetaData"
 	category="Tools">
 	<Dependencies>
-		<Addin id="Core" version="0.4.4.100"/>
+		<Addin id="Core" version="0.5.0.0"/>
 	</Dependencies>
 	<Extension path = "/FSpot/Menus/Tools">
 		<Command id = "SyncMetaData" _label = "Sync Catalog with Photos" command_type = "SyncCatalogExtension.SyncCatalog" />



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]