Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
phenomen committed Nov 21, 2024
2 parents da68c54 + d822edf commit e065c8a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## v6.3.0

- Fixed issue with opening multiple windows of the same Foundry server.
- Enabled SharedArrayBuffer (for Ripper93 Media Optimizer and similar modules).

## v6.2.0

> [!WARNING]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flc",
"version": "6.2.0",
"version": "6.3.0",
"description": "Foundry Lightweight Client",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

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

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flc"
version = "6.2.0"
version = "6.3.0"
description = "Foundry Lightweight Client"
authors = ["phenomen"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "FLC",
"version": "6.2.0",
"version": "6.3.0",
"identifier": "com.phenomen.flc",
"build": {
"beforeDevCommand": "npm run dev",
Expand Down
4 changes: 2 additions & 2 deletions src/lib/scripts/webview.svelte.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { WebviewWindow } from "@tauri-apps/api/webviewWindow";
import { toast } from "svelte-sonner";
import { nanoid } from "nanoid";

export async function openWebview(url: string, id: string, title: string) {
const webview = new WebviewWindow(`foundry-${id}`, {
const webview = new WebviewWindow(`foundry-${id}-${nanoid()}`, {
title: `Foundry VTT - ${title}`,
url,
x: 0,
Expand Down

0 comments on commit e065c8a

Please sign in to comment.