-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[General Settings] Added validation for sound click
- Loading branch information
Showing
8 changed files
with
84 additions
and
54 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
...in/java/com/stream_pi/server/window/settings/general/GeneralSettingsActionGridRecord.java
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,4 @@ | ||
package com.stream_pi.server.window.settings.general; | ||
|
||
public class GeneralSettingsActionGridRecord { | ||
} |
4 changes: 4 additions & 0 deletions
4
...in/java/com/stream_pi/server/window/settings/general/GeneralSettingsConnectionRecord.java
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,4 @@ | ||
package com.stream_pi.server.window.settings.general; | ||
|
||
public record GeneralSettingsConnectionRecord(String serverName, int port, String IP) { | ||
} |
4 changes: 4 additions & 0 deletions
4
...ain/java/com/stream_pi/server/window/settings/general/GeneralSettingsLocationsRecord.java
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,4 @@ | ||
package com.stream_pi.server.window.settings.general; | ||
|
||
public record GeneralSettingsLocationsRecord() { | ||
} |
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
6 changes: 6 additions & 0 deletions
6
src/main/java/com/stream_pi/server/window/settings/general/GeneralSettingsOthersRecord.java
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,6 @@ | ||
package com.stream_pi.server.window.settings.general; | ||
|
||
import java.util.Locale; | ||
|
||
public record GeneralSettingsOthersRecord(Locale currentLanguageLocale, boolean minimiseToSystemTrayOnClose, boolean startOnBoot, boolean showAlertsPopup) { | ||
} |
4 changes: 4 additions & 0 deletions
4
...m/stream_pi/server/window/settings/general/GeneralSettingsSoundOnActionClickedRecord.java
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,4 @@ | ||
package com.stream_pi.server.window.settings.general; | ||
|
||
public record GeneralSettingsSoundOnActionClickedRecord(boolean soundOnActionClickedStatus, String soundOnActionClickedFilePath) { | ||
} |
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
4 changes: 2 additions & 2 deletions
4
src/main/resources/com/stream_pi/server/info/build.properties
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,4 +1,4 @@ | ||
#maven.buildNumber.plugin properties file | ||
#Thu Jun 30 00:07:30 IST 2022 | ||
#Thu Jun 30 12:19:19 IST 2022 | ||
build.number=${buildNumber} | ||
buildNumber=251 | ||
buildNumber=263 |