Tauri updated fork thewh1teagle/tauri#app
[dependencies]
tauri = { git = "https://github.com/thewh1teagle/tauri", branch = "app", features = [
"unstable",
"devtools",
"force-ipc-v1-protocol",
] } Tauri updated fork thewh1teagle/tauri#app
[dependencies]
tauri = { git = "https://github.com/thewh1teagle/tauri", branch = "app", features = [
"unstable",
"devtools",
"force-ipc-v1-protocol",
] } Install https://www.gpg4win.org/
Add to %appdata%\gnupg\gpg.conf to disable GUI asking password
code %appdata%\gnupg\gpg.conf
pinentry-mode loopback
default-cache-ttl 2592000
| ```console | |
| error: failed to select a version for the requirement `tauri-build = "^2.0.0-beta.2"` | |
| candidate versions found which didn't match: 2.0.0-beta.1, 2.0.0-beta.0, 2.0.0-alpha.14, ... | |
| location searched: crates.io index | |
| required by package `app v0.1.0 (/Users/user/Documents/tauri/app)` | |
| if you are looking for the prerelease package it needs to be specified explicitly | |
| tauri-build = { version = "2.0.0-beta.1" } | |
| perhaps a crate was updated and forgotten to be re-vendored? | |
| ``` |
Updating crates.io index
error: failed to select a version for `tauri`.
... required by package `tauri-plugin-dialog v2.0.0-beta.0 (/Users/user/Documents/tauri/plugins-workspace/plugins/dialog)`
... which satisfies path dependency `tauri-plugin-dialog` of package `app v0.1.0 (/Users/user/Documents/tauri/app)`
versions that meet the requirements `^2.0.0-beta.1` are: 2.0.0-beta.2, 2.0.0-beta.1
the package `tauri` links to the native library `Tauri`, but it conflicts with a previous package which links to `Tauri` as well:
package `tauri v2.0.0-beta.2 (/Users/user/Documents/tauri/tauri/core/tauri)`Write stream with mplayer to fifo file (ram)
mkfifo in
mplayer -dumpstream video.mp4 -dumpfile in| { | |
| "version": "v1.0.0", | |
| "notes": "Test version", | |
| "pub_date": "2020-06-22T19:25:57Z", | |
| "platforms": { | |
| "darwin-x86_64": { | |
| "signature": "Content of app.tar.gz.sig", | |
| "url": "https://github.com/username/reponame/releases/download/v1.0.0/app-x86_64.app.tar.gz" | |
| }, | |
| "darwin-aarch64": { |
| from typing import List | |
| from pathlib import Path | |
| import os | |
| import re | |
| import subprocess | |
| import sys | |
| class Dependency: | |
| def __init__(self, parent: Path, name: str, path: Path, address: str): |
| // Copyright 2019-2023 Tauri Programme within The Commons Conservancy | |
| // SPDX-License-Identifier: Apache-2.0 | |
| // SPDX-License-Identifier: MIT | |
| #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] | |
| use std::str::FromStr; | |
| use tauri::Manager; | |
| use url::Url; |
| import SwiftUI | |
| import WebKit | |
| struct WebView: NSViewRepresentable { | |
| let request: URLRequest | |
| func makeNSView(context: Context) -> WKWebView { | |
| return WKWebView() | |
| } |