修改位置

This commit is contained in:
zsyg
2025-07-02 10:28:33 +08:00
committed by GitHub
parent 259b075541
commit 983a0d5bf4
2 changed files with 0 additions and 0 deletions

115
README/en-US_README.md Normal file
View File

@@ -0,0 +1,115 @@
# Kortapp-z - Windows App Store -- Advocating for Open Source, Free Software, and No Ads
Setting a small flag: Never accept ads, continuously update.
## Open Source Practices
1. The project code is open source, allowing anyone to use, modify, distribute, or commercialize it, but the original author must be credited.
2. The project documentation is open source, allowing anyone to use, modify, distribute, or commercialize it, but the original author must be credited.
3. Project resources such as icons and screenshots are open source, allowing anyone to use, modify, distribute, or commercialize them, but the original author must be credited.
4. Any derivatives of the project (including but not limited to websites, apps, plugins, etc.) must adhere to the above open-source license.
5. The project does not accept any form of advertising, and ads must not be placed anywhere.
6. The project does not accept any form of donations.
7. The project does not accept any form of sponsorship.
8. The project welcomes PRs (Pull Requests) in any form. Submitting issues is not required.
9. You can submit PRs for your own projects. However, if the star count is below 1k, they will be deleted.
## Project Overview
A simple Windows app store application that provides software download and management features.
Offers software management, download management, built-in tools, and more.
## Features
- Clean software download interface
- Download progress management
- Supports background downloads
- Beautiful app card display
- Functional and structured code handling
## Build and Packaging
### System Requirements
- .NET 8.0 SDK
- Windows 10/11
### Packaging Commands
#### 32-bit Version
```bash
dotnet publish -c Release -r win-x86 -p:PublishSingleFile=true
```
#### 64-bit Version
```bash
dotnet publish -c Release -r win-x64 -p:PublishSingleFile=true
```
The packaged executable will include the specified application icon and be output to:
```
bin\Release\net8.0-windows\[platform]\publish
```
### Advanced Options
- Add `--self-contained true` to generate a standalone package (larger size).
- Add `-p:PublishTrimmed=true` to reduce package size (experimental).
## Project Structure
```
kortapp-z/
├── MainForm.cs # Main form logic
├── DownloadManager.cs # Download management
├── AppCard.cs # App card control
├── DownloadItem.cs # Download item control
├── img/ # Image resources
│ ├── ico/ # Icon files
│ └── png/ # App screenshots
└── resource/ # Resource files
└── aria2c.exe # Download tool
```
## Runtime Requirements
- .NET 8.0 runtime (if using framework-dependent deployment)
- Windows 10 or later
## License
MIT License
Copyright (c) 2025 zsyg
## Other Websites
Gitee Mirror Repository: https://gitee.com/chr_super/kortapp-z (Currently no longer maintained)
## Maintenance
Since I rarely use Gitee and find it cumbersome to operate, the Gitee mirror will no longer be synced. If anyone knows how to set up a mirror, please help. Contact me via QQ: 3872006562 or DM me on Bilibili. I will acknowledge your help in the README. Thank you!
Due to a conflict with Daye, Windowscleaner will never be listed. I will strive on my own.
Note: Due to GitHub file upload restrictions, rename `img/png/NET.png` to `.NET.png`; otherwise, the program may encounter unexpected issues.
Anyone can add their own legal software via PR.
Author's Email:
```
3872006562@qq.com
```
Author's QQ:
```
3872006562
```
QQ Group:
```
1043867176
```
Bilibili Account:
```
Zayisynth
```

113
README/zh-TW_README.md Normal file
View File

@@ -0,0 +1,113 @@
# Kortapp-z - Windows應用商店 --主張軟體開源、免費,拒絕廣告
小立一個flag從不接受廣告不停更新
## 專案開源行為
1. 專案程式碼開源,允許任何人使用、修改、分發、商用,但必須註明原作者。
2. 專案文件開源,允許任何人使用、修改、分發、商用,但必須註明原作者。
3. 專案圖示、截圖等資源開源,允許任何人使用、修改、分發、商用,但必須註明原作者。
4. 專案的任何衍生品包括但不限於網站、APP、外掛等必須遵循以上開源協議。
5. 專案不接受任何形式的廣告,不得在任何地方投放廣告。
6. 專案不接受任何形式的捐贈。
7. 專案不接受任何形式的贊助。
8. 專案可以進行PR歡迎任何形式的PR不提交issue也可以
9. 本專案可以PR一些你自己的專案如果star數量不到1k都會被刪除
## 專案簡介
一個簡單的Windows應用商店應用提供軟體下載和管理功能。
提供軟體管理、下載管理、內建工具使用等功能
## 功能特點
- 簡潔的軟體下載介面
- 下載進度管理
- 支援後台下載
- 美觀的應用卡片展示
- 功能化、結構化的程式碼處理
## 構建與打包
### 系統要求
- .NET 8.0 SDK
- Windows 10/11
### 打包指令
#### 32位版本
```bash
dotnet publish -c Release -r win-x86 -p:PublishSingleFile=true
```
#### 64位版本
```bash
dotnet publish -c Release -r win-x64 -p:PublishSingleFile=true
```
打包後的可執行文件將包含指定的應用程式圖示,輸出路徑為:
```
bin\Release\net8.0-windows\[platform]\publish
```
### 進階選項
- 添加`--self-contained true`可生成獨立包(體積較大)
- 添加`-p:PublishTrimmed=true`可減小包體積(實驗性)
## 專案結構
```
kortapp-z/
├── MainForm.cs # 主視窗邏輯
├── DownloadManager.cs # 下載管理
├── AppCard.cs # 應用卡片控制項
├── DownloadItem.cs # 下載項控制項
├── img/ # 圖片資源
│ ├── ico/ # 圖示文件
│ └└── png/ # 應用截圖
└└── resource/ # 資源文件
└└── aria2c.exe # 下載工具
```
## 執行要求
- .NET 8.0執行時(如果使用框架依賴發布)
- Windows 10或更高版本
## 授權許可
MIT License
Copyright (c) 2025 zsyg
## 其他網站
gitee鏡像倉庫:https://gitee.com/chr_super/kortapp-z (目前已停止維護)
## 維護
由於gitee我沒怎麼用而且操作麻煩gitee鏡像將不會繼續同步有懂得人可以幫我搞下鏡像嗎qq 3872006562也可以b站直接私信我會在readme中鳴謝的謝謝各位
由於和Daye發生了矛盾所以windowscleaner將永遠不上架我要自己努力
提示由於github上傳文件的限制img/png/NET.png請改名為.NET.png否則程式可能出現無法預料的問題
每一個人都可以通過PR添加屬於自己的合法軟體
作者郵箱:
```
3872006562@qq.com
```
作者qq號:
```
3872006562
```
qq群
```
1043867176
```
b站帳號
```
Zayisynth
```