Skip to content

Commit

Permalink
Authme 4.0.3 (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer authored Mar 4, 2023
1 parent 10483a4 commit 8f9c690
Show file tree
Hide file tree
Showing 8 changed files with 276 additions and 269 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### Authme 4.0.2 (2022. January 10.)

- [[ee8828a](https://github.com/Levminer/authme/commit/ee8828a)] Update packages and Tauri #246 (2023-01-10)
- [[ac1e171](https://github.com/Levminer/authme/commit/ac1e171)] Bump version (2023-01-10)
- [[78a2481](https://github.com/Levminer/authme/commit/78a2481)] Update release-artifacts.yml (2023-01-10)
- [[281527e](https://github.com/Levminer/authme/commit/281527e)] Update changelog (2022-12-14)

### Authme 4.0.1 (2022. December 13.)

- [[6fdbd2b](https://github.com/Levminer/authme/commit/6fdbd2b)] Update hardware info (2022-12-13)
Expand Down
2 changes: 1 addition & 1 deletion core/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
}
},
"security": {
"csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'"
"csp": "default-src blob: data: filesystem: ws: http: https: 'unsafe-eval' 'unsafe-inline' 'self' img-src: 'self'; script-src 'unsafe-eval'"
},
"updater": {
"active": true,
Expand Down
2 changes: 1 addition & 1 deletion interface/components/navigation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
</div>

<script lang="ts">
import { active } from "tinro"
import { active } from "@baileyherbert/tinro"
</script>
2 changes: 1 addition & 1 deletion interface/components/routeTransition.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
{/key}

<script>
import { router } from "tinro"
import { router } from "@baileyherbert/tinro"
import { fade } from "svelte/transition"
</script>
2 changes: 1 addition & 1 deletion interface/layout/app.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
</div>

<script lang="ts">
import { Route, router } from "tinro"
import { Route, router } from "@baileyherbert/tinro"
import { onMount } from "svelte"
import { state } from "../stores/state"
import { number, version } from "../../build.json"
Expand Down
2 changes: 1 addition & 1 deletion interface/utils/navigate.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { shell } from "@tauri-apps/api"
import { router } from "tinro"
import { router } from "@baileyherbert/tinro"

/**
* Go to the specified link
Expand Down
Loading

0 comments on commit 8f9c690

Please sign in to comment.