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
38c0eaf0
Commit
38c0eaf0
authored
Sep 01, 2020
by
Gregor Moenke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windows path fix
parent
e0849c2c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
CHANGELOG.md
CHANGELOG.md
+1
-1
pyboat/__init__.py
pyboat/__init__.py
+1
-1
pyboat/ui/analysis.py
pyboat/ui/analysis.py
+1
-1
No files found.
CHANGELOG.md
View file @
38c0eaf0
### pyBOAT 0.8.2
1
### pyBOAT 0.8.2
2
-
Fixed export paths for Windows platforms
-
Fixed synthetic signal generator AR(1) alpha setting
...
...
pyboat/__init__.py
View file @
38c0eaf0
...
...
@@ -3,7 +3,7 @@
import
sys
,
os
import
argparse
__version__
=
'0.8.2
1
'
__version__
=
'0.8.2
2
'
# the object oriented API
from
.api
import
WAnalyzer
...
...
pyboat/ui/analysis.py
View file @
38c0eaf0
...
...
@@ -626,7 +626,7 @@ class WaveletReadoutWindow(QWidget):
# ----------------------------------------------------------
base_name
=
str
(
self
.
signal_id
).
replace
(
' '
,
'-'
)
default_name
=
os
.
path
.
join
(
os
.
getenv
(
"HOME"
),
base_name
+
'_ridgeRO'
)
default_name
=
os
.
path
.
join
(
os
.
path
.
expanduser
(
'~'
),
base_name
+
'_ridgeRO'
)
format_filter
=
"Text File (*.txt);; csv ( *.csv);; MS Excel (*.xlsx)"
# -----------------------------------------------------------
file_name
,
sel_filter
=
dialog
.
getSaveFileName
(
...
...
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