Skip to content

Commit 06c296e

Browse files
committed
Changed project name
1 parent 00777cd commit 06c296e

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>ainm</name>
3+
<name>Idaesbasic</name>
44
<comment>Project ainm created by Buildship.</comment>
55
<projects>
66
</projects>

ainm.todo

Lines changed: 0 additions & 4 deletions
This file was deleted.

build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,9 @@ tasks.named('test') {
4040
useJUnitPlatform()
4141
}
4242

43-
mainClassName = 'org.ainm.Main'
43+
mainClassName = 'org.ainm.Main'
44+
jar {
45+
manifest {
46+
attributes 'Main-Class': 'org.ainm.Main'
47+
}
48+
}

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
* in the user manual at https://docs.gradle.org/7.3-rc-1/userguide/multi_project_builds.html
88
*/
99

10-
rootProject.name = 'ainm'
10+
rootProject.name = 'Idaesbasic'

src/main/java/org/ainm/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public void start(Stage stage) {
1515
Parent root = FXMLLoader.load(getClass().getResource("/fxml/MainView.fxml"));
1616
Scene scene = new Scene(root, 640, 480);
1717
stage.setScene(scene);
18-
stage.setTitle("Ainm - 0.8 - Alpha");
18+
stage.setTitle("Idaesbasic - 0.8 - Alpha");
1919
stage.setMaximized(true);
2020
stage.getIcons().add(new Image(Main.class.getResourceAsStream("/icon.png")));
2121
stage.show();

0 commit comments

Comments
 (0)