Skip to content

Commit

Permalink
- remove JetBrains as sponsor
Browse files Browse the repository at this point in the history
  • Loading branch information
derreisende77 committed Sep 19, 2024
1 parent ee2d07a commit f1823c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 20 deletions.
11 changes: 1 addition & 10 deletions src/main/java/mediathek/gui/dialog/AboutDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public AboutDialog(Window owner) {
hyperlinkOnlineHelp.addActionListener(l -> browseToUrl(Konstanten.ADRESSE_ONLINE_HELP));
hyperlinkFaq.addActionListener(l -> browseToUrl(Konstanten.ADRESSE_ONLINE_FAQ));

hyperlinkJetBrains.addActionListener(l -> browseToUrl("https://www.jetbrains.com"));
hyperlinkEjTechnologies.addActionListener(l -> browseToUrl("https://www.ej-technologies.com"));


Expand Down Expand Up @@ -90,7 +89,6 @@ private void initComponents() {
var panel6 = new JPanel();
var label4 = new JLabel();
var panel4 = new JPanel();
hyperlinkJetBrains = new JXHyperlink();
hyperlinkEjTechnologies = new JXHyperlink();

//======== this ========
Expand Down Expand Up @@ -248,17 +246,11 @@ private void initComponents() {
.grow().align("left"), //NON-NLS
// rows
new AC()
.fill().gap()
.fill()));

//---- hyperlinkJetBrains ----
hyperlinkJetBrains.setText("JetBrains IntelliJ"); //NON-NLS
hyperlinkJetBrains.setVerticalAlignment(SwingConstants.TOP);
panel4.add(hyperlinkJetBrains, new CC().cell(0, 0).growX());

//---- hyperlinkEjTechnologies ----
hyperlinkEjTechnologies.setText("ej-technologies install4j & JProfiler"); //NON-NLS
panel4.add(hyperlinkEjTechnologies, new CC().cell(0, 1).growX());
panel4.add(hyperlinkEjTechnologies, new CC().cell(0, 0).growX());
}
contentPane.add(panel4, new CC().cell(1, 2));
pack();
Expand All @@ -276,7 +268,6 @@ private void initComponents() {
private JXHyperlink hyperlinkForum;
private JXHyperlink hyperlinkOnlineHelp;
private JXHyperlink hyperlinkFaq;
private JXHyperlink hyperlinkJetBrains;
private JXHyperlink hyperlinkEjTechnologies;
// JFormDesigner - End of variables declaration //GEN-END:variables
}
13 changes: 3 additions & 10 deletions src/main/java/mediathek/gui/dialog/AboutDialog.jfd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
JFDML JFormDesigner: "8.1.1.0.298" Java: "17.0.7" encoding: "UTF-8"
JFDML JFormDesigner: "8.2.4.0.393" Java: "21.0.3" encoding: "UTF-8"

new FormModel {
contentType: "form/swing"
Expand Down Expand Up @@ -179,24 +179,17 @@ new FormModel {
add( new FormContainer( "javax.swing.JPanel", new FormLayoutManager( class net.miginfocom.swing.MigLayout ) {
"$layoutConstraints": "insets 0,hidemode 3,gap 0 0"
"$columnConstraints": "[grow,left]"
"$rowConstraints": "[fill][fill]"
"$rowConstraints": "[fill]"
} ) {
name: "panel4"
auxiliary() {
"JavaCodeGenerator.variableLocal": true
}
add( new FormComponent( "org.jdesktop.swingx.JXHyperlink" ) {
name: "hyperlinkJetBrains"
"text": "JetBrains IntelliJ"
"verticalAlignment": 1
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
"value": "cell 0 0,growx"
} )
add( new FormComponent( "org.jdesktop.swingx.JXHyperlink" ) {
name: "hyperlinkEjTechnologies"
"text": "ej-technologies install4j & JProfiler"
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
"value": "cell 0 1,growx"
"value": "cell 0 0,growx"
} )
}, new FormLayoutConstraints( class net.miginfocom.layout.CC ) {
"value": "cell 1 2"
Expand Down

0 comments on commit f1823c4

Please sign in to comment.