mirror of
https://github.com/greenshot/greenshot
synced 2025-07-13 16:43:54 -07:00
Changes for 1.1, added Photobucket as project to the solution. Fixed some language files (the ietf in the file IS important)
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2276 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
5e6b13e509
commit
22c04fbb4a
18 changed files with 69 additions and 42 deletions
|
@ -37,6 +37,12 @@ namespace GreenshotPlugin.Core {
|
|||
Screen, GDI, Aero, AeroTransparent, Auto
|
||||
}
|
||||
|
||||
public enum BuildStates {
|
||||
UNSTABLE,
|
||||
RELEASE_CANDIDATE,
|
||||
RELEASE
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Description of CoreConfiguration.
|
||||
/// </summary>
|
||||
|
@ -197,10 +203,8 @@ namespace GreenshotPlugin.Core {
|
|||
[IniProperty("EnableSpecialDIBClipboardReader", Description = "Enable a special DIB clipboard reader", DefaultValue="True")]
|
||||
public bool EnableSpecialDIBClipboardReader;
|
||||
|
||||
// Specify what THIS build is
|
||||
public bool isRelease = true;
|
||||
public bool isReleaseCandidate = false;
|
||||
public bool isUnstable = false;
|
||||
// Specifies what THIS build is
|
||||
public BuildStates BuildState = BuildStates.UNSTABLE;
|
||||
|
||||
/// <summary>
|
||||
/// A helper method which returns true if the supplied experimental feature is enabled
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue