Giter VIP home page Giter VIP logo

kivymdstudio's Introduction


A kivyMD development studio

This is not the official repository of KIVYMDSTUDIO. It is a small homemade project just for fun. This project was created during a short one-week break, so I didn't have enough time to adopt a well-defined structure for the project (everything was done in a hurry). I didn't expect this project to resonate with people, but I received emails containing both insults regarding the editor's malfunctions and words of encouragement.

I would like to thank all those who liked it and want to contribute, as well as those who sent me insults, as it made me realize the value they attach to this project...

Now, I will make improvements and dedicate at least three evenings out of seven to push bug fixes.

Project Demo

kvscode_showcase.mp4

Prerequisites

Installation

  1. Install Python3.9

    • Debian, Ubuntu, Etc
      • sudo apt-get install python3.9 python3-pip
    • Fedora, Oracle, Red Hat, etc
      • su -c "yum install python3.9 python3-pip"
    • Windows
      • click HERE for downloads
  2. Download and Extract the latest release from HERE

  3. In the extracted folder, run these commands

    • python install.py <- install dependencies
    • python studio.py <-- start the script

Screenshots

Image 1

Image 1 Image 1
Image 1 Image 1
Image 1 Image 1
Image 1 Image 1
Image 1 Image 1

Quick Start

    #:import hex kivy.utils.get_color_from_hex

    <ButtonGris@Button>
        font_size: 25
        background_color:0,0,0,0
        canvas.before:
            Color:
                rgb: hex('#2e2b2b') if self.state =='normal' else (0,.7,.7,1)
            Ellipse:
                pos :self.pos
                size: 55,55

    <ButtonBlanc@Button>
        font_size:25
        background_color: 0,0,0,0
        color: hex('#000000')
        canvas.before:
            Color:
                rgb: hex('#ffffff') if self.state =='normal' else (0,.7,.7,1)
            Ellipse:
                pos: self.pos
                size: 55,55

    <ButtonOrange@Button>
        font_size:25
        background_color: 0,0,0,0
        canvas.before:
            Color:
                rgb: hex('#ffa20e') if self.state =='normal' else (0,.7,.7,1)
            Ellipse:
                pos: self.pos
                size: 55,55

    <ButtonRectangle@Button>
        font_size:25
        background_color: 0,0,0,0
        canvas.before:
            Color:
                rgb: hex('#2e2b2b') if self.state =='normal' else (0,.7,.7,1)
            RoundedRectangle:
                pos: self.pos
                size: 110,55
                radius: [25,]


    Calculatrice:
        id: calculatrice
        display: input
        orientation: 'vertical'


        GridLayout:
            orientation: 'lr-tb'
            size_hint: (1,0.3)
            cols: 1
            rows: 1
            TextInput:
                id: input
                background_color: hex('#000000')
                foreground_color: hex('#ffffff')
                font_size: 30
                justify: 'right'

        GridLayout:
            orientation: 'lr-tb'
            padding:'4dp'
            cols: 4

            ButtonBlanc:
                text: 'C'
                on_press: input.text =""

            ButtonBlanc:
                text: '+/-'
                on_press: input.text +='±'

            ButtonBlanc:
                text: '%'
                on_press: input.text +=self.text

            ButtonOrange:
                text: '/'
                on_press: input.text +=self.text

            ButtonGris:
                text: '7'
                on_press: input.text +=self.text

            ButtonGris:
                text: '8'
                on_press: input.text +=self.text

            ButtonGris:
                text: '9'
                on_press: input.text +=self.text

            ButtonOrange:
                text: '*'
                on_press: input.text +=self.text

            ButtonGris:
                text: '6'
                on_press: input.text +=self.text

            ButtonGris:
                text: '5'
                on_press: input.text +=self.text

            ButtonGris:
                text: '4'
                on_press: input.text +=self.text

            ButtonOrange:
                text: '-'
                on_press: input.text +=self.text

            ButtonGris:
                text: '3'
                on_press: input.text +=self.text

            ButtonGris:
                text: '2'
                on_press: input.text +=self.text

            ButtonGris:
                text: '1'
                on_press: input.text +=self.text

            ButtonOrange:
                text: '+'
                on_press: input.text +=self.text

            ButtonRectangle:
                text: '0'
                on_press: input.text +=self.text
            Label

            ButtonGris:
                text: '.'
                on_press: input.text +=self.text

            ButtonOrange:
                text: '='
                on_press: input.text=str(eval(input.text))

↑ Back to Top ↑

NOTE

In this update i wanted to give the possibility to contributors to be able to create plugins and install them directly in Kivymd Studio... The problem with the launch of the studio under windows is fixed in this update... But the emulator does not work very well under windows for the moment.I will fix it in the next version of the emulator.

↑ Back to Top ↑

To do list

- [x] File Explorer (TreeView) (done)
- [x] Project creator(done)
- [x] Auto Completion in CodeEditor(done)
- [x] Auto Indentation in OdeEditor(done)
- [x] Syntax Highlight in CodeEditor(done)
- [ ] General Project Search 
- [x] Custom Terminal (done)
- [x] Emmulator (done)
- [x] Stack Overflow integration(done)
- [ ] Settings
- [x] MDIcons Picker (done)
- [x] Color Picker 
- [ ] PyLint integration
- [ ] Git Integration
- [ ] Plugin Manager
- [ ] Theme Manager
- [ ] Project Deps Manager (Integration with pip)
- [ ] Virtualenv Manager

Next

- Chat with GPT 4 (User must use his own Openai APIKEY)
- General Project Search
- Settings

Bugs

- Emulator can't load Python file correctly yet

Contribution

I am thrilled that you are considering contributing to our project! Here is some information to help you get started.

How to Contribute

  1. Clone this repository to your local machine.
  2. Create a branch for your changes: git checkout -b your-branch-name.
  3. Make the desired changes in the code.
  4. Thoroughly test your modifications.
  5. Submit your changes:
    • Add the modified files: git add .
    • Commit your changes: git commit -m "Description of your modifications"
    • Push your changes to your branch: git push origin your-branch-name
  6. Open a pull request to the main branch of the repository.

Contribution Guidelines

  • Make sure to follow coding best practices and maintain consistency with the existing code.
  • Document new features or modifications in the code.
  • Thoroughly test your modifications and ensure they do not introduce any regressions.
  • Respect the project's code of conduct and treat other contributors with respect and courtesy.

Issues and Feature Requests

If you encounter an issue or have an idea for a new feature, feel free to open an issue in this repository. We are always open to suggestions and will do our best to address them promptly.

We greatly appreciate all contributions, and thank you in advance for your participation in the project!

↑ Back to Top ↑

Donate

Kvs Code (Kivymd Studio Code) is a free and open source project, and will remain as one. If you would like to provide financial support, you can use the following links. This is completely optional, but every contribution is much appreciated!

Liberapay Patreon Buy Me a Coffee

Made with ❤️ By #Einswilli

v1.1.1

kivymdstudio's People

Contributors

einswilli avatar icichainz avatar novenopatch avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

kivymdstudio's Issues

Running Problem With QTQuick

after installing all requirements, when I ran sudio.py, I faced this:

C:\Users\Alireza\.kvStudio\studio.sqlite
QQmlApplicationEngine failed to load component
file:///C:/Users/Alireza/KivymdStudio/qml/studio.qml:1:1: plugin cannot be loaded for module "QtQuick": Cannot load library C:\Users\Alireza\KivymdStudio\venv\lib\site-packages\PySide2\qml\QtQuick.2\qtquick2plugin.dll: The specified module could not be found.

I run it with Python 3.9

Error in instalation requirements

When I tried to install requirements (by "python install.py" and "pip install -r requirements.txt") I get this error:

ERROR: Command errored out with exit status 1:
     command: 'C:\Users\user\AppData\Local\Programs\Python\Python310\python.exe' 'C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\user\AppData\Local\Temp\tmp1f962vyv'
         cwd: C:\Users\user\AppData\Local\Temp\pip-install-z6vyxryq\pyqt5_e615389f50034b058e82ed4248780e7f
    Complete output (29 lines):
    Traceback (most recent call last):
      File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 143, in prepare_metadata_for_build_wheel
        hook = backend.prepare_metadata_for_build_wheel
    AttributeError: module 'sipbuild.api' has no attribute 'prepare_metadata_for_build_wheel'

    During handling of the above exception, another exception occurred:

    Traceback (most recent call last):
      File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 349, in <module>
        main()
      File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 331, in main
        json_out['return_val'] = hook(**hook_input['kwargs'])
      File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\pip\_vendor\pep517\in_process\_in_process.py", line 147, in prepare_metadata_for_build_wheel
        whl_basename = backend.build_wheel(metadata_directory, config_settings)
      File "C:\Users\user\AppData\Local\Temp\pip-build-env-h23zc14w\overlay\Lib\site-packages\sipbuild\api.py", line 51, in build_wheel
        project = AbstractProject.bootstrap('pep517')
      File "C:\Users\user\AppData\Local\Temp\pip-build-env-h23zc14w\overlay\Lib\site-packages\sipbuild\abstract_project.py", line 83, in bootstrap
        project.setup(pyproject, tool, tool_description)
      File "C:\Users\user\AppData\Local\Temp\pip-build-env-h23zc14w\overlay\Lib\site-packages\sipbuild\project.py", line 587, in setup
        self.apply_user_defaults(tool)
      File "C:\Users\user\AppData\Local\Temp\pip-install-z6vyxryq\pyqt5_e615389f50034b058e82ed4248780e7f\project.py", line 63, in apply_user_defaults
        super().apply_user_defaults(tool)
      File "C:\Users\user\AppData\Local\Temp\pip-build-env-h23zc14w\overlay\Lib\site-packages\pyqtbuild\project.py", line 70, in apply_user_defaults
        super().apply_user_defaults(tool)
      File "C:\Users\user\AppData\Local\Temp\pip-build-env-h23zc14w\overlay\Lib\site-packages\sipbuild\project.py", line 234, in apply_user_defaults
        self.builder.apply_user_defaults(tool)
      File "C:\Users\user\AppData\Local\Temp\pip-build-env-h23zc14w\overlay\Lib\site-packages\pyqtbuild\builder.py", line 67, in apply_user_defaults
        raise PyProjectOptionException('qmake',
    sipbuild.pyproject.PyProjectOptionException
    ----------------------------------------

How can I resolve this issue?

Unable to run on MAC

Hello, could You help with this issue ?

file:///Users/peter/Downloads/KivymdStudio-master/qml/NewProject.qml:540:17: QML ScrollView: Binding loop detected for property "implicitHeight"
libpng warning: iCCP: known incorrect sRGB profile
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[QNSApplication _setup:]: unrecognized selector sent to instance 0x7fc4e3aeae90'
*** First throw call stack:
(
0 CoreFoundation 0x00007ff810026fa6 __exceptionPreprocess + 242
1 libobjc.A.dylib 0x00007ff80fb1b231 objc_exception_throw + 48
2 CoreFoundation 0x00007ff8100cc2a4 -[NSObject(NSObject) __retain_OA] + 0
3 CoreFoundation 0x00007ff80ff94863 forwarding + 1379
4 CoreFoundation 0x00007ff80ff94278 _CF_forwarding_prep_0 + 120
5 libtk8.6.dylib 0x000000013433e1f2 TkpInit + 408
6 libtk8.6.dylib 0x00000001342adaac Initialize + 2454
7 _tkinter.cpython-39-darwin.so 0x0000000133f976d4 Tcl_AppInit + 84
8 _tkinter.cpython-39-darwin.so 0x0000000133f96ff2 _tkinter_create + 1362
9 Python 0x0000000107850143 cfunction_vectorcall_FASTCALL + 195
10 Python 0x00000001078e9eec call_function + 732
11 Python 0x00000001078e7382 _PyEval_EvalFrameDefault + 25554
12 Python 0x00000001078eabe3 _PyEval_EvalCode + 2611
13 Python 0x0000000107811dd1 _PyFunction_Vectorcall + 289
14 Python 0x0000000107811535 _PyObject_FastCallDictTstate + 293
15 Python 0x00000001078120b8 _PyObject_Call_Prepend + 152
16 Python 0x000000010786bb15 slot_tp_init + 165
17 Python 0x0000000107867069 type_call + 345
18 Python 0x00000001078116d7 _PyObject_MakeTpCall + 359
19 Python 0x00000001078e9f7c call_function + 876
20 Python 0x00000001078e7382 _PyEval_EvalFrameDefault + 25554
21 Python 0x0000000107811e48 function_code_fastcall + 104
22 Python 0x0000000107813ed2 method_vectorcall + 274
23 libpyside2.abi3.5.15.dylib 0x00000001074c7576 _ZN6PySide13SignalManager20callPythonMetaMethodERK11QMetaMethodPPvP7_objectb + 534
24 libpyside2.abi3.5.15.dylib 0x00000001074c6fa7 _ZN6PySide13SignalManager11qt_metacallEP7QObjectN11QMetaObject4CallEiPPv + 519
25 QtQml 0x000000010b32661d _ZL10CallMethodRK18QQmlObjectOrGadgetiiiPiPN3QV415ExecutionEngineEPNS3_8CallDataEN11QMetaObject4CallE + 5613
26 QtQml 0x000000010b322662 _ZL11CallPreciseRK18QQmlObjectOrGadgetRK16QQmlPropertyDataPN3QV415ExecutionEngineEPNS5_8CallDataEN11QMetaObject4CallE + 418
27 QtQml 0x000000010b321fda _ZNK3QV413QObjectMethod12callInternalEPKNS_5ValueES3_i + 1418
28 QtQml 0x000000010b33c7d5 _ZN3QV44Moth3VME9interpretEPNS_13CppStackFrameEPNS_15ExecutionEngineEPKc + 4469
29 QtQml 0x000000010b33b542 _ZN3QV44Moth3VME4execEPNS_13CppStackFrameEPNS_15ExecutionEngineE + 130
30 QtQml 0x000000010b2e1985 _ZN3QV48Function4callEPKNS_5ValueES3_iPKNS_16ExecutionContextE + 341
31 QtQml 0x000000010b465b9e _ZN24QQmlJavaScriptExpression8evaluateEPN3QV48CallDataEPb + 622
32 QtQml 0x000000010b41c3f6 _ZN25QQmlBoundSignalExpression8evaluateEPPv + 1014
33 QtQml 0x000000010b41cbcb _Z24QQmlBoundSignal_callbackP20QQmlNotifierEndpointPPv + 427
34 QtQml 0x000000010b44b785 _ZN12QQmlNotifier10emitNotifyEP20QQmlNotifierEndpointPPv + 581
35 QtCore 0x000000010baedb88 _Z10doActivateILb0EEvP7QObjectiPPv + 120
36 QtQml 0x000000010b48114d _ZN17QQmlObjectCreator8finalizeER26QQmlInstantiationInterrupt + 1533
37 QtQml 0x000000010b4114a2 _ZN20QQmlComponentPrivate8completeEP17QQmlEnginePrivatePNS_17ConstructionStateE + 82
38 QtQml 0x000000010b40f2e2 _ZN20QQmlComponentPrivate14completeCreateEv + 322
39 QtQml 0x000000010b410bd7 _ZN13QQmlComponent6createEP11QQmlContext + 71
40 QtQml 0x000000010b46ff4a _ZN28QQmlApplicationEnginePrivate10finishLoadEP13QQmlComponent + 474
41 QtQml 0x000000010b46fd60 _ZN28QQmlApplicationEnginePrivate9startLoadERK4QUrlRK10QByteArrayb + 720
42 QtQml 0x000000010b4707ed _ZN21QQmlApplicationEngine4loadERK7QString + 93
43 QtQml.abi3.so 0x0000000107fab7a2 ZL34Sbk_QQmlApplicationEngineFunc_loadP7_objectS0 + 130
44 Python 0x00000001078503da cfunction_vectorcall_O + 202
45 Python 0x00000001078e9eec call_function + 732
46 Python 0x00000001078e7382 _PyEval_EvalFrameDefault + 25554
47 Python 0x0000000107811e48 function_code_fastcall + 104
48 Python 0x0000000107813e8a method_vectorcall + 202
49 Python 0x00000001078e9eec call_function + 732
50 Python 0x00000001078e7382 _PyEval_EvalFrameDefault + 25554
51 Python 0x00000001078eabe3 _PyEval_EvalCode + 2611
52 Python 0x00000001078e0e8b PyEval_EvalCode + 139
53 Python 0x0000000107934dc3 pyrun_file + 387
54 Python 0x00000001079330f2 PyRun_SimpleFileExFlags + 850
55 Python 0x00000001079501d9 Py_RunMain + 1801
56 Python 0x000000010795066f pymain_main + 223
57 Python 0x000000010795086b Py_BytesMain + 43
58 dyld 0x00007ff80fb4f386 start + 1942
)
libc++abi: terminating due to uncaught exception of type NSException
zsh: abort python studio.py

Pyside2 and Pyside6 in MAC

hello , i believe from the documentation mac os is not yet supported , but im trying to open it on mac , all requirements installed but because there's a conflict between pyside2 and pyside6 it causes the app to crash (segmentation fault)

objc[34301]: Class QMacAutoReleasePoolTracker is implemented in both /Users/{user}/gits/venv/lib/python3.9/site-packages/PySide2/Qt/lib/QtCore.framework/Versions/5/QtCore (0x10f637198) and /Users/{user}/gits/venv/lib/python3.9/site-packages/PySide6/Qt/lib/QtCore.framework/Versions/A/QtCore (0x207290430). One of the two will be used. Which one is undefined.
objc[34301]: Class QT_ROOT_LEVEL_POOL__THESE_OBJECTS_WILL_BE_RELEASED_WHEN_QAPP_GOES_OUT_OF_SCOPE is implemented in both /Users/{user}/gits/venv/lib/python3.9/site-packages/PySide2/Qt/lib/QtCore.framework/Versions/5/QtCore (0x10f637210) and /Users/{user}/gits/venv/lib/python3.9/site-packages/PySide6/Qt/lib/QtCore.framework/Versions/A/QtCore (0x2072904a8). One of the two will be used. Which one is undefined.
objc[34301]: Class KeyValueObserver is implemented in both /Users/{user}/gits/venv/lib/python3.9/site-packages/PySide2/Qt/lib/QtCore.framework/Versions/5/QtCore (0x10f637238) and /Users/{user}/gits/venv/lib/python3.9/site-packages/PySide6/Qt/lib/QtCore.framework/Versions/A/QtCore (0x2072904d0). One of the two will be used. Which one is undefined.
objc[34301]: Class RunLoopModeTracker is implemented in both /Users/{user}/gits/venv/lib/python3.9/site-packages/PySide2/Qt/lib/QtCore.framework/Versions/5/QtCore (0x10f637288) and /Users/{user}/gits/venv/lib/python3.9/site-packages/PySide6/Qt/lib/QtCore.framework/Versions/A/QtCore (0x207290520). One of the two will be used. Which one is undefined.
file:///Users/{user}/gits/KivymdStudio/qml/NewProject.qml:540:17: QML ScrollView: Binding loop detected for property "implicitHeight"
libpng warning: iCCP: known incorrect sRGB profile
qt.qpa.fonts: Populating font family aliases took 322 ms. Replace uses of missing font family "Monospace" with one that exists to avoid this cost.
Segmentation fault: 11

i dont know why both pyside2 and pyside6 were needed but i think there's a reason behind that . ?

Error on run app

after installation i run command python studio.py and get error:


file:///home/wex/.local/lib/python3.9/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: Failed to initialize QSettings instance. Status code is: 1
file:///home/wex/.local/lib/python3.9/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: The following application identifiers have not been set: QVector("organizationName", "organizationDomain")
file:///home/wex/.local/lib/python3.9/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: Failed to initialize QSettings instance. Status code is: 1
file:///home/wex/.local/lib/python3.9/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: The following application identifiers have not been set: QVector("organizationName", "organizationDomain")
qml: ome
file:///home/wex/KivymdStudio/qml/TabViewStyle.qml:84:5: Unable to assign TabView_QMLTYPE_8 to TabView_QMLTYPE_13
file:///home/wex/KivymdStudio/qml/studio.qml:142: ReferenceError: parent is not defined
file:///home/wex/KivymdStudio/qml/FileManager.qml:88: ReferenceError: folders is not defined

qtchartsqml2.dll: The specified module could not be found.

KivymdStudio-master>python studio.py

QQmlApplicationEngine failed to load component
file:///D:/Programmieren/PyCharm_Projects/AutoYTPlaylist/KivymdStudio-master/qml/studio.qml:5:1: plugin cannot be loaded for module "QtCharts": The library C:\Users\User\AppData\Local Cannot load \Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\PySide2\qml\QtCharts\qtchartsqml2.dll: The specified module could not be found.

ModuleNotFoundError: No module named 'termios' win10_64

F:\download\KivymdStudio-master>python39 studio.py
Traceback (most recent call last):
File "F:\download\KivymdStudio-master\studio.py", line 7, in
from Terminal import*
File "F:\download\KivymdStudio-master\Terminal.py", line 3, in
import fcntl, locale, os, pty, struct, sys, termios
File "D:\python39\lib\pty.py", line 12, in
import tty
File "D:\python39\lib\tty.py", line 5, in
from termios import *
ModuleNotFoundError: No module named 'termios'

Setup issues

  1. The link is broken inside the readme file:
    link
    this gives a 404

  2. I tried forking the repo, created a venv with python 3.11 and ran the requirement.txt but I couldnt get the project running.
    There are a lot of unused imports and pyside2 seems not supported in 3.11. In the readme it´s saying "1. Install Python3.x", if 3.10 & 3.11 arent supported it should be added to the readme.

  3. After that I tried running the dockerfile. Once i tried running a container I got the error:

qt.qpa.xcb: could not connect to display
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

Available platform plugins are: eglfs, linuxfb, minimal, minimalegl, offscreen, vnc, wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-glx, webgl, xcb.

Both docker and the venv were created on win 10 if that information is helpfull

Can't create a project

hi , i can't create project , when clicking create nothing happens

file:///home/jhay/.local/lib/python3.10/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: Failed to initialize QSettings instance. Status code is: 1
file:///home/jhay/.local/lib/python3.10/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: The following application identifiers have not been set: QVector("organizationName", "organizationDomain")
file:///home/jhay/KivymdStudio/qml/NewProject.qml:539:17: QML ScrollView: Binding loop detected for property "implicitHeight"
libpng warning: iCCP: known incorrect sRGB profile
file:///home/jhay/.local/lib/python3.10/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: Failed to initialize QSettings instance. Status code is: 1
file:///home/jhay/.local/lib/python3.10/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: The following application identifiers have not been set: QVector("organizationName", "organizationDomain")
file:///home/jhay/.local/lib/python3.10/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: Failed to initialize QSettings instance. Status code is: 1
file:///home/jhay/.local/lib/python3.10/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: The following application identifiers have not been set: QVector("organizationName", "organizationDomain")
file:///home/jhay/.local/lib/python3.10/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: Failed to initialize QSettings instance. Status code is: 1
file:///home/jhay/.local/lib/python3.10/site-packages/PySide2/Qt/qml/QtQuick/Dialogs/DefaultFileDialog.qml:102:33: QML Settings: The following application identifiers have not been set: QVector("organizationName", "organizationDomain")
file:///home/jhay/KivymdStudio/qml/studio.qml:2403: ReferenceError: Terminal is not defined
file:///home/jhay/KivymdStudio/qml/TabViewStyle.qml:84:5: Unable to assign TabView_QMLTYPE_137 to TabView_QMLTYPE_120
file:///home/jhay/KivymdStudio/qml/FileManager.qml:114: ReferenceError: folders is not defined
qml: MyKivyApp /home/jhay/KvStudio_Projects/ true true false false pykv

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.