Skip to content

Commit

Permalink
Release 3.0.7 (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
macjuul authored Oct 10, 2024
1 parent eafe362 commit 6dbd6b9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "surrealist",
"private": true,
"version": "3.0.6",
"version": "3.0.7",
"surreal": "2.0.0",
"type": "module",
"authors": [
Expand Down
4 changes: 2 additions & 2 deletions src/adapter/mini.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class MiniAdapter extends BrowserAdapter {

// Initial query
if (query) {
mainTab.query = dedent(decodeURIComponent(query));
mainTab.query = dedent(query);
}

// Initial variables
Expand Down Expand Up @@ -111,7 +111,7 @@ export class MiniAdapter extends BrowserAdapter {

// Execute a startup query
if (setup) {
this.#setupQuery = decodeURIComponent(setup);
this.#setupQuery = setup;
}

// Interface theme
Expand Down
9 changes: 9 additions & 0 deletions src/assets/changelogs/3.0.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: Surrealist 3.0.7
summary: Minor improvements
date: 2024/10/09
---

- Significantly increased the maximum zoom level in the Designer view
- Fixed the functions editor extending out of bounds
- Surrealist mini improvements

0 comments on commit 6dbd6b9

Please sign in to comment.