-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #656 from dlsc-software-consulting-gmbh/develop
Develop
- Loading branch information
Showing
26 changed files
with
690 additions
and
296 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Install on iOS Device" type="MavenRunConfiguration" factoryName="Maven"> | ||
<MavenSettings> | ||
<option name="myGeneralSettings" /> | ||
<option name="myRunnerSettings" /> | ||
<option name="myRunnerParameters"> | ||
<MavenRunnerParameters> | ||
<option name="cmdOptions" /> | ||
<option name="profiles"> | ||
<set /> | ||
</option> | ||
<option name="goals"> | ||
<list> | ||
<option value="gluonfx:build" /> | ||
<option value="gluonfx:package" /> | ||
<option value="gluonfx:install" /> | ||
</list> | ||
</option> | ||
<option name="multimoduleDir" /> | ||
<option name="pomFileName" value="pom.xml" /> | ||
<option name="profilesMap"> | ||
<map> | ||
<entry key="ios" value="true" /> | ||
</map> | ||
</option> | ||
<option name="projectsCmdOptionValues"> | ||
<list /> | ||
</option> | ||
<option name="resolveToWorkspace" value="false" /> | ||
<option name="workingDirPath" value="$PROJECT_DIR$/app" /> | ||
</MavenRunnerParameters> | ||
</option> | ||
</MavenSettings> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
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
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
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 |
---|---|---|
@@ -1,18 +1,2 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.8/apache-maven-3.8.8-bin.zip | ||
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar | ||
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar |
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
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
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
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
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 |
---|---|---|
|
@@ -7,6 +7,9 @@ | |
import javafx.scene.control.Label; | ||
import javafx.scene.image.Image; | ||
import javafx.scene.layout.HBox; | ||
import javafx.scene.layout.Region; | ||
import javafx.scene.layout.VBox; | ||
import javafx.scene.text.TextAlignment; | ||
import one.jpro.platform.routing.LinkUtil; | ||
import org.kordamp.ikonli.javafx.FontIcon; | ||
import scala.Option; | ||
|
@@ -36,14 +39,21 @@ public LinksOfTheWeekHeader() { | |
CustomImageView rssImageView = new CustomImageView(); | ||
rssImageView.setImage(RSS_IMAGE); | ||
LinkUtil.setLinkInternalNoPush(rssImageView, "/lotw/rss.xml", Option.empty(), false); | ||
//rssImageView.setVisible(false); | ||
//rssImageView.setManaged(false); | ||
|
||
HBox box = new HBox(label, rssImageView); | ||
box.getStyleClass().add("rss-box"); | ||
box.setAlignment(Pos.CENTER); | ||
|
||
setContent(box); | ||
Label descriptionLabel = new Label("Do you have JavaFX news you want to share with the community? Let us know!\nSend a mail to [email protected]"); | ||
descriptionLabel.getStyleClass().add("description-label"); | ||
descriptionLabel.setWrapText(true); | ||
descriptionLabel.setMinHeight(Region.USE_PREF_SIZE); | ||
descriptionLabel.setTextAlignment(TextAlignment.CENTER); | ||
|
||
VBox vbox = new VBox(20, box, descriptionLabel); | ||
vbox.setAlignment(Pos.CENTER); | ||
|
||
setContent(vbox); | ||
setTitle("Links of the Week"); | ||
setIkon(IkonUtil.getModelIkon(LinksOfTheWeek.class)); | ||
setBackgroundImage(BACKGROUND_IMAGE); | ||
|
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
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
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
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
Oops, something went wrong.