add metadata [skip ci]

pull/536/head
Lucas Nogueira 2 years ago
parent 8419ca5784
commit f47737a27d
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1

2
Cargo.lock generated

@ -5150,7 +5150,7 @@ dependencies = [
[[package]]
name = "tauri-plugin-barcode-scanner"
version = "1.0.0"
version = "2.0.0-alpha.0"
dependencies = [
"log",
"serde",

@ -11,7 +11,7 @@
"dependencies": {
"@tauri-apps/api": "2.0.0-alpha.5",
"@tauri-apps/plugin-app": "2.0.0-alpha.0",
"@tauri-apps/plugin-barcode-scanner": "1.0.0",
"@tauri-apps/plugin-barcode-scanner": "2.0.0-alpha.0",
"@tauri-apps/plugin-cli": "2.0.0-alpha.0",
"@tauri-apps/plugin-clipboard-manager": "2.0.0-alpha.0",
"@tauri-apps/plugin-dialog": "2.0.0-alpha.0",

@ -47,7 +47,7 @@ tauri-plugin-global-shortcut = { path = "../../../plugins/global-shortcut", vers
tauri-plugin-updater = { path = "../../../plugins/updater", version = "2.0.0-alpha.0" }
[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "1.0.0" }
tauri-plugin-barcode-scanner = { path = "../../../plugins/barcode-scanner/", version = "2.0.0-alpha.0" }
[target."cfg(target_os = \"windows\")".dependencies]
window-shadows = "0.2"

@ -1,6 +1,7 @@
[package]
name = "tauri-plugin-barcode-scanner"
version = "1.0.0"
version = "2.0.0-alpha.0"
description = "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS"
edition = { workspace = true }
authors = { workspace = true }
license = { workspace = true }

@ -1,4 +1,4 @@
![Barcode Scanner](banner.jpg)
![Barcode Scanner](banner.png)
Allows your mobile application to use the camera to scan QR codes, EAN-13 and other kinds of barcodes.

Before

Width:  |  Height:  |  Size: 48 KiB

After

Width:  |  Height:  |  Size: 48 KiB

@ -1,6 +1,7 @@
{
"name": "@tauri-apps/plugin-barcode-scanner",
"version": "1.0.0",
"version": "2.0.0-alpha.0",
"description": "Scan QR codes, EAN-13 and other kinds of barcodes on Android and iOS",
"license": "MIT or APACHE-2.0",
"authors": [
"Tauri Programme within The Commons Conservancy"
@ -24,7 +25,7 @@
"LICENSE"
],
"devDependencies": {
"tslib": "^2.4.1"
"tslib": "^2.5.0"
},
"dependencies": {
"@tauri-apps/api": "2.0.0-alpha.5"

@ -66,7 +66,7 @@ importers:
specifier: 2.0.0-alpha.0
version: link:../../plugins/app
'@tauri-apps/plugin-barcode-scanner':
specifier: 1.0.0
specifier: 2.0.0-alpha.0
version: link:../../plugins/barcode-scanner
'@tauri-apps/plugin-cli':
specifier: 2.0.0-alpha.0
@ -173,7 +173,7 @@ importers:
version: 2.0.0-alpha.5
devDependencies:
tslib:
specifier: ^2.4.1
specifier: ^2.5.0
version: 2.5.0
plugins/cli:

Loading…
Cancel
Save