Skip to content

Commit

Permalink
Merge pull request #5232 from voxel51/release/v1.1.0
Browse files Browse the repository at this point in the history
Release/v1.1.0
  • Loading branch information
findtopher authored Dec 6, 2024
2 parents 52321f1 + f03fd0b commit b5f4f39
Show file tree
Hide file tree
Showing 371 changed files with 17,308 additions and 12,560 deletions.
1 change: 1 addition & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
runs-on: ubuntu-latest-m
env:
FIFTYONE_DO_NOT_TRACK: true
FIFTYONE_APP_DEFAULT_QUERY_PERFORMANCE: false
FIFTYONE_DATABASE_URI: mongodb://localhost:27017
FIFTYONE_DATABASE_NAME: playwright
ELECTRON_EXTRA_LAUNCH_ARGS: "--disable-gpu"
Expand Down
1 change: 1 addition & 0 deletions app/packages/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
<div id="teams"></div>
<div id="modal"></div>
<div id="colorModal"></div>
<div id="queryPerformance"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>
3 changes: 3 additions & 0 deletions app/packages/app/public/model_evaluation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions app/packages/app/src/components/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
GitHubLink,
Header,
IconButton,
SlackLink,
DiscordLink,
iconContainer,
} from "@fiftyone/components";
import { ViewBar } from "@fiftyone/core";
Expand Down Expand Up @@ -111,7 +111,7 @@ const Nav: React.FC<
>
{mode === "dark" ? <LightMode color="inherit" /> : <DarkMode />}
</IconButton>
<SlackLink />
<DiscordLink />
<GitHubLink />
<DocsLink />
</div>
Expand Down
4 changes: 2 additions & 2 deletions app/packages/app/src/components/Setup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {
DocsLink,
GitHubLink,
Header,
SlackLink,
DiscordLink,
iconContainer,
useTheme,
} from "@fiftyone/components";
Expand Down Expand Up @@ -190,7 +190,7 @@ const Setup = () => {
<div data-cy="setup-page">
<Header title={"FiftyOne"}>
<div className={iconContainer} style={{ flex: 1 }}>
<SlackLink />
<DiscordLink />
<GitHubLink />
<DocsLink />
</div>
Expand Down
22 changes: 11 additions & 11 deletions app/packages/app/src/pages/__generated__/IndexPageQuery.graphql.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion app/packages/app/src/pages/datasets/DatasetPage.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Dataset, Snackbar, Starter } from "@fiftyone/core";
import { Dataset, Snackbar, Starter, QueryPerformanceToast } from "@fiftyone/core";
import "@fiftyone/embeddings";
import "@fiftyone/map";
import { OperatorCore } from "@fiftyone/operators";
Expand Down Expand Up @@ -115,6 +115,7 @@ const DatasetPage: Route<DatasetPageQuery> = ({ prepared }) => {
)}
</div>
<Snackbar />
<QueryPerformanceToast />
</Nav>
);
};
Expand Down
Loading

0 comments on commit b5f4f39

Please sign in to comment.