Skip to content

Commit

Permalink
Updated to version 1.0.1 and edited pom.xml for building
Browse files Browse the repository at this point in the history
  • Loading branch information
ilveron committed Jul 20, 2022
1 parent 75459b0 commit c82e2fa
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 2 deletions.
30 changes: 30 additions & 0 deletions .idea/artifacts/MediaPlayerUID_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified MediaPlayerDb.db
Binary file not shown.
54 changes: 53 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>it.unical.sadstudents</groupId>
<artifactId>MediaPlayerUID</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.1-RELEASE</version>
<name>MediaPlayerUID</name>

<properties>
Expand All @@ -19,11 +19,37 @@
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>17.0.1</version>
<classifier>win</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>17.0.1</version>
<classifier>linux</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>17.0.1</version>
<classifier>mac</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>17.0.1</version>
<classifier>win</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>17.0.1</version>
<classifier>linux</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>17.0.1</version>
<classifier>mac</classifier>
</dependency>
<dependency>
<groupId>org.kordamp.ikonli</groupId>
Expand All @@ -35,12 +61,38 @@
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
<version>17.0.1</version>
<classifier>win</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
<version>17.0.1</version>
<classifier>linux</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-media</artifactId>
<version>17.0.1</version>
<classifier>mac</classifier>
</dependency>
<!-- https://mvnrepository.com/artifact/org.openjfx/javafx-swing -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<version>17.0.1</version>
<classifier>win</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<version>17.0.1</version>
<classifier>linux</classifier>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-swing</artifactId>
<version>17.0.1</version>
<classifier>mac</classifier>
</dependency>
<dependency>
<groupId>org.kordamp.ikonli</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class SettingsController implements Initializable {

@Override
public void initialize(URL url, ResourceBundle resourceBundle) {
lblCredits.setText( "Version 1.0.0"+ System.lineSeparator() +
lblCredits.setText( "Version 1.0.1"+ System.lineSeparator() +
"Software developed in June/July 2022 by the " + "SadStudents" +" group:" + System.lineSeparator() +
" > Ernesto Rapisarda" + System.lineSeparator() +
" > Alessandro Monetti" + System.lineSeparator() +
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: it.unical.sadstudents.mediaplayeruid.MainApplication

0 comments on commit c82e2fa

Please sign in to comment.