~ubuntu-branches/debian/sid/banshee-community-extensions/sid

« back to all changes in this revision

Viewing changes to src/AlbumArtWriter/Banshee.AlbumArtWriter/ConfigurationSchema.cs

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2012-04-07 23:29:55 UTC
  • mfrom: (1.2.10)
  • Revision ID: package-import@ubuntu.com-20120407232955-hc1ej3txxmrl1gdp
Tags: 2.4.0-1
* [4da6afd] Imported Upstream version 2.4.0:
  - New extensions since 2.2.0:
    + FolderSync: Copy and synchronize tracks from playlists into specified
      folders
  - Enhancements since 2.2.0:
    + AlbumArtWriter: Allow forcing a copy of the album art into the album
      folders
    + AlbumArtWriter: Add configuration of the name and the type of the image
      file
    + DuplicateSongDetector: Use a more aggressive algorithm for detecting
      duplicates
  - Notable bugs fixed since 2.2.0:
    + DuplicateSongDetector: Fix bug causing the window to be blank
    + Karaoke: Don't change the visual style of the lyrics
    + Karaoke: Disable keybindings in the context pane
    + LiveRadio: Fix crash when updating the genre list
    + LiveRadio: Disable non-functional plugins: shoutcast, magnatune,
      realradios
    + LiveRadio: Fix crash when live365 session stream cannot be retrieved
    + LiveRadio: Fix crash when clicking multiple genres quickly (bgo#662794)
    + Lyrics: Use HTTP proxy management provided by Banshee (bgo#664710)
    + Telepathy: Fix dllmap for cross-architecture support
* [45db91b] Drop patches.
   - 0001-LiveRadio….patch: Applied upstream
   - fsck-intltool.patch: No longer needed
* [4e33173] Override DMCS instead of MCS
* [7e2960a] Add foldersync extension
* [d5287de] Update d/copyright
* [11dcf27] Update banshee build-dep version
* [9c06b83] Bump Standards-Version (3.9.2 → 3.9.3)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// 
 
2
// ConfigurationSchema.cs
 
3
// 
 
4
// Author:
 
5
//   Kevin Anthony <Kevin.S.Anthony@gmail.com>
 
6
// 
 
7
// Copyright (C) 2011 Kevin Anthony
 
8
//
 
9
// Permission is hereby granted, free of charge, to any person obtaining
 
10
// a copy of this software and associated documentation files (the
 
11
// "Software"), to deal in the Software without restriction, including
 
12
// without limitation the rights to use, copy, modify, merge, publish,
 
13
// distribute, sublicense, and/or sell copies of the Software, and to
 
14
// permit persons to whom the Software is furnished to do so, subject to
 
15
// the following conditions:
 
16
//
 
17
// The above copyright notice and this permission notice shall be
 
18
// included in all copies or substantial portions of the Software.
 
19
//
 
20
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
21
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
22
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
23
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
24
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
25
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
26
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
27
//
 
28
 
 
29
 
 
30
using System;
 
31
 
 
32
using Banshee.Configuration;
 
33
 
 
34
namespace Banshee.AlbumArtWriter
 
35
{
 
36
    public static class ConfigurationSchema
 
37
    {
 
38
        private const string conf_namespace = "plugins.alarm";
 
39
 
 
40
        public static readonly SchemaEntry<bool> IsEnabled
 
41
            = new SchemaEntry<bool> (
 
42
                conf_namespace, "is_enabled",
 
43
                false, "Enable the Album Writer plugin",
 
44
                ""
 
45
            );
 
46
 
 
47
        public static readonly SchemaEntry<bool> JPG
 
48
            = new SchemaEntry<bool> (
 
49
                conf_namespace, "write_jpg",
 
50
                true, "Write Art as JPG",
 
51
                ""
 
52
            );
 
53
 
 
54
        public static readonly SchemaEntry<bool> PNG
 
55
            = new SchemaEntry<bool> (
 
56
                conf_namespace, "write_png",
 
57
                false, "Write Art as PNG",
 
58
                ""
 
59
            );       public static readonly SchemaEntry<string> ArtName
 
60
            = new SchemaEntry<string> (
 
61
                conf_namespace, "art_name",
 
62
                "album", "The Name (Without Extension) to write the art",
 
63
                ""
 
64
            );
 
65
 
 
66
    }
 
67
}
 
68