Skip to content

Commit a9e82db

Browse files
authored
Merge pull request #16 from Pip-Manager/development
README
2 parents 7151469 + 49e75df commit a9e82db

File tree

2 files changed

+35
-41
lines changed

2 files changed

+35
-41
lines changed

README.md

Lines changed: 31 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
<h3 align="center">Pip Manager</h3>
1010

1111
<p align="center">
12-
A Python Package Manager (pip based)
12+
基于 Pip 的图形化 Python 包管理器
1313
<br />
14-
<a href="https://pipmanager.dev"><strong>Explore the docs (Chinese Simplified) »</strong></a>
14+
<a href="https://pipmanager.dev"><strong>查看文档(WIP) »</strong></a>
1515
<br />
1616
<br />
17-
<a href="/Pip-Manager/PipManager.Windows?tab=readme-ov-file#screenshots">Screenshots</a>
17+
<a href="/Pip-Manager/PipManager.Windows?tab=readme-ov-file#screenshots">展示</a>
1818
·
19-
<a href="/Pip-Manager/PipManager.Windows/issues">Report Bug</a>
19+
<a href="/Pip-Manager/PipManager.Windows/issues">报告 Bug</a>
2020
·
21-
<a href="/Pip-Manager/PipManager.Windows/pulls">Request Feature</a>
21+
<a href="/Pip-Manager/PipManager.Windows/pulls">新功能请求</a>
2222
</p>
2323
</div>
2424

@@ -35,60 +35,52 @@
3535

3636
该项目现已依赖[PipManager.Core](https://github.com/Pip-Manager/PipManager.Core)并逐渐迁移
3737

38-
---
39-
40-
## About Pip Manager
38+
有关项目进展和计划:[2024 PipManager Roadmap](https://github.com/Pip-Manager/PipManager.Windows/issues/3)
4139

42-
Pip Manager is a package manager for Python newcomers (based on Pip)
40+
---
4341

44-
Features:
45-
* GUI
46-
* Integration of most Pip commands
47-
* Multi-Pip environment switching
42+
## 关于 Pip Manager
4843

49-
Easier operation of Pip is the goal of Pip Manager.
44+
Pip Manager 是一个为 Python 新手设计的包管理工具,基于原生的 Pip,专门用来简化 Pip 的使用过程。
5045

51-
### Technology
46+
### 特性:
47+
* **GUI**
48+
Pip Manager 提供了一种简洁、直观的图形用户界面,让用户可以轻松地使用原来需要通过命令行执行的 Pip 功能。
49+
50+
* **集成常用命令**
51+
Pip Manager 对 Pip 的部分常用功能进行了集成,如安装、卸载、查看包信息、更新等常用操作。
5252

53-
<img height="200" alt="language csharp" src="https://raw.githubusercontent.com/jonacruz89/SAWARATSUKI.ServiceLogos/main/C%23/C%23%20Purple.png"/>
53+
* **多环境切换**
54+
Pip Manager 支持多环境切换,在不同项目之间灵活管理包的依赖关系。
5455

55-
Pip Manager is based on the following technology stacks:
56+
### 技术栈
5657

5758
[![.NET Core][.NET Core]][.NET-url][![WPF][WPF]][WPF-url]
5859

59-
<p align="right">(<a href="#readme-top">back to top</a>)</p>
60+
## 展示
6061

61-
## Screenshots
62+
![light.jpeg](https://r2.pipmanager.dev/pipManager-screenshots-1.png)
63+
![dark.jpeg](https://r2.pipmanager.dev/pipManager-screenshots-2.png)
6264

63-
![light.jpeg](https://loli.tc/images/light.jpeg)
64-
![dark.jpeg](https://loli.tc/images/dark.jpeg)
65+
## 使用
6566

66-
## Getting Started
67+
如果你的电脑上安装了[.Net 8 桌面运行时](https://dotnet.microsoft.com/download/dotnet/8.0),请下载 `PipManager.exe` 并启动;否则启动 `PipManager_withRuntime.exe`
6768

68-
Double click `PipManager.exe` or `PipManager_withRuntime.exe` *If you have not installed [.Net 8 Desktop Runtime](https://dotnet.microsoft.com/download/dotnet/8.0)*
69+
### 命令行参数
6970

70-
### Arguments
71+
- `/console`: 在程序运行时弹出控制台窗口显示日志
7172

72-
- `/console`: Show console while program running
73+
## 共同改进
7374

74-
<p align="right">(<a href="#readme-top">back to top</a>)</p>
75+
1. Fork 该项目
76+
2. 提交更改
77+
3. Push 到该仓库的 `development` 分支
78+
4. 提交一个 Pull Request
7579

76-
See the [Open Issues](https://github.com/Pip-Manager/PipManager.Wpf/issues) for a full list of proposed features (and known issues).
77-
78-
## Contributing
79-
80-
1. Fork the Project
81-
2. Create your Feature Branch
82-
3. Commit your Changes
83-
4. Push to the Branch `development`
84-
5. Open a Pull Request
85-
86-
## License
80+
## 许可证
8781

8882
Distributed under the MIT License. See `LICENSE` for more information.
8983

90-
Kawaii `C#` Logo in [Technology Stack](#technology-stack) is created by [SAWATSUKI](https://github.com/SAWARATSUKI)
91-
9284
<p align="right">(<a href="#readme-top">back to top</a>)</p>
9385

9486
[github-downloads-shield]: https://img.shields.io/github/downloads/Pip-Manager/PipManager.Wpf/total.svg?style=for-the-badge&color=blue

build.ps1

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
param(
22
[string] $Architecture = "x64",
3-
[string] $Version = "0.1.0.0"
3+
[string] $Version = "0.1.1.0"
44
)
55

66
$ErrorActionPreference = "Stop";
@@ -9,12 +9,14 @@ Write-Output "Start building singleWithRuntime...";
99

1010
dotnet publish src/PipManager.Windows.csproj -c Release -r "win-$Architecture" -o "build/$Version/singleWithRuntime" -p:Platform=$Architecture -p:PublishReadyToRun=true -p:EnableCompressionInSingleFile=true -p:PublishSingleFile=true -p:SelfContained=true -p:AssemblyVersion=$Version -p:Configuration=Release;
1111

12-
Rename-Item -Path "build/$Version/singleWithRuntime/PipManager.exe" -NewName "PipManager_withRuntime.exe"
12+
Rename-Item -Path "build/$Version/singleWithRuntime/PipManager.Windows.exe" -NewName "PipManager_withRuntime.exe"
1313

1414
Write-Output "Start building singleWithoutRuntime...";
1515

1616
dotnet publish src/PipManager.Windows.csproj -c Release -r "win-$Architecture" -o "build/$Version/singleWithoutRuntime" -p:Platform=$Architecture -p:PublishReadyToRun=false -p:EnableCompressionInSingleFile=false -p:PublishSingleFile=true -p:SelfContained=false -p:AssemblyVersion=$Version -p:Configuration=Release;
1717

18+
Rename-Item -Path "build/$Version/singleWithoutRuntime/PipManager.Windows.exe" -NewName "PipManager.exe"
19+
1820
Write-Output "Build Finished";
1921

2022
[Console]::ReadKey()

0 commit comments

Comments
 (0)