Compare commits
15 Commits
ModbusPack
...
main
| Author | SHA1 | Date |
|---|---|---|
|
|
0a2d14441d | 2 years ago |
|
|
489224378b | 2 years ago |
|
|
6075970a7c | 2 years ago |
|
|
379b3cd4d9 | 2 years ago |
|
|
2aff31b61e | 2 years ago |
|
|
2866456583 | 2 years ago |
|
|
92754d3622 | 2 years ago |
|
|
b89f9db9ec | 2 years ago |
|
|
7f92d3d4b7 | 2 years ago |
|
|
5548e87cd7 | 2 years ago |
|
|
b448dade02 | 2 years ago |
|
|
85c3488b38 | 2 years ago |
|
|
c813cac437 | 2 years ago |
|
|
09faf598f7 | 2 years ago |
|
|
7e816e639b | 3 years ago |
@ -1 +1 @@
|
||||
jtTFa-rtobjdxWm7fKS7Tk2gZECrXwdM59799SddTcqDWDGiQTPEFYy5VW6IHgsAK5RZMtMLWmpZA3PaipOkmg==
|
||||
bzz1xqqO5MZvQYYyXqwqI0i12cMGpU4IRYFBabSvKdLfJgAZxyiCOmY7d_JZsr63b4SKQOB_ptyDV1X1MmsxDw==
|
||||
@ -0,0 +1,25 @@
|
||||
import os
|
||||
|
||||
fileType = ['png', 'ico']
|
||||
|
||||
with open('{}Qrc.qrc'.format('static'), 'w') as f:
|
||||
f.write(
|
||||
'''<RCC>
|
||||
<qresource prefix="/static">
|
||||
|
||||
''')
|
||||
|
||||
for root, dirs, files in os.walk('..\\static'):
|
||||
for file in files:
|
||||
if file.split('.')[-1] in fileType:
|
||||
print(file)
|
||||
f.write(' <file alias="{}">{}</file>\r\n'.format(file, os.path.join(root,file)))
|
||||
|
||||
f.write('''
|
||||
</qresource>
|
||||
</RCC>
|
||||
''')
|
||||
|
||||
|
||||
cmd = 'pyrcc5 -o {}.py {}Qrc.qrc'.format('static','static')
|
||||
os.system(cmd)
|
||||
@ -1,4 +1,4 @@
|
||||
engine-path: "C:\\Users\\zcw\\Desktop\\DCS\\Static\\influxDB\\engine"
|
||||
http-bind-address: ":6324"
|
||||
engine-path: "engine"
|
||||
http-bind-address: ":8086"
|
||||
storage-cache-max-memory-size: 268435456
|
||||
bolt-path: "C:\\Users\\zcw\\Desktop\\DCS\\Static\\influxDB\\engine\\influxd.bolt"
|
||||
bolt-path: "engine\\influxd.bolt"
|
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,42 @@
|
||||
<RCC>
|
||||
<qresource prefix="/static">
|
||||
|
||||
<file alias="add.png">..\static\add.png</file>
|
||||
<file alias="checkoff.png">..\static\checkoff.png</file>
|
||||
<file alias="checkon.png">..\static\checkon.png</file>
|
||||
<file alias="clear.png">..\static\clear.png</file>
|
||||
<file alias="close.png">..\static\close.png</file>
|
||||
<file alias="delete.png">..\static\delete.png</file>
|
||||
<file alias="down.png">..\static\down.png</file>
|
||||
<file alias="export.png">..\static\export.png</file>
|
||||
<file alias="file.png">..\static\file.png</file>
|
||||
<file alias="import.png">..\static\import.png</file>
|
||||
<file alias="max.png">..\static\max.png</file>
|
||||
<file alias="message.png">..\static\message.png</file>
|
||||
<file alias="min.png">..\static\min.png</file>
|
||||
<file alias="new.png">..\static\new.png</file>
|
||||
<file alias="newH.png">..\static\newH.png</file>
|
||||
<file alias="normal.png">..\static\normal.png</file>
|
||||
<file alias="open.png">..\static\open.png</file>
|
||||
<file alias="openH.png">..\static\openH.png</file>
|
||||
<file alias="pause.png">..\static\pause.png</file>
|
||||
<file alias="Searc.png">..\static\Searc.png</file>
|
||||
<file alias="search.png">..\static\search.png</file>
|
||||
<file alias="setting.png">..\static\setting.png</file>
|
||||
<file alias="settingH.png">..\static\settingH.png</file>
|
||||
<file alias="start.png">..\static\start.png</file>
|
||||
<file alias="startProtocol.png">..\static\startProtocol.png</file>
|
||||
<file alias="trend.png">..\static\trend.png</file>
|
||||
<file alias="trendH.png">..\static\trendH.png</file>
|
||||
<file alias="userMag.png">..\static\userMag.png</file>
|
||||
<file alias="userMagH.png">..\static\userMagH.png</file>
|
||||
<file alias="userPic.png">..\static\userPic.png</file>
|
||||
<file alias="varMag.png">..\static\varMag.png</file>
|
||||
<file alias="varMagH.png">..\static\varMagH.png</file>
|
||||
<file alias="zhjt.ico">..\static\zhjt.ico</file>
|
||||
<file alias="zhjt.png">..\static\zhjt.png</file>
|
||||
<file alias="nssm.ico">..\static\influxDB\nssm-2.24\src\nssm.ico</file>
|
||||
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
Loading…
Reference in New Issue