add LICENSE comments
This commit is contained in:
parent
3e12f9ec2e
commit
2428c96b26
@ -1,10 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "app"
|
name = "app"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
description = "A Tauri App"
|
description = "Oh My Mailbox App"
|
||||||
authors = ["you"]
|
authors = ["zyxkad@gmail.com"]
|
||||||
license = ""
|
license = "Apache-2.0"
|
||||||
repository = ""
|
repository = "https://gitea.ghink.net/Ghink/omm-client.git"
|
||||||
default-run = "app"
|
default-run = "app"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
rust-version = "1.57"
|
rust-version = "1.57"
|
||||||
|
12
README.md
12
README.md
@ -2,7 +2,15 @@
|
|||||||
|
|
||||||
Client of Oh My Mailbox
|
Client of Oh My Mailbox
|
||||||
|
|
||||||
### Compile application
|
### Compile and Hot-Reload for Development
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
bash build.sh
|
cargo tauri dev
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Compile application
|
||||||
|
|
||||||
|
```sh
|
||||||
|
cargo tauri build
|
||||||
|
```
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 87ac7062b83005c4dd3122f89f7597cd0fa22cfd
|
Subproject commit 80d933b5591cb0fb9895a83a29944b20fdefdab4
|
17
src/main.rs
17
src/main.rs
@ -1,3 +1,20 @@
|
|||||||
|
/*
|
||||||
|
|
||||||
|
Copyright 2022 zyxkad@gmail.com
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
#![cfg_attr(
|
#![cfg_attr(
|
||||||
all(not(debug_assertions), target_os = "windows"),
|
all(not(debug_assertions), target_os = "windows"),
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
"devPath": "http://127.0.0.1:13280"
|
"devPath": "http://127.0.0.1:13280"
|
||||||
},
|
},
|
||||||
"package": {
|
"package": {
|
||||||
"productName": "omm-client",
|
"productName": "Omm-Client",
|
||||||
"version": "0.1.0"
|
"version": "0.1.0"
|
||||||
},
|
},
|
||||||
"tauri": {
|
"tauri": {
|
||||||
@ -15,8 +15,8 @@
|
|||||||
},
|
},
|
||||||
"bundle": {
|
"bundle": {
|
||||||
"active": true,
|
"active": true,
|
||||||
"category": "DeveloperTool",
|
"category": "Utility",
|
||||||
"copyright": "",
|
"copyright": "Apache-2.0",
|
||||||
"deb": {
|
"deb": {
|
||||||
"depends": []
|
"depends": []
|
||||||
},
|
},
|
||||||
@ -34,11 +34,14 @@
|
|||||||
"entitlements": null,
|
"entitlements": null,
|
||||||
"exceptionDomain": "",
|
"exceptionDomain": "",
|
||||||
"frameworks": [],
|
"frameworks": [],
|
||||||
|
"license": "./LICENSE",
|
||||||
"providerShortName": null,
|
"providerShortName": null,
|
||||||
"signingIdentity": null
|
"signingIdentity": null
|
||||||
},
|
},
|
||||||
"resources": [],
|
"resources": [
|
||||||
"shortDescription": "",
|
"./LICENSE"
|
||||||
|
],
|
||||||
|
"shortDescription": "Oh My MailBox client application",
|
||||||
"targets": "all",
|
"targets": "all",
|
||||||
"windows": {
|
"windows": {
|
||||||
"certificateThumbprint": null,
|
"certificateThumbprint": null,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user