Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Box mit Changelog bei JVerein update #606

Merged
merged 4 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/de/jost_net/JVerein/JVereinPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.rmi.RemoteException;

import de.jost_net.JVerein.gui.navigation.MyExtension;
import de.jost_net.JVerein.gui.view.DokumentationUtil;
import de.jost_net.JVerein.io.UmsatzMessageConsumer;
import de.jost_net.JVerein.rmi.JVereinDBService;
import de.jost_net.JVerein.server.JVereinDBServiceImpl;
Expand Down Expand Up @@ -157,7 +158,7 @@ public void call(JVereinDBService service) throws RemoteException
+ " Alle Änderungen sind auf folgender Seite zu finden:");
msg.setIcon("gtk-info.png");
msg.setComment("Änderungen.....");
tolot27 marked this conversation as resolved.
Show resolved Hide resolved
msg.setUrl("https://openjverein.gitbook.io/doku/versionen/v2.9.0/notes");
msg.setUrl(DokumentationUtil.CHANGELOG);
Application.getMessagingFactory().getMessagingQueue("jameica.boot")
.queueMessage(msg);
}
Expand Down
3 changes: 3 additions & 0 deletions src/de/jost_net/JVerein/gui/view/DokumentationUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -223,4 +223,7 @@ public class DokumentationUtil
public static final String MITGRATION = PRE + FUNKTIONEN + ADMIN + ADMERWEITERT + "migration";

public static final String QIFIMPORT = PRE + FUNKTIONEN + ADMIN + ADMERWEITERT + "qif-import";

// Changelog bei Update
public static final String CHANGELOG = PRE + FUNKTIONEN + "notes";
tolot27 marked this conversation as resolved.
Show resolved Hide resolved
}
Loading