qcanvas 2.0.0__py3-none-any.whl → 2.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of qcanvas might be problematic. Click here for more details.
- qcanvas/ui/qml_components/AttachmentsPane.qml +0 -1
- qcanvas/ui/qml_components/CommentsPane.qml +0 -1
- qcanvas/ui/qml_components/ThemedRectangle.qml +18 -2
- {qcanvas-2.0.0.dist-info → qcanvas-2.0.1.dist-info}/METADATA +9 -8
- {qcanvas-2.0.0.dist-info → qcanvas-2.0.1.dist-info}/RECORD +7 -9
- qcanvas/ui/qml_components/DarkTheme.qml +0 -12
- qcanvas/ui/qml_components/LightTheme.qml +0 -11
- {qcanvas-2.0.0.dist-info → qcanvas-2.0.1.dist-info}/WHEEL +0 -0
- {qcanvas-2.0.0.dist-info → qcanvas-2.0.1.dist-info}/entry_points.txt +0 -0
|
@@ -2,6 +2,7 @@ import QtQuick
|
|
|
2
2
|
|
|
3
3
|
Rectangle {
|
|
4
4
|
property Palette theme: getTheme()
|
|
5
|
+
color: theme.base
|
|
5
6
|
|
|
6
7
|
function getTheme() {
|
|
7
8
|
if (appTheme.theme === "native")
|
|
@@ -12,11 +13,26 @@ Rectangle {
|
|
|
12
13
|
return lightTheme
|
|
13
14
|
}
|
|
14
15
|
|
|
15
|
-
|
|
16
|
+
Palette {
|
|
16
17
|
id: lightTheme
|
|
18
|
+
base: "#f8f9fa"
|
|
19
|
+
window: "#f8f9fa"
|
|
20
|
+
midlight: "#f8f9fa"
|
|
21
|
+
accent: "#e02424"
|
|
22
|
+
link: accent
|
|
23
|
+
dark: "#dadce0"
|
|
24
|
+
text: "#4d5157"
|
|
17
25
|
}
|
|
18
|
-
|
|
26
|
+
|
|
27
|
+
Palette {
|
|
19
28
|
id: darkTheme
|
|
29
|
+
base: "#202124"
|
|
30
|
+
window: "#f8f9fa"
|
|
31
|
+
midlight: "#202124"
|
|
32
|
+
accent: "#e02424"
|
|
33
|
+
link: accent
|
|
34
|
+
dark: "#3f4042"
|
|
35
|
+
text: "#e4e7eb"
|
|
20
36
|
}
|
|
21
37
|
|
|
22
38
|
Connections {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: qcanvas
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: QCanvas is a desktop client for Canvas LMS.
|
|
5
5
|
Author: QCanvas
|
|
6
6
|
Author-email: QCanvas@noreply.codeberg.org
|
|
@@ -35,17 +35,15 @@ https://github.com/QCanvas/QCanvasApp
|
|
|
35
35
|
|
|
36
36
|
You can download a **windows** version from [releases](https://github.com/QCanvas/QCanvasApp/releases)
|
|
37
37
|
|
|
38
|
-
|
|
39
|
-
based distros.
|
|
38
|
+
> [!WARNING]
|
|
39
|
+
> The appimage version is *not recommended* as it is not a proper portable appimage. It will only work on debian/ubuntu based distros.
|
|
40
40
|
|
|
41
41
|
# Development/Run from source
|
|
42
42
|
|
|
43
43
|
## Prerequisites
|
|
44
44
|
|
|
45
|
-
- Python 3.
|
|
46
|
-
-
|
|
47
|
-
- Poetry (recommended to install using `pipx install poetry`)
|
|
48
|
-
- [Appimagetool](https://github.com/AppImage/appimagetool) (Only for building the appimage)
|
|
45
|
+
- Python 3.12+ (use [pyenv](https://github.com/pyenv/pyenv) if your distro does not have that version)
|
|
46
|
+
- Poetry
|
|
49
47
|
|
|
50
48
|
## Get started
|
|
51
49
|
|
|
@@ -65,9 +63,12 @@ poetry run python -m qcanvas
|
|
|
65
63
|
|
|
66
64
|
## Build custom AppImage
|
|
67
65
|
|
|
68
|
-
> [!
|
|
66
|
+
> [!WARNING]
|
|
69
67
|
> This is not recommended as the appimage produced by this process isn't a proper appimage.
|
|
70
68
|
|
|
69
|
+
> [!IMPORTANT]
|
|
70
|
+
> You will need [Appimagetool](https://github.com/AppImage/appimagetool)
|
|
71
|
+
|
|
71
72
|
```bash
|
|
72
73
|
bash build_appimage.sh
|
|
73
74
|
```
|
|
@@ -54,16 +54,14 @@ qcanvas/ui/qcanvas_window/status_bar_progress_display.py,sha256=v8cL7EzhKIO6YDo-
|
|
|
54
54
|
qcanvas/ui/qml_components/AttachmentsList.ui.qml,sha256=kEgdn1s490hfvMtDtbba54_-_vF-3GUIEVpB8D12ET0,483
|
|
55
55
|
qcanvas/ui/qml_components/AttachmentsListDelegate.qml,sha256=Frcd-vMd6lXBICF8SpPdpGJgxrk4vasvK29uTxXKAcs,2115
|
|
56
56
|
qcanvas/ui/qml_components/AttachmentsListModel.qml,sha256=y4pQoJLVrSAEdl8BkeKZrMBln0pCCfjotCCxcCS9L6w,516
|
|
57
|
-
qcanvas/ui/qml_components/AttachmentsPane.qml,sha256=
|
|
57
|
+
qcanvas/ui/qml_components/AttachmentsPane.qml,sha256=xH3vSn4pW7KG93TlJdUKQbk8jHCY5-DgQ58A4zxmRKs,174
|
|
58
58
|
qcanvas/ui/qml_components/CommentsList.ui.qml,sha256=l8uqDrqIGVeOIAHnn4rwQQGiedFXAdMFANzvcHflCJo,477
|
|
59
59
|
qcanvas/ui/qml_components/CommentsListDelegate.ui.qml,sha256=iI-8Byw9dEOcbB18kQ6LGBH9IMCdmoK4Ak2WgSxkx78,3172
|
|
60
60
|
qcanvas/ui/qml_components/CommentsListModel.qml,sha256=oEffdqXiavoO4zcyBu8aqIlR-0IYDQKli3aKlGUxltg,2230
|
|
61
|
-
qcanvas/ui/qml_components/CommentsPane.qml,sha256=
|
|
62
|
-
qcanvas/ui/qml_components/DarkTheme.qml,sha256=cc9NltNQp9vzZeKItJEXCBUBzvvfDTC6y8nL3gKWMTY,222
|
|
61
|
+
qcanvas/ui/qml_components/CommentsPane.qml,sha256=_ETxcUBOKMPJrkmGqFMDR6XGf49MBiBIPV6mQyJwGVU,163
|
|
63
62
|
qcanvas/ui/qml_components/DecoratedText.ui.qml,sha256=U4p_P6gXRBj1GKDe0azJlp9-fT8yFw3XVjQH76L8MQ0,1003
|
|
64
|
-
qcanvas/ui/qml_components/LightTheme.qml,sha256=ItN-3U9WiCUThIOlvYwGkTukx-ceHTGxHBqEZve__is,172
|
|
65
63
|
qcanvas/ui/qml_components/Spacer.ui.qml,sha256=RE86ASh90JUV82QLWV9FoD3pVzv9F_gHFNyDpk_Befo,78
|
|
66
|
-
qcanvas/ui/qml_components/ThemedRectangle.qml,sha256=
|
|
64
|
+
qcanvas/ui/qml_components/ThemedRectangle.qml,sha256=VBnt-orItX2vUXO-5Uv4bkg5mNUF8G2Hog-SfdY9t4E,1017
|
|
67
65
|
qcanvas/ui/qml_components/__init__.py,sha256=ogGsI7ynuB0EhAeQRH7VJeJIYYwMza_AzFzjPlBmsVc,136
|
|
68
66
|
qcanvas/ui/qml_components/attachments_pane.py,sha256=PwvITNo9xwGKvqGYp6OkMO7MAeMJjOm9H_DajZzfM_E,2366
|
|
69
67
|
qcanvas/ui/qml_components/comments_pane.py,sha256=IJkaR5cn4Ez08nh7V_iZEY56ojHcxRRPRLKgiZirslo,2993
|
|
@@ -85,7 +83,7 @@ qcanvas/util/qurl_util.py,sha256=6nTk8VkQjT87wMOXyZucPBYdT6TTYzfCTElqsypLZPg,200
|
|
|
85
83
|
qcanvas/util/runtime.py,sha256=EO1HFCN7dZbQtKHQOILuvjZFXGT7SzhlmPvU8ma95Z8,617
|
|
86
84
|
qcanvas/util/ui_tools.py,sha256=cdwDrtljxIpzikvUt4CAMC06kogJ4WfhSTsC3lXAcz4,3575
|
|
87
85
|
qcanvas/util/url_checker.py,sha256=HkNFixp1ARwc_YjYkpHb-IMTyuaC7CylvYCgDyo3sh4,136
|
|
88
|
-
qcanvas-2.0.
|
|
89
|
-
qcanvas-2.0.
|
|
90
|
-
qcanvas-2.0.
|
|
91
|
-
qcanvas-2.0.
|
|
86
|
+
qcanvas-2.0.1.dist-info/METADATA,sha256=hYgt3UV8QD-Np6lXwzL3EgzYebEJRcVzOkxgQ9_uYoA,2031
|
|
87
|
+
qcanvas-2.0.1.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
|
88
|
+
qcanvas-2.0.1.dist-info/entry_points.txt,sha256=hqG_g3MRYh_eLyQcDN4H3EXqmBia_fnJTJ-3nqZGzvY,40
|
|
89
|
+
qcanvas-2.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|