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:
RKrom 2012-11-13 09:01:05 +00:00
parent 5e6b13e509
commit 22c04fbb4a
18 changed files with 69 additions and 42 deletions

View file

@ -142,7 +142,7 @@ namespace Greenshot.Experimental {
// the current version is a release or release candidate AND check unstable is turned off.
if (rssFile.isUnstable) {
// Skip if we shouldn't check unstables
if ((conf.isRelease || conf.isReleaseCandidate) && !conf.CheckForUnstable) {
if ((conf.BuildState == BuildStates.RELEASE || conf.BuildState == BuildStates.RELEASE_CANDIDATE) && !conf.CheckForUnstable) {
continue;
}
}
@ -150,7 +150,7 @@ namespace Greenshot.Experimental {
// if the file is a release candidate, we will skip it when:
// the current version is a release AND check unstable is turned off.
if (rssFile.isReleaseCandidate) {
if (conf.isRelease && !conf.CheckForUnstable) {
if (conf.BuildState == BuildStates.RELEASE && !conf.CheckForUnstable) {
continue;
}
}