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

Plasma6 initial support #100

Open
wants to merge 24 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ff79564
Update .gitignore to exclude QtC's files
sendevent Feb 12, 2025
ca18dba
Actualize metadata
sendevent Feb 12, 2025
a957122
Remove versioning from QtQuick import statements
sendevent Feb 12, 2025
5504dc6
Port main.qml to P6
sendevent Feb 13, 2025
55914f7
Port HtmlClock.qml to P6
sendevent Feb 13, 2025
e463999
Port CalendarView.qml to P6
sendevent Feb 13, 2025
807bf21
Port NotificationManager.qml to P6
sendevent Feb 13, 2025
5269669
Refactor and port to P6 FontSelector.qml
sendevent Feb 13, 2025
07fa4ed
Small change
sendevent Feb 13, 2025
843dd89
Add "Pin" Calendar checkbox
sendevent Feb 13, 2025
9ad6640
Small improvements in General settings page
sendevent Feb 13, 2025
c41950e
Correct metadata.json
sendevent Feb 13, 2025
714077b
Replace custom AboutDialog with Plasma's AboutPlugin
sendevent Feb 13, 2025
b019c20
Add "Report a bug..." button
sendevent Feb 13, 2025
e39156c
Add contributors' info in
sendevent Feb 13, 2025
890f191
Add alternative plasmoids family
sendevent Feb 13, 2025
46c2761
Place the Clock & MouseAre strictly in the container
sendevent Feb 13, 2025
236697d
Restore CalendarView basics
sendevent Feb 13, 2025
311d8ea
Improve Icon & FormFactors in metadata
sendevent Feb 13, 2025
996334a
Fix background transparency management
sendevent Feb 13, 2025
3221590
Fix calendar "Pin" feature
sendevent Feb 13, 2025
0805bd4
Improve mouse/keyboard input handling
sendevent Feb 13, 2025
5d7d5e9
Add actions accessing System settings
sendevent Feb 13, 2025
af53a7d
Integrate upgraded org.kde.plasma.digitalclock.CalendarView
sendevent Feb 13, 2025
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
47 changes: 47 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,50 @@
package/contents/config/main.xml
*.plasmoid
/*.sh

build/
*.pro.user
*.pro.user.*
*.qbs.user
*.qbs.user.*

# Qt Creator specific files
.qtcreator/
*.autosave
*.creator.user
*.creator.user.*
*.creator.*

# CMake generated files
CMakeLists.txt.user
CMakeLists.txt.user.*
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile

# Intermediate and compiled files
*.moc
*.obj
*.o
*.lo
*.la
*.a
*.so
*.so.*
*.dylib
*.dll
*.exe
*.out
*.app
*.dSYM/

# Generated documentation
doc/
docs/

# Plasma specific files
metadata.desktop~
translations/.qm
plasma_package/
*.kdev4
5 changes: 3 additions & 2 deletions src/contents/config/config.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@
* @link https://github.com/MarcinOrlowski/weekday-plasmoid
*/

import QtQuick 2.0
import org.kde.plasma.configuration 2.0

import QtQuick
import org.kde.plasma.configuration

ConfigModel {
ConfigCategory {
Expand Down
67 changes: 0 additions & 67 deletions src/contents/ui/AboutDialog.qml

This file was deleted.

Loading