Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
clients
python
sakia
Commits
32b996eb
Commit
32b996eb
authored
9 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
Dirty hooks for windows builds (to display icons)
parent
35eb6173
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
res/ui/homescreen.ui
+4
-4
4 additions, 4 deletions
res/ui/homescreen.ui
setup.py
+9
-1
9 additions, 1 deletion
setup.py
with
13 additions
and
5 deletions
res/ui/homescreen.ui
+
4
−
4
View file @
32b996eb
...
...
@@ -46,7 +46,7 @@ QToolButton {
<item>
<widget
class=
"QLabel"
name=
"label_welcome"
>
<property
name=
"text"
>
<string>
<
html
><
head/
><
body
><
p
>
TestText
<
/p
><
/body
><
/html
>
</string>
<string>
<
html
><
head/
><
body
><
p
>
<
br/
>
<
/p
><
/body
><
/html
>
</string>
</property>
<property
name=
"textFormat"
>
<enum>
Qt::RichText
</enum>
...
...
@@ -77,7 +77,7 @@ QToolButton {
</size>
</property>
<property
name=
"toolButtonStyle"
>
<enum>
Qt::ToolButton
FollowStyle
</enum>
<enum>
Qt::ToolButton
TextBesideIcon
</enum>
</property>
<property
name=
"autoRaise"
>
<bool>
false
</bool>
...
...
@@ -110,7 +110,7 @@ QToolButton {
</size>
</property>
<property
name=
"toolButtonStyle"
>
<enum>
Qt::ToolButton
FollowStyle
</enum>
<enum>
Qt::ToolButton
TextBesideIcon
</enum>
</property>
</widget>
</item>
...
...
@@ -137,7 +137,7 @@ QToolButton {
</size>
</property>
<property
name=
"toolButtonStyle"
>
<enum>
Qt::ToolButton
FollowStyle
</enum>
<enum>
Qt::ToolButton
TextBesideIcon
</enum>
</property>
</widget>
</item>
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
9
−
1
View file @
32b996eb
...
...
@@ -5,6 +5,7 @@
import
sys
,
os
,
subprocess
,
multiprocessing
from
cx_Freeze
import
setup
,
Executable
from
PyQt5
import
QtCore
#############################################################################
# preparation des options
...
...
@@ -18,8 +19,15 @@ packages = ["libnacl"]
includefiles
=
[]
if
sys
.
platform
==
"
win32
"
:
includefiles
.
append
(
"
platforms/win32/libEGL.dll
"
)
app
=
QtCore
.
QCoreApplication
(
sys
.
argv
)
pyqt_path
=
QtCore
.
QCoreApplication
.
libraryPaths
()[
0
]
print
(
pyqt_path
)
libEGL_path
=
os
.
path
.
join
(
os
.
path
.
dirname
(
pyqt_path
),
"
libEGL.dll
"
)
qt5svg_path
=
os
.
path
.
join
(
os
.
path
.
dirname
(
pyqt_path
),
"
Qt5Svg.dll
"
)
includefiles
.
append
(
libEGL_path
)
includefiles
.
append
(
qt5svg_path
)
includefiles
.
append
(
"
platforms/win32/libsodium.dll
"
)
elif
sys
.
platform
==
"
darwin
"
:
pass
else
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment