Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Neon logo and sharper Kubuntu logo #40

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ build
*.kdev4
*.jsc
*.qmlc
node_modules/


# qtcreator generated files
Expand Down
1 change: 1 addition & 0 deletions plasma-simpleMonitor.pro
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ DISTFILES += \
plasmoid/contents/images/distro-fedora.svg \
plasmoid/contents/images/distro-manjaro.svg \
plasmoid/contents/images/distro-kubuntu.svg \
plasmoid/contents/images/distro-neon.svg \
plasmoid/contents/images/distro-opensuse.svg \
plasmoid/contents/images/distro-tux.svg \
plasmoid/contents/images/distro-ubuntu.svg \
Expand Down
2 changes: 1 addition & 1 deletion plasmoid/contents/code/code.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

.pragma library

var logos = ["tux", "slackware", "ubuntu", "kubuntu", "opensuse", "manjaro", "arch", "fedora"]
var logos = ["tux", "slackware", "ubuntu", "kubuntu", "opensuse", "manjaro", "arch", "fedora", "neon"]

function getStandardLogo(logoId, distroName) {
if (typeof distroName === 'undefined')
Expand Down
1 change: 1 addition & 0 deletions plasmoid/contents/config/main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<choice name="Manjaro"/>
<choice name="Arch"/>
<choice name="Fedora"/>
<choice name="Neon" />
</choices>
<default>0</default>
</entry>
Expand Down
6 changes: 5 additions & 1 deletion plasmoid/contents/images/distro-kubuntu.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
165 changes: 165 additions & 0 deletions plasmoid/contents/images/distro-neon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion plasmoid/contents/ui/config/ConfigGeneral.qml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Item {

ComboBox {
id: logoComboBox
model: ["Default", "Tux", "Slackware", "Ubuntu", "Kubuntu", "OpenSUSE", "Manjaro", "Arch", "Fedora"]
model: ["Default", "Tux", "Slackware", "Ubuntu", "Kubuntu", "OpenSUSE", "Manjaro", "Arch", "Fedora", "Neon"]
}

Rectangle {
Expand Down
2 changes: 1 addition & 1 deletion plasmoid/metadata.desktop
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ X-Plasma-StandAloneApp=true

X-KDE-PluginInfo-Name=org.kde.simpleMonitor
X-KDE-PluginInfo-Category=System Information
X-KDE-PluginInfo-Version=0.6
X-KDE-PluginInfo-Version=0.6-yamiyukisenpai
X-KDE-PluginInfo-Website=http://plasma.kde.org/
X-KDE-PluginInfo-Author=DhabyX, Konstantin Shtepa
X-KDE-PluginInfo-Email=slack.dhabyx@gmail.com, oss.konstantin.shtepa@yandex.ru
Expand Down