Skip to content

Commit 92d6be6

Browse files
committed
update
1 parent d0b744a commit 92d6be6

File tree

5 files changed

+20
-1
lines changed

5 files changed

+20
-1
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
# string-utilities
22
String Utilities
3+
4+
一个简单的MD5和Base64工具
5+
6+
预览图
7+
8+
![WX20201107-011422@2x](screenshots/[email protected])

build.sh

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# _*_ coding:utf-8 _*_
2+
3+
pyinstaller\
4+
--clean\
5+
--noconfirm\
6+
-w\
7+
build.spec
8+
9+
# or shell
10+
# pyinstaller -F -w --clean -y src/app.py
11+
12+
# sign app
13+
# sudo codesign --force --deep --sign - ./dist/StringUtilities.app

screenshots/[email protected]

93.5 KB
Loading

app.py renamed to src/app.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_current_time():
2121
class GUI():
2222
def __init__(self, master):
2323
self.master = master
24-
master.title('文本处理工具 V%s' % __version__)
24+
master.title('编码解码 V%s' % __version__)
2525
master.configure(relief='ridge', padx=5, pady=5)
2626
set_window_center(master, 700, 600)
2727
self.init_area_source()

utils.py renamed to src/utils.py

File renamed without changes.

0 commit comments

Comments
 (0)