Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
qt-jdenticon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
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
Container 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
qt-jdenticon
Compare revisions
7086414703ca5d4bdf46b477e943d3a115c9c938 to e58c14369dfbf008c63f43a4556b2e52232e0265
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
nheko-reborn/qt-jdenticon
Select target project
No results found
e58c14369dfbf008c63f43a4556b2e52232e0265
Select Git revision
Branches
code-cleanup
fixes
master
order_matters
Tags
v0.1.0
v0.2.0
v0.2.1
v0.3.0
v0.3.1
Swap
Target
nheko-reborn/qt-jdenticon
Select target project
nheko-reborn/qt-jdenticon
1 result
7086414703ca5d4bdf46b477e943d3a115c9c938
Select Git revision
Branches
code-cleanup
fixes
master
order_matters
Tags
v0.1.0
v0.2.0
v0.2.1
v0.3.0
v0.3.1
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Cleanup plugin installation
· 77eb0d62
Nicolas Werner
authored
3 years ago
Verified
77eb0d62
Add missing headers for windows
· e58c1436
Nicolas Werner
authored
3 years ago
Verified
e58c1436
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
QtIdenticon.pro
+6
-6
6 additions, 6 deletions
QtIdenticon.pro
src/identiconstyle.cpp
+2
-0
2 additions, 0 deletions
src/identiconstyle.cpp
src/rendering/colortheme.cpp
+2
-0
2 additions, 0 deletions
src/rendering/colortheme.cpp
src/rendering/colorutils.cpp
+2
-0
2 additions, 0 deletions
src/rendering/colorutils.cpp
with
12 additions
and
6 deletions
QtIdenticon.pro
View file @
e58c1436
...
...
@@ -3,11 +3,11 @@
######################################################################
TEMPLATE
=
lib
CONFIG
+=
plugin
CONFIG
+=
plugin
TARGET
=
qtjdenticon
INCLUDEPATH
=
includes
INCLUDEPATH
+=
.
DESTDIR
=
plugins
VERSION
=
0.1
.
0
#
The
following
define
makes
your
compiler
warn
you
if
you
use
any
#
feature
of
Qt
which
has
been
marked
as
deprecated
(
the
exact
warnings
...
...
@@ -41,8 +41,8 @@ HEADERS += src/identicon.h \
src
/
shapes
/
shapecategory
.
h
\
src
/
shapes
/
shapedefinitions
.
h
\
src
/
shapes
/
shapeposition
.
h
\
src
/
jdenticonplugin
.
h
\
includes
/
jdenticoninterface
.
h
src
/
jdenticonplugin
.
h
\
includes
/
jdenticoninterface
.
h
SOURCES
+=
src
/
identicon
.
cpp
\
src
/
identiconstyle
.
cpp
\
src
/
qtidenticon
.
cpp
\
...
...
@@ -57,8 +57,8 @@ SOURCES += src/identicon.cpp \
src
/
shapes
/
shapecategory
.
cpp
\
src
/
shapes
/
shapedefinitions
.
cpp
\
src
/
shapes
/
shapeposition
.
cpp
\
src
/
jdenticonplugin
.
cpp
src
/
jdenticonplugin
.
cpp
#
install
target
.
path
=
$$
[
QT_INSTALL_
EXAMPLES
]
/
widgets
/
tools
/
jdenticon
/
plugins
target
.
path
=
$$
[
QT_INSTALL_
PLUGINS
]
INSTALLS
+=
target
This diff is collapsed.
Click to expand it.
src/identiconstyle.cpp
View file @
e58c1436
#include
"identiconstyle.h"
#include
<stdexcept>
IdenticonStyle
::
IdenticonStyle
()
{}
IdenticonStyle
::
IdenticonStyle
(
IdenticonStyle
&
other
)
...
...
This diff is collapsed.
Click to expand it.
src/rendering/colortheme.cpp
View file @
e58c1436
#include
"colortheme.h"
#include
<stdexcept>
namespace
rendering
{
ColorTheme
::
ColorTheme
(
qreal
hue
,
IdenticonStyle
&
style
)
...
...
This diff is collapsed.
Click to expand it.
src/rendering/colorutils.cpp
View file @
e58c1436
#include
"colorutils.h"
#include
<stdexcept>
namespace
rendering
{
QList
<
qreal
>
ColorUtils
::
lightnessCompensation_
=
{
0.55
,
0.5
,
0.5
,
0.46
,
0.6
,
0.55
,
0.55
};
...
...
This diff is collapsed.
Click to expand it.