Skip to content

Commit 7e7ed7b

Browse files
committed
RELEASE V1.0.0
1 parent 522e23c commit 7e7ed7b

File tree

6 files changed

+17
-10
lines changed

6 files changed

+17
-10
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,14 @@
33
</div>
44
<h1 align="center">PhiStore</h1>
55

6-
尝试使用Flet还原Phigros v1.6.11的商店系统,正在开发中。部分资源(如icon)来自Phigros安装包,**禁止商业及不正当使用。**
6+
尝试使用Flet还原Phigros v1.6.11的商店系统,V1.0版本已开发完成。部分资源(如icon)来自Phigros安装包,**禁止商业及不正当使用。**
77

88
网页版:[https://html5syt.github.io/PhiStore](https://html5syt.github.io/PhiStore)
99

1010
**您可以在Action的artifact中找到最新的全平台离线安装包。**
1111

12+
# **Release V1.0.0已发布,[链接→](https://github.com/html5syt/PhiStore/releases/tag/v1.0.0)**
13+
1214
# 另记录抽奖相关信息
1315

1416
8MB-10抽

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "PhiStore"
3-
version = "0.5.0"
3+
version = "1.0.0"
44
description = "PhiStore"
55
# readme = "README.md"
66
# requires-python = ">=3.8"

src/PhiControls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ async def on_click(self, e):
828828
)
829829
self.page.update()
830830
if self.on_click_list != [] and self.on_click_list is not None:
831-
for i in range(0, len(self.on_click_list) - 1):
831+
for i in range(0, len(self.on_click_list) + 1):
832832
if e.control.data[-1] == str(i + 1):
833833
print(
834834
"[log-",

src/assets/__init__.py

Whitespace-only changes.

src/assets/icon.ico

113 KB
Binary file not shown.

src/main.py

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,19 @@ async def main(page: ft.Page):
3232
except LookupError:
3333
await Phi.storage(page=page, key="data", value=1073741824.0, mode="w")
3434

35-
# layout debug
36-
def on_keyboard(e: ft.KeyboardEvent):
37-
if e.key == "S" and e.ctrl and e.shift:
38-
page.show_semantics_debugger = not page.show_semantics_debugger
39-
page.update()
35+
# # layout debug
36+
# def on_keyboard(e: ft.KeyboardEvent):
37+
# if e.key == "S" and e.ctrl and e.shift:
38+
# page.show_semantics_debugger = not page.show_semantics_debugger
39+
# page.update()
4040

41-
page.on_keyboard_event = on_keyboard
42-
page.window.full_screen = True
41+
# page.on_keyboard_event = on_keyboard
42+
43+
page.window.full_screen = False
44+
page.title = "PhiStore"
45+
page.window.alignment = ft.alignment.center
46+
page.window.icon = "icon.ico"
47+
4348
page.bgcolor = ft.Colors.BLACK
4449
page.padding = 0
4550
page.spacing = 0

0 commit comments

Comments
 (0)