From 2428c96b266a5440b48a23800c53a4866616f862 Mon Sep 17 00:00:00 2001 From: zyxkad Date: Tue, 23 Aug 2022 16:26:55 -0600 Subject: [PATCH] add LICENSE comments --- Cargo.toml | 8 ++++---- README.md | 12 ++++++++++-- omm-front | 2 +- src/main.rs | 17 +++++++++++++++++ tauri.conf.json | 13 ++++++++----- 5 files changed, 40 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2f1dbb2..46fa984 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "app" version = "0.1.0" -description = "A Tauri App" -authors = ["you"] -license = "" -repository = "" +description = "Oh My Mailbox App" +authors = ["zyxkad@gmail.com"] +license = "Apache-2.0" +repository = "https://gitea.ghink.net/Ghink/omm-client.git" default-run = "app" edition = "2021" rust-version = "1.57" diff --git a/README.md b/README.md index da28059..2c88bc1 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,15 @@ Client of Oh My Mailbox -### Compile application +### Compile and Hot-Reload for Development + ```sh -bash build.sh +cargo tauri dev ``` + +### Compile application + +```sh +cargo tauri build +``` + diff --git a/omm-front b/omm-front index 87ac706..80d933b 160000 --- a/omm-front +++ b/omm-front @@ -1 +1 @@ -Subproject commit 87ac7062b83005c4dd3122f89f7597cd0fa22cfd +Subproject commit 80d933b5591cb0fb9895a83a29944b20fdefdab4 diff --git a/src/main.rs b/src/main.rs index d058ce6..e10fc44 100644 --- a/src/main.rs +++ b/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( all(not(debug_assertions), target_os = "windows"), diff --git a/tauri.conf.json b/tauri.conf.json index 129b699..9bc0d2b 100644 --- a/tauri.conf.json +++ b/tauri.conf.json @@ -6,7 +6,7 @@ "devPath": "http://127.0.0.1:13280" }, "package": { - "productName": "omm-client", + "productName": "Omm-Client", "version": "0.1.0" }, "tauri": { @@ -15,8 +15,8 @@ }, "bundle": { "active": true, - "category": "DeveloperTool", - "copyright": "", + "category": "Utility", + "copyright": "Apache-2.0", "deb": { "depends": [] }, @@ -34,11 +34,14 @@ "entitlements": null, "exceptionDomain": "", "frameworks": [], + "license": "./LICENSE", "providerShortName": null, "signingIdentity": null }, - "resources": [], - "shortDescription": "", + "resources": [ + "./LICENSE" + ], + "shortDescription": "Oh My MailBox client application", "targets": "all", "windows": { "certificateThumbprint": null,