Skip to content

Commit

Permalink
Fixed naming
Browse files Browse the repository at this point in the history
  • Loading branch information
tlonny committed Jan 25, 2025
1 parent b3517bd commit 43ee3ba
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DreamLink
# Dreamlink

![ci](https://github.com/tlonny/dreamlink/actions/workflows/release.yml/badge.svg)

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project>
<groupId>io.lonny</groupId>
<modelVersion>4.0.0</modelVersion>
<artifactId>DreamLink</artifactId>
<artifactId>Dreamlink</artifactId>
<version>1.0.2</version>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public int getCharacterSize() {

}

private static String windowTitle = "DreamLink: Credits";
private static String windowTitle = "Dreamlink: Credits";
private static String thanksPrefix = "Thanks to: ";
private static Vector2i logoDimensions = new Vector2i(128, 128);
private static Vector2i listDimensions = new Vector2i(180, 180);
Expand Down
2 changes: 1 addition & 1 deletion src/dreamlink/overlay/home/edit/HomeEditComponent.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void gotoEdit(LocalRoom room) {

}

private static final String windowTitle = "DreamLink: Edit";
private static final String windowTitle = "Dreamlink: Edit";
private static final String backButtonText = "Back";
private static final Vector2ic buttonDimensions = new Vector2i(160, 24);
private static final Vector2ic windowSize = new Vector2i(480, 340);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

public class HomeExploreComponent extends WrapperComponent {

private static final String windowTitle = "DreamLink: Explore";
private static final String windowTitle = "Dreamlink: Explore";
private static final Vector2ic windowSize = new Vector2i(480, 320);
private static final int iconSpacing = 5;
private static final Vector2ic iconDimensions = new Vector2i(16, 16);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public boolean isSliderDisabled() {
}

private final static int spacing = 5;
private final static String title = "DreamLink: Settings";
private final static String title = "Dreamlink: Settings";

private static final String saveButtonText = "Save";
private static final String backButtonText = "Back";
Expand Down
2 changes: 1 addition & 1 deletion src/dreamlink/window/WindowGLFWModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

public class WindowGLFWModule {

private static final String windowTitle = "DreamLink";
private static final String windowTitle = "Dreamlink";

private long windowID;

Expand Down

0 comments on commit 43ee3ba

Please sign in to comment.