Revert "update banners to absolute paths"

This reverts commit c8b8f9309e.
This commit is contained in:
Lorenzo Lewis
2023-07-28 19:48:34 +01:00
parent c8b8f9309e
commit fa28ed881d
27 changed files with 93 additions and 93 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
![plugin-app](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/app/banner.png)
![plugin-app](banner.png)
This plugin provides APIs to read application metadata and macOS app visibility functions.
@@ -60,7 +60,7 @@ fn main() {
Afterwards all the plugin's APIs are available through the JavaScript guest bindings:
```javascript
import { getVersion, hide } from '@tauri-apps/plugin-app';
import { getVersion, hide } from "@tauri-apps/plugin-app";
const appVersion = await getVersion();
await hide();
```