Rename project [stage]

This commit is contained in:
crschnick
2023-05-20 14:23:36 +00:00
parent 19f4b0abc4
commit 623d6be4ad
40 changed files with 165 additions and 165 deletions

View File

@@ -52,7 +52,7 @@ public class BrowseDirectoryComp extends SimpleComp {
if (sc.getOsType().equals(OsType.WINDOWS)) {
sc.executeSimpleCommand(ScriptHelper.createDetachCommand(sc, "\"" + script + "\""));
} else {
TerminalHelper.open("X-Pipe Debug", "\"" + script + "\"");
TerminalHelper.open("XPipe Debug", "\"" + script + "\"");
}
}
});

View File

@@ -37,7 +37,7 @@ public class App extends Application {
icon = AppImages.image("logo.png");
// Set dock icon explicitly on mac
// This is necessary in case X-Pipe was started through a script as it will have no icon otherwise
// This is necessary in case XPipe was started through a script as it will have no icon otherwise
if (OsType.getLocal().equals(OsType.MACOS)) {
try {
var iconUrl = Main.class.getResourceAsStream("resources/img/logo.png");

View File

@@ -69,7 +69,7 @@ public class AppExtensionManager {
Path p = Path.of(localInstallation);
if (!Files.exists(p)) {
throw new IllegalStateException(
"Required local X-Pipe installation was not found but is required for development");
"Required local XPipe installation was not found but is required for development");
}
var extensions = XPipeInstallation.getLocalExtensionsDirectory(p);

View File

@@ -41,7 +41,7 @@ public class AppTray {
.menuItem(AppI18n.get("quit"), e -> {
OperationMode.close();
})
.toolTip("X-Pipe")
.toolTip("XPipe")
.build();
this.errorHandler = new TrayErrorHandler();
}

View File

@@ -21,7 +21,7 @@ import java.util.List;
import java.util.concurrent.Callable;
@CommandLine.Command(
header = "Launches the X-Pipe daemon.",
header = "Launches the XPipe daemon.",
sortOptions = false,
showEndOfOptionsDelimiterInUsageHelp = true)
public class LauncherCommand implements Callable<Integer> {

View File

@@ -110,7 +110,7 @@ public interface ExternalTerminalType extends PrefsChoiceValue {
@Override
protected String toCommand(String name, String file) {
// Note for later: When debugging konsole launches, it will always open as a child process of
// IntelliJ/X-Pipe even though we try to detach it.
// IntelliJ/XPipe even though we try to detach it.
// This is not the case for production where it works as expected
return "--new-tab -e \"" + file + "\"";
}

View File

@@ -204,7 +204,7 @@ public class AppInstaller {
exec || read -rsp "Update failed ..."$'\\n' -n 1 key
""",
file, file));
TerminalHelper.open("X-Pipe Updater", command);
TerminalHelper.open("XPipe Updater", command);
}
}
@@ -241,7 +241,7 @@ public class AppInstaller {
exec || read -rsp "Update failed ..."$'\\n' -n 1 key
""",
file, file));
TerminalHelper.open("X-Pipe Updater", command);
TerminalHelper.open("XPipe Updater", command);
}
}
@@ -279,7 +279,7 @@ public class AppInstaller {
exec || read -rsp "Update failed ..."$'\\n' -n 1 key
""",
file, file));
TerminalHelper.open("X-Pipe Updater", command);
TerminalHelper.open("XPipe Updater", command);
}
}
}

View File

@@ -32,7 +32,7 @@ public class DesktopShortcuts {
[Desktop Entry]
Type=Application
Name=%s
Comment=Open with X-Pipe
Comment=Open with XPipe
Exec="%s" open %s
Icon=%s
Terminal=false

View File

@@ -11,7 +11,7 @@ public class Hyperlinks {
public static final String SECURITY = "https://github.com/xpipe-io/xpipe/blob/master/SECURITY.md";
public static final String DISCORD = "https://discord.gg/8y89vS8cRb";
public static final String SLACK =
"https://join.slack.com/t/x-pipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg";
"https://join.slack.com/t/XPipe/shared_invite/zt-1awjq0t5j-5i4UjNJfNe1VN4b_auu6Cg";
public static final String DOCS_PRIVACY = "https://xpipe.io/docs/privacy";
static final String[] browsers = {

View File

@@ -19,12 +19,12 @@ public class XPipeSession {
boolean isNewBuildSession;
/**
* Unique identifier that resets on every X-Pipe restart.
* Unique identifier that resets on every XPipe restart.
*/
UUID sessionId;
/**
* Unique identifier that resets on every X-Pipe update.
* Unique identifier that resets on every XPipe update.
*/
UUID buildSessionId;