Skip to content

Commit

Permalink
Merge pull request #36 from FunThomas424242/#35_state_aborted
Browse files Browse the repository at this point in the history
close #35 state aborted
  • Loading branch information
Huluvu424242 authored Mar 4, 2020
2 parents e537a62 + 175e07c commit 7dde5fa
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Die Versionierung erfolgt nach http://semver.org/lang/de/[Semantic Versioning].
== [undelivered]
=== Added

* https://github.com/FunThomas424242/jenkinsmonitor/issues/35[issue #35] Zustand Abgebrochen aufgenommen
* https://github.com/FunThomas424242/jenkinsmonitor/issues/32[issue #32] Datei mit Verhaltensregeln steht bereit
* https://github.com/FunThomas424242/jenkinsmonitor/issues/25[issue #25] Basic Authentification wird unterstützt
* https://github.com/FunThomas424242/jenkinsmonitor/issues/22[issue #22] Windows Skripte korrigiert
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
​<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2013 First Lastname <your@email.com> -->
<!--
#%L
Jenkins Monitor
%%
Copyright (C) 2019 - 2020 PIUG
%%
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Lesser Public License for more details.
You should have received a copy of the GNU General Lesser Public
License along with this program. If not, see
<http://www.gnu.org/licenses/lgpl-3.0.html>.
#L%
-->
​<component type="desktop-application">
​ <id>com.github.funthomas424242.jenkinsmonitor</id>
​ <metadata_license>FSFAP</metadata_license>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ public enum JobStatus {
SUCCESS(Color.green),
FAILURE(Color.red),
UNSTABLE(Color.yellow),
// lightGray statt gray wegen gray Anomalie!
ABORTED(Color.lightGray),
// lightGray statt gray wegen gray Anomalie!;
OTHER(Color.lightGray);

protected Color color;
Expand Down

0 comments on commit 7dde5fa

Please sign in to comment.