forked from jverein/jverein
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
"Über"-Dialog an aktuellen Stand angepasst. (#148)
- Loading branch information
Showing
1 changed file
with
7 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,12 +52,13 @@ protected void paint(Composite parent) throws Exception | |
l.setImage(SWTUtil.getImage("JVerein.png")); | ||
|
||
FormTextPart text = new FormTextPart(); | ||
text.setText("<form><p><b>" | ||
+ "Plugin für die Vereinsverwaltung unter Jameica" + "</b></p>" | ||
+ "<br/>Lizenz: GPL [ http://www.gnu.org/copyleft/gpl.html ]" | ||
+ "<br/><p>Copyright by Heiner Jostkleigrewe [ [email protected] ]</p>" | ||
+ "<p>web: https://openjverein.github.io</p>" | ||
+ "<p>Forum: https://jverein-forum.de</p></form>"); | ||
text.setText("<form>" | ||
+ "<p><b>Plugin für die Vereinsverwaltung unter Jameica</b></p>" | ||
+ "<p>Lizenz: GPLv3 https://www.gnu.org/licenses/gpl-3.0.html</p>" | ||
+ "<p>Web: https://openjverein.github.io</p>" | ||
+ "<p>Forum: https://jverein-forum.de</p>" | ||
+ "<p>GitHub: https://github.com/openjverein/jverein</p>" | ||
+ "<p>Dokumentation: https://openjverein.gitbook.io/doku</p></form>"); | ||
|
||
text.paint(parent); | ||
|
||
|