Skip to content

Commit 5ad6ef6

Browse files
committed
Merge branch 'development'
2 parents da83ee8 + 34e8597 commit 5ad6ef6

20 files changed

+564
-51
lines changed

.circleci/config.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -334,12 +334,6 @@ jobs:
334334
- install-rust
335335
- deploy-mac-release:
336336
target-arch: arm64
337-
- run: |
338-
mkdir -p ~/dist && cp bazel-bin/typedb-studio-mac-arm64.dmg ~/dist
339-
- persist_to_workspace:
340-
root: ~/dist
341-
paths:
342-
- ./*
343337

344338
deploy-mac-x86_64-release:
345339
executor: mac-arm64
@@ -354,12 +348,6 @@ jobs:
354348
- install-rust
355349
- deploy-mac-release:
356350
target-arch: x86_64
357-
- run: |
358-
mkdir -p ~/dist && cp bazel-bin/typedb-studio-mac-x86_64.dmg ~/dist
359-
- persist_to_workspace:
360-
root: ~/dist
361-
paths:
362-
- ./*
363351

364352
deploy-linux-arm64-release:
365353
executor: linux-arm64

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ yarn-error.log
1313

1414
# IDEs and editors
1515
.idea/
16+
.ijwb
1617
.project
1718
.classpath
1819
.c9/

BUILD

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ exports_files(["VERSION"])
6767

6868
genrule(
6969
name = "native-artifact-mac-x86_64-dmg",
70-
outs = ["typedb-studio_3.4.0-rc0_amd64.dmg"], # replace with your actual output, e.g., .exe, .AppImage
70+
outs = ["typedb-studio_3.4.0-rc1_amd64.dmg"], # replace with your actual output, e.g., .exe, .AppImage
7171
cmd = """
7272
cp src-tauri/target/release/bundle/dmg/*.dmg "$(OUTS)"
7373
""",
@@ -77,7 +77,7 @@ genrule(
7777

7878
genrule(
7979
name = "native-artifact-mac-arm64-dmg",
80-
outs = ["typedb-studio_3.4.0-rc0_aarch64.dmg"], # replace with your actual output, e.g., .exe, .AppImage
80+
outs = ["typedb-studio_3.4.0-rc1_aarch64.dmg"], # replace with your actual output, e.g., .exe, .AppImage
8181
cmd = """
8282
cp src-tauri/target/release/bundle/dmg/*.dmg "$(OUTS)"
8383
""",
@@ -87,7 +87,7 @@ genrule(
8787

8888
genrule(
8989
name = "native-artifact-linux-arm64-deb",
90-
outs = ["typedb-studio_3.4.0-rc0_arm64.deb"], # replace with your actual output, e.g., .exe, .AppImage
90+
outs = ["typedb-studio_3.4.0-rc1_arm64.deb"], # replace with your actual output, e.g., .exe, .AppImage
9191
cmd = """
9292
cp src-tauri/target/release/bundle/deb/*.deb "$(OUTS)"
9393
""",
@@ -97,7 +97,7 @@ genrule(
9797

9898
genrule(
9999
name = "native-artifact-linux-x86_64-deb",
100-
outs = ["typedb-studio_3.4.0-rc0_amd64.deb"], # replace with your actual output, e.g., .exe, .AppImage
100+
outs = ["typedb-studio_3.4.0-rc1_amd64.deb"], # replace with your actual output, e.g., .exe, .AppImage
101101
cmd = """
102102
cp src-tauri/target/release/bundle/deb/*.deb "$(OUTS)"
103103
""",
@@ -107,7 +107,7 @@ genrule(
107107

108108
genrule(
109109
name = "native-artifact-windows-x86_64-msi",
110-
outs = ["typedb-studio_3.4.0-rc0_amd64.msi"], # replace with your actual output, e.g., .exe, .AppImage
110+
outs = ["typedb-studio_3.4.0-rc1_amd64.msi"], # replace with your actual output, e.g., .exe, .AppImage
111111
cmd = """
112112
cp src-tauri/target/release/bundle/msi/*.msi "$(OUTS)"
113113
""",
@@ -245,6 +245,7 @@ deploy_artifact(
245245
version_file = ":VERSION",
246246
visibility = ["//visibility:public"],
247247
target_compatible_with = constraint_mac_x86_64,
248+
tags = ["manual", "no-ide"],
248249
)
249250

250251
deploy_artifact(
@@ -257,6 +258,7 @@ deploy_artifact(
257258
version_file = ":VERSION",
258259
visibility = ["//visibility:public"],
259260
target_compatible_with = constraint_mac_arm64,
261+
tags = ["manual", "no-ide"],
260262
)
261263

262264
deploy_artifact(
@@ -269,6 +271,7 @@ deploy_artifact(
269271
version_file = ":VERSION",
270272
visibility = ["//visibility:public"],
271273
target_compatible_with = constraint_linux_x86_64,
274+
tags = ["manual", "no-ide"],
272275
)
273276

274277
deploy_artifact(
@@ -281,6 +284,7 @@ deploy_artifact(
281284
version_file = ":VERSION",
282285
visibility = ["//visibility:public"],
283286
target_compatible_with = constraint_linux_arm64,
287+
tags = ["manual", "no-ide"],
284288
)
285289

286290
deploy_artifact(
@@ -293,6 +297,7 @@ deploy_artifact(
293297
version_file = ":VERSION",
294298
visibility = ["//visibility:public"],
295299
target_compatible_with = constraint_win_x86_64,
300+
tags = ["manual", "no-ide"],
296301
)
297302

298303
label_flag(

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.4.0-rc0
1+
3.4.0-rc1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typedb-studio",
3-
"version": "3.4.0-rc0",
3+
"version": "3.4.0-rc1",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typedb-studio"
3-
version = "3.4.0-rc0"
3+
version = "3.4.0-rc1"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "typedb-studio",
4-
"version": "3.4.0-rc0",
4+
"version": "3.4.0-rc1",
55
"identifier": "com.typedb.studio",
66
"build": {
77
"beforeDevCommand": "pnpm start",
@@ -33,7 +33,7 @@
3333
],
3434
"windows": {
3535
"wix": {
36-
"version": "0.0.340"
36+
"version": "0.0.341"
3737
}
3838
},
3939
"macOS": {

src/concept/view-state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
export const sidebarStates = ["expanded", "collapsed"] as const;
88
export type SidebarState = typeof sidebarStates[number];
99

10-
export const tools = ["query", "explore"] as const;
10+
export const tools = ["query", "explore", "schema"] as const;
1111
export type Tool = typeof tools[number];

src/framework/graph-visualiser/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ export class GraphVisualiser {
5151
if (res.ok.answerType == "conceptRows" && res.ok.query != null) {
5252
let converter = new StudioConverter(this.graph, res.ok.query, false, this.structureParameters, this.styleParameters);
5353
let logicalGraph = constructGraphFromRowsResult(res.ok); // In memory, not visualised
54-
this.graph.clear();
5554
convertLogicalGraphWith(logicalGraph, converter);
5655
}
5756
}

0 commit comments

Comments
 (0)