Skip to content

Commit 474ddab

Browse files
authored
Merge pull request #434 from dlsc-software-consulting-gmbh/enhancement-updated-links-for-jfxcentral2
Updated Links for jfxcentral2 and jfxcentral-data
2 parents 59549da + 4ac1c79 commit 474ddab

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ Welcome to the next version of JFXCentral. This repository contains the codebase
1212

1313
## Technical vs. Content Issues
1414

15-
If you do encounter any technical issues, then please [create a ticket in this repository](https://github.com/dlemmermann/jfxcentral2/issues). If the issue is related to content then please create the ticket in the issue tracker of the [jfxcentral-data](https://github.com/dlsc-software-consulting-gmbh/jfxcentral-data/issues) repository.
15+
If you do encounter any technical issues, then please [create a ticket in this repository](https://github.com/dlsc-software-consulting-gmbh/jfxcentral2/issues). If the issue is related to content then please create the ticket in the issue tracker of the [jfxcentral-data](https://github.com/dlsc-software-consulting-gmbh/jfxcentral-data/issues) repository.
1616

1717
![Screenshot](jfxcentral.jpg)

app/src/main/java/com/dlsc/jfxcentral2/app/RepositoryManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private static void initialLoad(ProgressMonitor monitor) throws Exception {
4343
if (!repoDirectory.exists()) {
4444
Git.cloneRepository()
4545
.setProgressMonitor(monitor)
46-
.setURI("https://github.com/dlemmermann/jfxcentral-data.git") //
46+
.setURI("https://github.com/dlsc-software-consulting-gmbh/jfxcentral-data.git") //
4747
.setBranch("live")
4848
.setDirectory(repoDirectory)
4949
.call();

app/src/main/java/com/dlsc/jfxcentral2/app/TrayIconManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,11 @@ public void refresh() {
113113
trayIcon.addSeparator();
114114

115115
MenuItem addInfoToJfxCentral = new MenuItem("Add Info to JFX-Central");
116-
addInfoToJfxCentral.setOnAction(evt -> showURL("https://github.com/dlemmermann/jfxcentral-data"));
116+
addInfoToJfxCentral.setOnAction(evt -> showURL("https://github.com/dlsc-software-consulting-gmbh/jfxcentral-data"));
117117
trayIcon.addMenuItem(addInfoToJfxCentral);
118118

119119
MenuItem reportIssue = new MenuItem("Report an Issue");
120-
reportIssue.setOnAction(evt -> showURL("https://github.com/dlemmermann/jfxcentral2/issues"));
120+
reportIssue.setOnAction(evt -> showURL("https://github.com/dlsc-software-consulting-gmbh/jfxcentral2/issues"));
121121
trayIcon.addMenuItem(reportIssue);
122122

123123
trayIcon.addSeparator();

components/src/main/java/com/dlsc/jfxcentral2/components/WelcomeView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ public WelcomeView(boolean mobile) {
6060
jfxCentralButton.setFocusTraversable(false);
6161
jfxCentralButton.setGraphic(new FontIcon(IkonUtil.github));
6262
jfxCentralButton.getStyleClass().addAll("transparent-button", "jfxcentral-button");
63-
LinkUtil.setExternalLink(jfxCentralButton, "https://github.com/dlemmermann/jfxcentral2");
63+
LinkUtil.setExternalLink(jfxCentralButton, "https://github.com/dlsc-software-consulting-gmbh/jfxcentral2");
6464

6565
jfxcentralDataButton = new Button("jfxcentral-data", new FontIcon(IkonUtil.github));
6666
jfxcentralDataButton.getStyleClass().addAll("transparent-button", "jfxcentral-data-button");
6767
jfxcentralDataButton.setFocusTraversable(false);
68-
LinkUtil.setExternalLink(jfxcentralDataButton, "https://github.com/dlemmermann/jfxcentral-data");
68+
LinkUtil.setExternalLink(jfxcentralDataButton, "https://github.com/dlsc-software-consulting-gmbh/jfxcentral-data");
6969

7070
Region graphicRegion = new Region();
7171
clientWebSwitchButton = new Button("Install locally", graphicRegion);

0 commit comments

Comments
 (0)