Skip to content

Commit 0482262

Browse files
committed
update: logo
add: Password Assistant
1 parent 0164832 commit 0482262

File tree

45 files changed

+164
-159
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+164
-159
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2019, CROGRAM
3+
Copyright (c) 2019, Jackson Dou
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# pythub.org
22

3-
the Official Website for Pythub
3+
the Official Website for PyThub

docs/.vuepress/config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const locales = require('./locales/index')
22
const localesConfig = require('./locales/localesConfig')
33

44
module.exports = {
5-
title: 'PytHub',
5+
title: 'PyThub',
66
description: 'Python 桌面应用程序合集',
77
locales: locales,
88
head: [
@@ -11,7 +11,7 @@ module.exports = {
1111
['meta', { 'http-equiv': 'X-UA-Compatible', content: 'IE=edge, chrome=1' }],
1212
['meta', { name: 'author', content: 'CROGRAM' }],
1313
['meta', { name: 'copyright', content: 'CROGRAM 程江开源' }],
14-
['meta', { name: 'keywords', content: 'PytHub, Python, Python GUI, Tkinter' }],
14+
['meta', { name: 'keywords', content: 'PyThub, Python, Python GUI, Tkinter' }],
1515
// ['meta', { name: 'baidu-site-verification', content: '' }],
1616
// ['meta', { name: 'google-site-verification', content: '' }],
1717
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],

docs/.vuepress/locales/en-US.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ module.exports = {
1717
text: 'Software List',
1818
ariaLabel: 'Software List',
1919
items: [
20-
{ text: 'File Searcher', link: '/filesearcher' },
21-
{ text: 'Pyinstaller Desktop', link: '/pyinstaller-desktop' },
22-
{ text: 'Show All Files for Mac', link: '/show-all-files-for-mac' },
23-
{ text: 'String Utilities', link: '/string-utilities' },
20+
{ text: 'File Searcher', link: '/filesearcher/' },
21+
{ text: 'PyInstaller Desktop', link: '/pyinstaller-desktop/' },
22+
{ text: 'Show All Files', link: '/show-all-files/' },
23+
{ text: 'String Utilities', link: '/string-utilities/' },
24+
{ text: 'Password Assistant', link: '/password-assistant/' },
2425
{
2526
text: 'DouFTP',
2627
items: [

docs/.vuepress/locales/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ module.exports = {
33
// 作为特例,默认语言可以使用 '/' 作为其路径。
44
'/': {
55
lang: 'en-US', // 将会被设置为 <html> 的 lang 属性
6-
title: 'PytHub',
6+
title: 'PyThub',
77
description: 'Python Toolkit Hub'
88
},
99
'/zh-cn/': {
1010
lang: 'zh-CN',
11-
title: 'PytHub',
11+
title: 'PyThub',
1212
description: 'Python 桌面应用程序合集'
1313
}
1414
}

docs/.vuepress/locales/zh-CN.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ module.exports = {
2222
text: '软件列表',
2323
ariaLabel: '软件列表',
2424
items: [
25-
{ text: '文件搜索工具', link: '/zh-cn/filesearcher' },
26-
{ text: 'GUI应用生成器', link: '/zh-cn/pyinstaller-desktop' },
27-
{ text: '显示系统所有文件 for Mac', link: '/zh-cn/show-all-files-for-mac' },
28-
{ text: '字符串处理工具', link: '/zh-cn/string-utilities' },
25+
{ text: '文件搜索工具', link: '/zh-cn/filesearcher/' },
26+
{ text: 'GUI应用生成器', link: '/zh-cn/pyinstaller-desktop/' },
27+
{ text: '显示系统所有文件', link: '/zh-cn/show-all-files/' },
28+
{ text: '字符串处理工具', link: '/zh-cn/string-utilities/' },
29+
{ text: '账号密码助手', link: '/zh-cn/password-assistant/' },
2930
{
3031
text: 'DouFTP',
3132
items: [

docs/.vuepress/public/images/hero.png

-150 KB
Binary file not shown.

docs/.vuepress/public/images/logo.png

70 KB
Loading
Loading
Loading
Loading

docs/douftp/client.md

+2-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 软件简介
44

5-
##### DouFTP 客户端 GUI 应用程序 V0.0.1
5+
##### DouFTP 客户端 GUI 应用程序
66

77
一款 FTP 客户端桌面应用程序,使用 Python 语言开发,GUI 基于 Tkinter
88

@@ -12,16 +12,9 @@
1212

1313
源码地址:https://github.com/douftp/douftp-client
1414

15-
---
16-
17-
Mac 端应用不能运行的,需要自行添加签名。执行如下命令
18-
19-
```sh
20-
sudo codesign --force --deep --sign - 应用程序路径
21-
```
2215

2316
## 软件预览
2417

2518
Mac 端:
2619

27-
<img src="/images/screenshots/douftp-client@2x.png" alt="DouFTP客户端">
20+
<img src="/images/douftp-client/1.png" alt="DouFTP客户端">

docs/douftp/server.md

+2-10
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 软件简介
44

5-
**DouFTP 服务端 桌面应用程序 V0.0.1**
5+
**DouFTP 服务端 桌面应用程序**
66

77
一个简单的 FTP 服务器端 GUI 应用程序,使用 Python 语言开发,GUI 基于 Tkinter,主要包含功能:
88

@@ -16,24 +16,16 @@
1616

1717
5. 对文件夹路径做判断,不合理的会有提示
1818

19-
---
2019

2120
官网地址:https://douftp.org/server.html
2221

2322
源码地址:https://github.com/douftp/douftp-server
2423

2524
下载地址:[Mac 端](https://github.com/douftp/douftp-server/releases/latest)
2625

27-
---
28-
29-
Mac 端应用不能运行的,需要自行添加签名。执行如下命令
30-
31-
```sh
32-
sudo codesign --force --deep --sign - 应用程序路径
33-
```
3426

3527
## 软件预览
3628

3729
Mac 端:
3830

39-
![DouFTP服务端](/images/screenshots/douftp-server@2x.png)
31+
![DouFTP服务端](/images/douftp-server/1.png)
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 文件搜索工具 V0.0.1
1+
# 文件搜索工具
22

33
## 软件简介
44

@@ -14,17 +14,9 @@
1414

1515
下载地址:[Mac 端](https://github.com/pythub-project/filesearcher/releases/latest)
1616

17-
---
18-
19-
Mac 端应用不能运行的,需要自行添加签名。执行如下命令
20-
21-
```
22-
chmod +x dist/文件搜索工具.app/Contents/MacOS/文件搜索工具`
23-
`sudo codesign --force --deep --sign - ./dist/文件搜索工具.app
24-
```
2517

2618
## 软件预览
2719

2820
Mac 端:
2921

30-
![字符串处理工具](/images/screenshots/filesearcher@2x.png)
22+
![字符串处理工具](/images/filesearcher/1.png)

docs/filesearcher/privacy.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Privacy Policy
2+
3+
Your privacy is very important to us. So our apps don't collect any data.
4+

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
home: true
3-
heroImage: /images/hero.png
3+
heroImage: /images/logo.png
44
actionText: Get Started →
55
actionLink: /filesearcher
66
footer: BSD Licensed | Copyright © 2019-present Crogram

docs/password-assistant/index.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# 账号密码助手
2+
3+
> PyThub Password Assistant
4+
5+
## 简介
6+
7+
这是一个用于账号密码管理和生成随机密码的的简单便捷的应用程序
8+
9+
使用 Python 语言开发,GUI 基于 Tkinter
10+
11+
1. 数据本地存储(使用 SQLite)
12+
13+
2. 禁止网络连接
14+
15+
16+
源码地址:https://github.com/pythub-project/password-assistant
17+
18+
下载地址:[Mac 端](https://github.com/pythub-project/password-assistant/releases/latest)
19+
20+
21+
## 预览
22+
23+
**登陆界面**
24+
25+
![登陆界面](/images/password-assistant/1.png)
26+
27+
**主界面**
28+
29+
![主界面](/images/password-assistant/2.png)

docs/password-assistant/privacy.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Privacy Policy
2+
3+
Your privacy is very important to us. So our apps don't collect any data.
4+

docs/zh-cn/pyinstaller-desktop.md renamed to docs/pyinstaller-desktop/index.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,9 @@
1212

1313
下载地址:[Mac 端](https://github.com/pythub-project/pyinstaller-desktop/releases/latest)
1414

15-
---
16-
17-
Mac 端应用不能运行的,需要自行添加签名。执行如下命令
18-
19-
```sh
20-
sudo codesign --force --deep --sign - 应用程序路径
21-
```
2215

2316
#### 软件预览
2417

2518
Mac 端:
2619

27-
![GUI应用生成器](/images/screenshots/pyinstaller-desktop@2x.png)
20+
![GUI应用生成器](/images/pyinstaller-desktop/1.png)

docs/pyinstaller-desktop/privacy.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Privacy Policy
2+
3+
Your privacy is very important to us. So our apps don't collect any data.
4+

docs/show-all-files-for-mac.md

-25
This file was deleted.

docs/show-all-files/index.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# 显示系统所有文件
2+
3+
## 软件简介
4+
5+
使用 Python 语言开发,GUI 基于 Tkinter
6+
7+
主要功能:一键切换显示系统所有文件(以及隐藏文件)
8+
9+
源码地址:https://github.com/pythub-project/show-all-files
10+
11+
下载地址:[Mac 端](https://github.com/pythub-project/show-all-files/releases/latest)
12+
13+
14+
## 软件预览
15+
16+
Mac 端:
17+
18+
![显示系统所有文件](/images/show-all-files/1.png)

docs/show-all-files/privacy.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Privacy Policy
2+
3+
Your privacy is very important to us. So our apps don't collect any data.
4+
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 字符串处理工具 V0.0.1
1+
# 字符串处理工具
22

33
## 软件简介
44

@@ -14,16 +14,10 @@
1414

1515
下载地址:[Mac 端](https://github.com/pythub-project/string-utilities/releases/latest)
1616

17-
---
18-
19-
Mac 端应用不能运行的,需要自行添加签名。执行如下命令
20-
21-
```sh
22-
sudo codesign --force --deep --sign - 应用程序路径
23-
```
2417

2518
## 软件预览
2619

2720
Mac 端:
2821

29-
![字符串处理工具](/images/screenshots/[email protected])
22+
![字符串处理工具](/images/string-utilities/1.png)
23+

docs/string-utilities/privacy.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Privacy Policy
2+
3+
Your privacy is very important to us. So our apps don't collect any data.
4+

docs/zh-cn/douftp/client.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 软件简介
44

5-
##### DouFTP 客户端 GUI 应用程序 V0.0.1
5+
##### DouFTP 客户端 GUI 应用程序
66

77
一款 FTP 客户端桌面应用程序,使用 Python 语言开发,GUI 基于 Tkinter
88

@@ -12,13 +12,6 @@
1212

1313
源码地址:https://github.com/douftp/douftp-client
1414

15-
---
16-
17-
Mac 端应用不能运行的,需要自行添加签名。执行如下命令
18-
19-
```sh
20-
sudo codesign --force --deep --sign - 应用程序路径
21-
```
2215

2316
## 软件预览
2417

docs/zh-cn/douftp/server.md

+1-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 软件简介
44

5-
**DouFTP 服务端 桌面应用程序 V0.0.1**
5+
**DouFTP 服务端 桌面应用程序**
66

77
一个简单的 FTP 服务器端 GUI 应用程序,使用 Python 语言开发,GUI 基于 Tkinter,主要包含功能:
88

@@ -24,13 +24,6 @@
2424

2525
下载地址:[Mac 端](https://github.com/douftp/douftp-server/releases/latest)
2626

27-
---
28-
29-
Mac 端应用不能运行的,需要自行添加签名。执行如下命令
30-
31-
```sh
32-
sudo codesign --force --deep --sign - 应用程序路径
33-
```
3427

3528
## 软件预览
3629

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 文件搜索工具 V0.0.1
1+
# 文件搜索工具
22

33
## 软件简介
44

@@ -14,17 +14,9 @@
1414

1515
下载地址:[Mac 端](https://github.com/pythub-project/filesearcher/releases/latest)
1616

17-
---
18-
19-
Mac 端应用不能运行的,需要自行添加签名。执行如下命令
20-
21-
```
22-
chmod +x dist/文件搜索工具.app/Contents/MacOS/文件搜索工具`
23-
`sudo codesign --force --deep --sign - ./dist/文件搜索工具.app
24-
```
2517

2618
## 软件预览
2719

2820
Mac 端:
2921

30-
![字符串处理工具](/images/screenshots/filesearcher@2x.png)
22+
![字符串处理工具](/images/filesearcher/1.png)

docs/zh-cn/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
home: true
3-
heroImage: /images/hero.png
3+
heroImage: /images/logo.png
44
actionText: 快速上手 →
55
actionLink: /zh-cn/filesearcher
66
footer: BSD Licensed | 版权所有 © 2019-present 程江科技

0 commit comments

Comments
 (0)