-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/7.0.0' into 'master'
Release/7.0.0 See merge request PlayWall/PlayWallDesktop!4
- Loading branch information
Showing
485 changed files
with
8,276 additions
and
7,738 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
18 changes: 9 additions & 9 deletions
18
PlayWall/src/main/java/de/tobias/playpad/AppUserInfoStrings.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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
package de.tobias.playpad; | ||
|
||
public class AppUserInfoStrings { | ||
import de.thecodelabs.utils.application.ApplicationInfo; | ||
|
||
public static final String WEBSITE = "Website"; | ||
public static final String REPOSITORY = "Repository"; | ||
public interface AppUserInfoStrings extends ApplicationInfo.CustomUserInfo { | ||
|
||
public static final String PLUGINS_URL_STABLE = "PluginsURL.Stable"; | ||
public static final String PLUGINS_URL_BETA = "PluginsURL.Beta"; | ||
String website(); | ||
|
||
public static final String CHANGELOG_URL = "ChangelogURL"; | ||
public static final String UPDATER_PROGRAM = "UpdaterProgram"; | ||
String repository(); | ||
|
||
public static final String SERVER = "Server"; | ||
public static final String ACCOUNT_REGISTER = "AccountRegister"; | ||
String changelogURL(); | ||
|
||
String server(); | ||
|
||
String accountRegister(); | ||
} |
Oops, something went wrong.