~ubuntu-branches/debian/sid/f-spot/sid

« back to all changes in this revision

Viewing changes to extensions/Exporters/FlickrExport/FlickrNet/AssemblyInfo.cs

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2010-05-24 10:35:57 UTC
  • mfrom: (2.4.7 experimental)
  • Revision ID: james.westby@ubuntu.com-20100524103557-1j0i8f66caybci2n
* New upstream release 0.7.0
 + First release of the unstable 0.7 development series. Massive changes.
 + Reparenting and detaching support (Anton Keks) (Closes: #559745)
 + A new Mallard-based documentation (Harold Schreckengost)
 + No longer embeds flickrnet, uses distribution copy (Iain Lane)
 + Adoption of a large amount of Hyena functionality (Paul Lange, Peter
   Goetz)
 + No longer embeds gnome-keyring-sharp
 + Completely rewritten import, much faster and less memory hungry (Ruben
   Vermeersch) (Closes: #559080, #492658, #341790, #357811, #426017) (LP:
   #412091)
 + No longer use gphoto2-sharp, now uses gvfs which is less crash-pron
   (Ruben Vermeersch)
 + Fix Facebook support (Ruben Vermeersch)
 + Modernized unit tests
 + Revamped build (Mike Gemünde)
 + Much improved duplicate detection (much faster too) (Ruben Vermeersch)
 + Mouse selection in Iconview (Vincent Pomey)
 + Image panning support using middle mouse button (Wojciech Dzierżanowski)
 + Timeline slider now restricted to the size of the window (Iain Churcher)
 + Over 100 bugs closed (http://bit.ly/cyVjnD)
   - No more warnings about schema defaults (Closes: #584215) (LP: #586132)
* debian/control: Clean up build deps to match configure checks
* debian/rules: Don't run dh_makeshilbs as we don't ship any shared
  libraries. There are some private ones though, which get picked up and
  result in a useless postinst/postrm call to ldconfig. Thanks, lintian.
* debian/patches/debian_fix-distclean.patch,
  debian/patches/debian_fix_f-spot.exe.config.patch,
  debian/patches/debian_link-system-flickrnet.patch,
  debian/patches/debian_link-system-gnome-keyring.patch,
  debian/patches/debian_disable-unit-tests,
  debian/patches/git_transition_duration.patch,
  debian/patches/ubuntu_fix_folder_export_hang.patch:
  Clean up obsolete patches which are no longer necessary 
* debian/patches/*: Temporarily disable patches which originated from Ubuntu
  and no longer apply cleanly. We will get these back in a future upstream
  development release.
* debian/patches/*: Refresh to apply cleanly 
* debian/rules: Add new include dir to autoreconf call to pick up f-spot
  macros 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
using System;
2
 
using System.Reflection;
3
 
using System.Runtime.CompilerServices;
4
 
using System.Security;
5
 
using System.Security.Permissions;
6
 
using System.Runtime.InteropServices;
7
 
 
8
 
//
9
 
// General Information about an assembly is controlled through the following
10
 
// set of attributes. Change these attribute values to modify the information
11
 
// associated with an assembly.
12
 
//
13
 
[assembly: AssemblyTitle("Flickr .Net Api Library")]
14
 
[assembly: AssemblyDescription(".Net library for accessing Flickr.com Api functionality")]
15
 
[assembly: AssemblyConfiguration("")]
16
 
[assembly: AssemblyCompany("Sam Judson")]
17
 
[assembly: AssemblyProduct("Flickr .Net Api Library")]
18
 
[assembly: AssemblyCopyright("See website http://www.wackylabs.net/flickr")]
19
 
[assembly: AssemblyTrademark("")]
20
 
[assembly: AssemblyCulture("")]
21
 
 
22
 
//
23
 
// Version information for an assembly consists of the following four values:
24
 
//
25
 
//      Major Version
26
 
//      Minor Version
27
 
//      Build Number
28
 
//      Revision
29
 
//
30
 
// You can specify all the values or you can default the Revision and Build Numbers
31
 
// by using the '*' as shown below:
32
 
 
33
 
[assembly: AssemblyVersion("2.1.5.*")]
34
 
 
35
 
//
36
 
// In order to sign your assembly you must specify a key to use. Refer to the
37
 
// Microsoft .NET Framework documentation for more information on assembly signing.
38
 
//
39
 
// Use the attributes below to control which key is used for signing.
40
 
//
41
 
// Notes:
42
 
//   (*) If no key is specified, the assembly is not signed.
43
 
//   (*) KeyName refers to a key that has been installed in the Crypto Service
44
 
//       Provider (CSP) on your machine. KeyFile refers to a file which contains
45
 
//       a key.
46
 
//   (*) If the KeyFile and the KeyName values are both specified, the
47
 
//       following processing occurs:
48
 
//       (1) If the KeyName can be found in the CSP, that key is used.
49
 
//       (2) If the KeyName does not exist and the KeyFile does exist, the key
50
 
//           in the KeyFile is installed into the CSP and used.
51
 
//   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
52
 
//       When specifying the KeyFile, the location of the KeyFile should be
53
 
//       relative to the project output directory which is
54
 
//       %Project Directory%\obj\<configuration>. For example, if your KeyFile is
55
 
//       located in the project directory, you would specify the AssemblyKeyFile
56
 
//       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
57
 
//   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
58
 
//       documentation for more information on this.
59
 
//
60
 
[assembly: AssemblyDelaySign(false)]
61
 
[assembly: AssemblyKeyName("")]
62
 
 
63
 
[assembly: AllowPartiallyTrustedCallers()]
64
 
[assembly: SecurityPermission(SecurityAction.RequestMinimum, Execution = true)]
65
 
 
66
 
[assembly: CLSCompliantAttribute(true)]
67
 
[assembly: ComVisible(false)]