Skip to content

Commit

Permalink
Release/3.2.1 (#673)
Browse files Browse the repository at this point in the history
  • Loading branch information
macjuul authored Feb 6, 2025
1 parent 35d1a62 commit 98d16b3
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
CLOUD_CLIENT_ID: OuFa4OeeKveeRq1G6xIPgrl6EBUJtxLR
SCOUT_COPILOT_ID: copilot_cm3gcpzxw00020cs66takkem5
SCOUT_WORKFLOW_ID: wf_cm3gbr8vk00010ds6b1g0vnvv
INTERCOM_APP_ID: wf_cm3gbr8vk00010ds6b1g0vnvv
INTERCOM_APP_ID: xaac4vhr

jobs:
version:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
CLOUD_CALLBACK_URL_DEV: https://dev.surrealist.app/cloud/callback
SCOUT_COPILOT_ID: copilot_cm3gcpzxw00020cs66takkem5
SCOUT_WORKFLOW_ID: wf_cm3gbr8vk00010ds6b1g0vnvv
INTERCOM_APP_ID: wf_cm3gbr8vk00010ds6b1g0vnvv
INTERCOM_APP_ID: xaac4vhr

jobs:
version:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
CLOUD_CALLBACK_URL: https://surrealist.app/cloud/callback
SCOUT_COPILOT_ID: copilot_cm3gcpzxw00020cs66takkem5
SCOUT_WORKFLOW_ID: wf_cm3gbr8vk00010ds6b1g0vnvv
INTERCOM_APP_ID: wf_cm3gbr8vk00010ds6b1g0vnvv
INTERCOM_APP_ID: xaac4vhr

jobs:
version:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
CLOUD_CLIENT_ID: OuFa4OeeKveeRq1G6xIPgrl6EBUJtxLR
SCOUT_COPILOT_ID: copilot_cm3gcpzxw00020cs66takkem5
SCOUT_WORKFLOW_ID: wf_cm3gbr8vk00010ds6b1g0vnvv
INTERCOM_APP_ID: wf_cm3gbr8vk00010ds6b1g0vnvv
INTERCOM_APP_ID: xaac4vhr

jobs:
version:
Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,9 @@ Surrealist is a user interface for interacting with your [SurrealDB](https://sur
**Key features of Surrealist include:**

- **Visual querying** using the Query View, with support for query syntax highlighting, saved queries, and graph visualization.

- **Data exploration** using the Explorer View, where you can browse your tables, inspect records, and follow relationships.

- **Schema designing** using the Designer View, which generates a visual diagram of your database schema.

- **Surreal Cloud** management panel, allowing you to effortlessly provision and connect to your Cloud instances

- **Ask Sidekick** - a powerful AI assistant that helps you write queries, explore your data, and design your schema.

Learn more about Surrealist by visiting [the website](https://surrealdb.com/surrealist) or reading the [documentation](https://surrealdb.com/docs/surrealist).
Expand Down
31 changes: 30 additions & 1 deletion src/screens/surrealist/cloud-panel/pages/Settings/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { Box, Center, Loader, Stack, Text, TextInput } from "@mantine/core";
import { ActionIcon, Box, Center, CopyButton, Loader, Stack, Text, TextInput } from "@mantine/core";
import { useInputState } from "@mantine/hooks";
import { useLayoutEffect } from "react";
import { Icon } from "~/components/Icon";
import { Label } from "~/components/Label";
import { useOrganization } from "~/hooks/cloud";
import { useCloudStore } from "~/stores/cloud";
import { iconCheck, iconCopy } from "~/util/icons";
import { Section } from "../../components/Section";

export function SettingsPage() {
Expand Down Expand Up @@ -34,6 +36,33 @@ export function SettingsPage() {
withMaxWidth
>
<Box>
<Label>Organization id</Label>
<Text>The unique id of your organization</Text>
<TextInput
mt="xs"
value={organization?.id ?? ""}
readOnly
rightSection={
<CopyButton value={organization?.id ?? ""}>
{({ copied, copy }) => (
<ActionIcon
variant={copied ? "gradient" : undefined}
pos="absolute"
top={3}
right={3}
radius="xs"
onClick={copy}
aria-label="Copy code to clipboard"
>
<Icon path={copied ? iconCheck : iconCopy} />
</ActionIcon>
)}
</CopyButton>
}
/>
</Box>

<Box mt="md">
<Label>Organization name</Label>
<Text>The display name of your organization</Text>
<TextInput
Expand Down

0 comments on commit 98d16b3

Please sign in to comment.