Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B-ASIC - Better ASIC Toolbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computer Engineering
B-ASIC - Better ASIC Toolbox
Merge requests
!191
Update about, fix image path and move logos
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Update about, fix image path and move logos
aboutlogos
into
master
Overview
0
Commits
1
Pipelines
2
Changes
7
Merged
Oscar Gustafsson
requested to merge
aboutlogos
into
master
2 years ago
Overview
0
Commits
1
Pipelines
2
Changes
7
Expand
0
0
Merge request reports
Compare
master
version 1
9c2cc534
2 years ago
master (base)
and
latest version
latest version
eeee0314
1 commit,
2 years ago
version 1
9c2cc534
1 commit,
2 years ago
7 files
+
22
−
14
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
b_asic/gui_utils/about_window.py
+
20
−
12
Options
import
pathlib
import
sys
# ONLY FOR DEBUG
from
qtpy.QtCore
import
Qt
@@ -43,13 +44,18 @@ class AboutWindow(QDialog):
# |3 links |4 OK | <- layout34
label1
=
QLabel
(
"
# B-ASIC / Better ASIC Toolbox
\n
*Construct, simulate and analyze
"
"
components of an ASIC.*
\n\n
B-ASIC is an open source tool using
"
"
the B-ASIC library to construct, simulate and analyze
"
"
ASICs.
\n\n
B-ASIC is developed under the MIT-license and any
"
"
extension to the program should follow that same license.
\n\n
To
"
"
read more about how the GUI works please refer to the FAQ under
"
f
"
'
Help
'
.
\n\n
*Version:
{
__version__
}
*
"
"
# B-ASIC
\n
__Better ASIC and FPGA Signal Processing
"
"
Toolbox__
\n\n
*Construct, simulate and analyze signal processing
"
"
algorithms aimed at implementation on an ASIC or
"
"
FPGA.*
\n\n
B-ASIC is developed by the <a
"
"
href=
\"
https://liu.se/en/organisation/liu/isy/da
\"
>Division of
"
"
Computer Engineering</a> at <a
"
"
href=
\"
https://liu.se/?l=en
\"
>Linköping University</a>,
"
"
Sweden.
\n\n
B-ASIC is released under the <a
"
"
href=
\"
https://gitlab.liu.se/da/B-ASIC/-/blob/master/LICENSE
\"
>MIT-license</a>
"
"
and any extension to the program should follow that same
"
f
"
license.
\n\n
*Version:
{
__version__
}
*
\n\n
Copyright 2020-2023,
"
"
Oscar Gustafsson et al.
"
)
label1
.
setTextFormat
(
Qt
.
MarkdownText
)
label1
.
setWordWrap
(
True
)
@@ -58,15 +64,17 @@ class AboutWindow(QDialog):
self
.
logo2
=
QLabel
(
self
)
self
.
logo2
.
setPixmap
(
QPixmap
(
"
../../small_logo.png
"
).
scaledToWidth
(
100
)
QPixmap
(
str
(
pathlib
.
Path
(
__file__
).
parent
.
resolve
())
+
"
/../../logos/small_logo.png
"
).
scaledToWidth
(
100
)
)
self
.
logo2
.
setFixedWidth
(
100
)
label3
=
QLabel
(
"""
See: <a href=
"
https://da.gitlab-pages.liu.se/B-ASIC/
"
>documentation</a>,
"""
"""
<a href=
"
https://gitlab.liu.se/da/B-ASIC/
"
>git</a>,
"""
"""
<a href=
"
https://www.liu.se/?l=en
"
>liu.se</a>,
"""
"""
<a href=
"
https://liu.se/organisation/liu/isy/da
"
>Computer Engineering</a>.
"""
"""
Additional resources: <a href=
"
https://da.gitlab-pages.liu.se/B-ASIC/
"
>documentation</a>,
"""
"""
<a href=
"
https://gitlab.liu.se/da/B-ASIC/
"
>git repository</a>,
"""
"""
<a href=
"
https://gitlab.liu.se/da/B-ASIC/-/issues
"
>report issues and suggestions</a>.
"""
)
label3
.
setOpenExternalLinks
(
True
)
label3
.
linkHovered
.
connect
(
self
.
hoverText
)
Loading