Skip to content

Commit

Permalink
Editing remaining wrong naming
Browse files Browse the repository at this point in the history
  • Loading branch information
laisspportugal committed Aug 2, 2024
1 parent f40f52c commit b42373b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/suite-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lichtblick/suite-base",
"description": "Core components of Foxglove Studio",
"description": "Core components of Lichtblick Suite",
"private": true,
"productName": "Lichtblick",
"productDescription": "Lichtblick Suite",
Expand Down
2 changes: 1 addition & 1 deletion packages/suite-base/src/PanelAPI/useDataSourceInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export type DataSourceInfo = {

/**
* Data source info" encapsulates **rarely-changing** metadata about the source from which
* Foxglove Studio is loading data.
* Lichtblick Suite is loading data.
*
* A data source might be a local file, a remote file, or a streaming source.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const LogsSection = ({ logs }: { logs: readonly UserScriptLog[] }): JSX.Element
No logs to display.
</Typography>
<Typography variant="body2" color="text.secondary">
Invoke <code>log(someValue)</code> in your Foxglove Studio node code to see data printed
Invoke <code>log(someValue)</code> in your Lichtblick Suite node code to see data printed
here.
</Typography>
</Stack>
Expand Down
8 changes: 4 additions & 4 deletions packages/suite-desktop/src/preload/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,13 @@ export function main(): void {
},
async getExtensions() {
const homePath = (await ipcRenderer.invoke("getHomePath")) as string;
const userExtensionRoot = pathJoin(homePath, ".foxglove-studio", "extensions");
const userExtensionRoot = pathJoin(homePath, ".lichtblick-suite", "extensions");
const userExtensions = await getExtensions(userExtensionRoot);
return userExtensions;
},
async loadExtension(id: string) {
const homePath = (await ipcRenderer.invoke("getHomePath")) as string;
const userExtensionRoot = pathJoin(homePath, ".foxglove-studio", "extensions");
const userExtensionRoot = pathJoin(homePath, ".lichtblick-suite", "extensions");
return await loadExtension(id, userExtensionRoot);
},
async fetchLayouts() {
Expand All @@ -144,12 +144,12 @@ export function main(): void {
},
async installExtension(foxeFileData: Uint8Array) {
const homePath = (await ipcRenderer.invoke("getHomePath")) as string;
const userExtensionRoot = pathJoin(homePath, ".foxglove-studio", "extensions");
const userExtensionRoot = pathJoin(homePath, ".lichtblick-suite", "extensions");
return await installExtension(foxeFileData, userExtensionRoot);
},
async uninstallExtension(id: string): Promise<boolean> {
const homePath = (await ipcRenderer.invoke("getHomePath")) as string;
const userExtensionRoot = pathJoin(homePath, ".foxglove-studio", "extensions");
const userExtensionRoot = pathJoin(homePath, ".lichtblick-suite", "extensions");
return await uninstallExtension(id, userExtensionRoot);
},
handleTitleBarDoubleClick() {
Expand Down

0 comments on commit b42373b

Please sign in to comment.