fixed and improved profile pictures
This commit is contained in:
1
src-tauri/Cargo.lock
generated
1
src-tauri/Cargo.lock
generated
@@ -444,6 +444,7 @@ dependencies = [
|
||||
"tauri",
|
||||
"tauri-build",
|
||||
"tauri-plugin-dialog",
|
||||
"tauri-plugin-fs",
|
||||
"tauri-plugin-http",
|
||||
"tauri-plugin-opener",
|
||||
"tauri-plugin-store",
|
||||
|
||||
@@ -27,4 +27,5 @@ tauri-plugin-http = "2"
|
||||
tauri-plugin-websocket = "2"
|
||||
tauri-plugin-upload = "2"
|
||||
tauri-plugin-dialog = "2"
|
||||
tauri-plugin-fs = "2"
|
||||
|
||||
|
||||
@@ -15,6 +15,9 @@
|
||||
{
|
||||
"url": "http://127.0.0.1:*"
|
||||
},
|
||||
{
|
||||
"url": "http://192.168.1.183:*"
|
||||
},
|
||||
{
|
||||
"url": "https://alatreon.org/chatapp/*"
|
||||
}
|
||||
@@ -27,6 +30,9 @@
|
||||
{
|
||||
"url": "ws://127.0.0.1:*"
|
||||
},
|
||||
{
|
||||
"url": "http://192.168.1.183:*"
|
||||
},
|
||||
{
|
||||
"url": "wss://alatreon.org/chatapp/*"
|
||||
}
|
||||
@@ -34,7 +40,14 @@
|
||||
},
|
||||
"websocket:default",
|
||||
"upload:default",
|
||||
"dialog:default"
|
||||
"dialog:default",
|
||||
"fs:default",
|
||||
{
|
||||
"identifier": "fs:scope",
|
||||
"allow": [
|
||||
"*"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||
|
||||
<!-- AndroidTV support -->
|
||||
<uses-feature android:name="android.software.leanback" android:required="false" />
|
||||
|
||||
@@ -7,6 +7,7 @@ fn greet(name: &str) -> String {
|
||||
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
||||
pub fn run() {
|
||||
tauri::Builder::default()
|
||||
.plugin(tauri_plugin_fs::init())
|
||||
.plugin(tauri_plugin_dialog::init())
|
||||
.plugin(tauri_plugin_upload::init())
|
||||
.plugin(tauri_plugin_websocket::init())
|
||||
|
||||
Reference in New Issue
Block a user