Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
pyBOAT
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Gregor Moenke
pyBOAT
Commits
5cf69519
Commit
5cf69519
authored
Jun 09, 2020
by
Gregor Moenke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
the icon
parent
e2233615
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
21 additions
and
1 deletion
+21
-1
CHANGELOG.md
CHANGELOG.md
+6
-0
doc/logo_circ128x128.png
doc/logo_circ128x128.png
+0
-0
doc/logo_circ64x64.png
doc/logo_circ64x64.png
+0
-0
pyboat/__init__.py
pyboat/__init__.py
+15
-1
pyboat/logo_circ128x128.png
pyboat/logo_circ128x128.png
+0
-0
No files found.
CHANGELOG.md
View file @
5cf69519
#### Version 0.8.16
-
added the pyBOAT icon
-
changed version numbering scheme
#### Version 0.8.1.5
-
fixed Fourier spectra crash
...
...
doc/logo_circ128x128.png
0 → 100644
View file @
5cf69519
25.5 KB
doc/logo_circ64x64.png
deleted
100644 → 0
View file @
e2233615
13.8 KB
pyboat/__init__.py
View file @
5cf69519
...
...
@@ -3,7 +3,7 @@
import
sys
,
os
import
argparse
__version__
=
'0.8.1
.5
'
__version__
=
'0.8.1
6
'
# the object oriented API
from
.api
import
WAnalyzer
...
...
@@ -28,10 +28,24 @@ def main(argv=None):
# scripting is needed..
from
PyQt5.QtWidgets
import
QApplication
from
PyQt5.QtGui
import
QIcon
from
PyQt5.QtCore
import
QSize
from
pyboat.ui
import
start_menu
# --- initialize the Qt App ---
# args get not parsed inside Qt app
app
=
QApplication
(
sys
.
argv
)
# add an application icon
abs_path
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
icon
=
QIcon
()
icon
.
addFile
(
abs_path
+
'/logo_circ128x128.png'
,
QSize
(
128
,
128
))
app
.
setWindowIcon
(
icon
)
# -- parse command line arguments ---
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
'--debug'
,
action
=
'store_true'
)
parser
.
add_argument
(
'--version'
,
action
=
'version'
,
version
=
'pyBOAT '
+
__version__
)
...
...
pyboat/logo_circ128x128.png
0 → 100644
View file @
5cf69519
25.5 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment