This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "v0.1.0", | |
"pub_date": "2022-07-24T22:55:50Z", | |
"platforms": { | |
"linux-x86_64": { | |
"signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVRdTcyMlFiTzlhY2hHL3dXelhPTDJISEhwcGtiaDJWV0YvRC9tZXQ3a1hRUVRvclRQSEVHYVRGQWx0U2FNc3VMT3F6VUFrTDNJUE5uWTZ6SXdiYVhUcGlZcG45eldBM1FnPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNjU4NjY5ODE2CWZpbGU6dXBkYXRlcl8wLjEuMF9hbWQ2NC5BcHBJbWFnZS50YXIuZ3oKQ2trVGRzWnZhai9VSkFDUnIvMWt6QnpEQVNnMzdtS04rK2lEMDl0b3kyYzdoemVQa3c2ZG8zWTJQM1hueWNPdzRXNjZWKzNTbUpSQXBlSmxJVHBlQUE9PQo=", | |
"url": "https://github.com/lucasfernog/discourse/releases/download/v2.8.0.beta7/updater_0.1.0_amd64.AppImage.tar.gz" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"additionalProperties": false, | |
"defaultProperties": [ | |
], | |
"definitions": { | |
"CliArg": { | |
"additionalProperties": false, | |
"defaultProperties": [ | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.tauri = { | |
invoke: window.__TAURI__.invoke, | |
promisified: window.__TAURI__.promisified, | |
transformCallback: window.__TAURI__.transformCallback, | |
listen: window.__TAURI__.event.listen, | |
emit: window.__TAURI__.event.emit, | |
Dir: window.__TAURI__.fs.Dir, | |
readTextFile: window.__TAURI__.fs.readTextFile, | |
readBinaryFile: window.__TAURI__.fs.readBinaryFile, | |
writeFile: window.__TAURI__.fs.writeFile, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const wasm = import('./pkg/iota_wasm') | |
class Client { | |
constructor(uri) { | |
this.clientConfig = { | |
uri | |
} | |
} | |
getNodeInfo() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated by UI | |
.build | |
node_modules | |
# Generated by Cargo | |
src-tauri/target/ | |
# Generated by Tauri | |
src-tauri/tauri.js | |
src-tauri/WixTools/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Ext { | |
} | |
impl tauri::extension::Extension for Ext { | |
fn ready(&self, webview: &mut tauri_ui::WebView<'_, ()>) { | |
println!("ready"); | |
tauri::event::emit(webview.handle(), "test", "'a'".to_string()); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<q-page class="flex flex-center"> | |
<div class="col"> | |
<img alt="Quasar logo" src="statics/icons/icon-128x128.png"> | |
<q-input class="col-12" label="Search folder..." v-model="path" outlined filled @keypress.enter="getFiles()"> | |
<template #append> | |
<q-icon class="cursor-pointer" name="search" @click="getFiles()"/> | |
</template> | |
</q-input> |