Skip to content

Commit

Permalink
use https links as src
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars committed Nov 23, 2023
1 parent db9448d commit 91fe7b6
Show file tree
Hide file tree
Showing 16 changed files with 42 additions and 42 deletions.
8 changes: 4 additions & 4 deletions plugins/authenticator/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-authenticator](banner.png)
![plugin-authenticator](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/authenticator/banner.png)

Use hardware security-keys in your Tauri App.

Expand Down Expand Up @@ -76,7 +76,7 @@ const r2 = await auth.verifyRegistration(
challenge,
app,
registerResult.registerData,
registerResult.clientData,
registerResult.clientData
);
const j2 = JSON.parse(r2);

Expand All @@ -91,7 +91,7 @@ const counter = await auth.verifySignature(
signData.signData,
clientData,
keyHandle,
pubkey,
pubkey
);

if (counter && counter > 0) {
Expand All @@ -110,7 +110,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/autostart/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-autostart](banner.png)
![plugin-autostart](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/autostart/banner.png)

Automatically launch your application at startup. Supports Windows, Mac (via AppleScript or Launch Agent), and Linux.

Expand Down Expand Up @@ -73,7 +73,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/fs-extra/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![tauri-plugin-fs-extra](banner.png)
![plugin-fs-extra](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/fs-extra/banner.png)

Additional file system methods not included in the core API.

Expand Down Expand Up @@ -67,7 +67,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
8 changes: 4 additions & 4 deletions plugins/fs-watch/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-fs-watch](banner.png)
![plugin-fs-watch](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/fs-watch/banner.png)

Watch files and directories for changes using [notify](https://github.com/notify-rs/notify).

Expand Down Expand Up @@ -59,15 +59,15 @@ const stopWatching = await watch(
(event) => {
const { kind, path } = event;
},
{ recursive: true },
{ recursive: true }
);

const stopRawWatcher = await watchImmediate(
["/path/a", "/path/b"],
(event) => {
const { type, paths, attrs } = event;
},
{},
{}
);
```

Expand All @@ -82,7 +82,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/localhost/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-localhost](banner.png)
![plugin-localhost](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/localhost/banner.png)

Expose your apps assets through a localhost server instead of the default custom protocol.

Expand Down Expand Up @@ -74,7 +74,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/log/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-log](banner.png)
![plugin-log](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/log/banner.png)

Configurable logging for your Tauri app.

Expand Down Expand Up @@ -90,7 +90,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/persisted-scope/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-persisted-scope](banner.png)
![plugin-persisted-scope](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/persisted-scope/banner.png)

Save filesystem and asset scopes and restore them when the app is reopened.

Expand Down Expand Up @@ -49,7 +49,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/positioner/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-positioner](banner.png)
![plugin-positioner](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/positioner/banner.png)

Position your windows at well-known locations.

Expand Down Expand Up @@ -94,7 +94,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/single-instance/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![tauri-plugin-single-instance](banner.png)
![plugin-single-instance](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/single-instance/banner.png)

Ensure a single instance of your tauri app is running.

Expand Down Expand Up @@ -59,7 +59,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
12 changes: 6 additions & 6 deletions plugins/sql/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-sql](banner.png)
![plugin-sql](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/sql/banner.png)

Interface with SQL databases through [sqlx](https://github.com/launchbadge/sqlx). It supports the `sqlite`, `mysql` and `postgres` drivers, enabled by a Cargo feature.

Expand Down Expand Up @@ -76,23 +76,23 @@ We use sqlx as our underlying library, adopting their query syntax:
// INSERT and UPDATE examples for sqlite and postgres
const result = await db.execute(
"INSERT into todos (id, title, status) VALUES ($1, $2, $3)",
[todos.id, todos.title, todos.status],
[todos.id, todos.title, todos.status]
);

const result = await db.execute(
"UPDATE todos SET title = $1, completed = $2 WHERE id = $3",
[todos.title, todos.status, todos.id],
[todos.title, todos.status, todos.id]
);

// INSERT and UPDATE examples for mysql
const result = await db.execute(
"INSERT into todos (id, title, status) VALUES (?, ?, ?)",
[todos.id, todos.title, todos.status],
[todos.id, todos.title, todos.status]
);

const result = await db.execute(
"UPDATE todos SET title = ?, completed = ? WHERE id = ?",
[todos.title, todos.status, todos.id],
[todos.title, todos.status, todos.id]
);
```

Expand All @@ -107,7 +107,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/store/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-store](banner.png)
![plugin-store](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/store/banner.png)

Simple, persistent key-value store.

Expand Down Expand Up @@ -114,7 +114,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/stronghold/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-stronghold](banner.png)
![plugin-stronghold](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/stronghold/banner.png)

Store secrets and keys using the [IOTA Stronghold](https://github.com/iotaledger/stronghold.rs) encrypted database and secure runtime.

Expand Down Expand Up @@ -71,7 +71,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
8 changes: 4 additions & 4 deletions plugins/upload/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-upload](banner.png)
![plugin-upload](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/upload/banner.png)

Upload files from disk to a remote server over HTTP.
Download files from a remote HTTP server to disk.
Expand Down Expand Up @@ -58,7 +58,7 @@ upload(
"https://example.com/file-upload",
"./path/to/my/file.txt",
(progress, total) => console.log(`Uploaded ${progress} of ${total} bytes`), // a callback that will be called with the upload progress
{ "Content-Type": "text/plain" }, // optional headers to send with the request
{ "Content-Type": "text/plain" } // optional headers to send with the request
);
```

Expand All @@ -69,7 +69,7 @@ download(
"https://example.com/file-download-link",
"./path/to/save/my/file.txt",
(progress, total) => console.log(`Downloaded ${progress} of ${total} bytes`), // a callback that will be called with the download progress
{ "Content-Type": "text/plain" }, // optional headers to send with the request
{ "Content-Type": "text/plain" } // optional headers to send with the request
);
```

Expand All @@ -84,7 +84,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/websocket/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-websocket](banner.png)
![plugin-websocket](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/websocket/banner.png)

<!-- description -->

Expand Down Expand Up @@ -71,7 +71,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions plugins/window-state/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![plugin-window-state](banner.png)
![plugin-window-state](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/window-state/banner.png)

Save window positions and sizes and restore them when the app is reopened.

Expand Down Expand Up @@ -95,7 +95,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions shared/template/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![{{plugin name}}](banner.jpg)
![{{plugin name}}](https://github.com/tauri-apps/plugins-workspace/raw/v1/plugins/{{plugin name}}/banner.png)

<!-- description -->

Expand Down Expand Up @@ -67,7 +67,7 @@ PRs accepted. Please make sure to read the Contributing Guide before making a pu
<tr>
<td align="center" valign="middle">
<a href="https://crabnebula.dev" target="_blank">
<img src="/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
<img src="https://github.com/tauri-apps/plugins-workspace/raw/v1/.github/sponsors/crabnebula.svg" alt="CrabNebula" width="283">
</a>
</td>
</tr>
Expand Down

0 comments on commit 91fe7b6

Please sign in to comment.