UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    tedit development and design discussion

    Scheduled Pinned Locked Moved App Development
    tediteditorappdevelopmentfeatures
    200 Posts 13 Posters 46.4k Views 3 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
      Reply
      • Reply as topic
      Log in to reply
      This topic has been deleted. Only users with topic management privileges can see it.
      • D Offline
        domubpkm @danfro
        last edited by

        @danfro said in tedit development and design discussion:

        maybe clear cache every time tedit is closed.

        Why not if it's possible and even if it may not be the whole reason for the bug.
        That said everything is ok for me (for now...).

        1 Reply Last reply Reply Quote 0
        • stanwoodS Offline
          stanwood @danfro
          last edited by

          @danfro So I shut the device down during the night as I used to, and started up this morning. No change.
          Don't know where to find the logs (I'm not keen on installing apps such as "Log Viewer", which can lead to system instabilities).

          Redmi Note 9S Stable
          If God has a computer, it must be a GNU/Linux

          danfroD D 2 Replies Last reply Reply Quote 0
          • D Offline
            domubpkm
            last edited by

            Lionel did already create a fix for gitlab

            Thanks for this !! @lduboeuf . Really needed currently.

            1 Reply Last reply Reply Quote 0
            • messayistoM Offline
              messayisto @danfro
              last edited by

              @danfro https://dpaste.com/ATTBQZVFR
              hope that helps

              danfroD 1 Reply Last reply Reply Quote 0
              • danfroD Offline
                danfro @messayisto
                last edited by

                @messayisto Thanks a lot. Although sadly this doesn't help much. The only error is the "binding loop" one, which I get also without crashes. So not related I assume.

                1 Reply Last reply Reply Quote 0
                • danfroD Offline
                  danfro @stanwood
                  last edited by

                  @stanwood Logs can be pulled via journalctl. To grab the logs for tedit, you can run in terminal

                  journalctl --user -u lomiri-app-launch--application-click--tedit.danfro_tedit_3.4.0--.service >>tedit.log

                  stanwoodS 1 Reply Last reply Reply Quote 0
                  • stanwoodS Offline
                    stanwood @danfro
                    last edited by stanwood

                    @danfro Thank you.

                    I could successfully pair an ADB shell connexion between my smartphone and my PC (Xubuntu 24.04).

                    If I run

                    adb shell journalctl
                    

                    I have thousands and thousands lines in return.

                    But if I run:

                    stanwood@stanwood-K53SV:~$ adb shell journalctl --user -u lomiri-app-launch--application-click--tedit.danfro_tedit_3.4.0--.service >>tedit.log
                    stanwood@stanwood-K53SV:~$
                    

                    then, as you can see above, I have nothing returning. Sorry I'm really noobs on technical commands and stuffs like that... should I change "user" by "phablet" or something else?

                    Thank you and sorry once again for my very limited technical knowledge.

                    Redmi Note 9S Stable
                    If God has a computer, it must be a GNU/Linux

                    danfroD 1 Reply Last reply Reply Quote 0
                    • danfroD Offline
                      danfro @stanwood
                      last edited by

                      @stanwood No worries, trust me, I started like that some years ago as UT user. We all learn by doing this kind of testing. I had to actually search a while through Logviewers code to retrieve this command. 😉

                      First a suggestion in case you don't know yet. You can run just adb shell to open a terminal on the device. Then you can run commands as normal. It doesn't need to be adb shell COMMAND. (I find this more convenient)

                      The full command writes all the log output into a file called tedit.log. That is done by the last part >> tedit.log It kind of forwards output to a file. To see the output on screen just ommit this part and run only

                      journalctl --user -u lomiri-app-launch--application-click--tedit.danfro_tedit_3.4.0--.service

                      stanwoodS 1 Reply Last reply Reply Quote 0
                      • stanwoodS Offline
                        stanwood @danfro
                        last edited by

                        @danfro Got it! I just notice that a log file named "tedit.log" has been created in my home directory on my PC, funny isn't it? 😉
                        So I could pick it up in my Thunar files manager and copy - paste the information of a sequence below. So here we go:

                        Dec 02 22:38:15 ubuntu-phablet systemd[2701]: Started lomiri-app-launch--application-click--tedit.danfro_tedit_3.4.0--.service.
                        Dec 02 22:38:15 ubuntu-phablet aa-exec[18696]: library "eglSubDriverAndroid.so" not found
                        Dec 02 22:38:15 ubuntu-phablet aa-exec[18696]: Creating a QMirClientScreen now
                        Dec 02 22:38:19 ubuntu-phablet aa-exec[18696]: file:///usr/lib/aarch64-linux-gnu/qt5/qml/Lomiri/Components/1.3/TextInputPopover.qml:56:9: QML Action: Binding loop detected for property "enabled"
                        Dec 02 22:38:19 ubuntu-phablet systemd[2701]: lomiri-app-launch--application-click--tedit.danfro_tedit_3.4.0--.service: Main process exited, code=killed, status=11/SEGV
                        Dec 02 22:38:19 ubuntu-phablet systemd[2701]: lomiri-app-launch--application-click--tedit.danfro_tedit_3.4.0--.service: Failed with result 'signal'.
                        

                        I can provide you more sequences if you need, although there are not so much differences.

                        Hope it could help.

                        Redmi Note 9S Stable
                        If God has a computer, it must be a GNU/Linux

                        danfroD 1 Reply Last reply Reply Quote 0
                        • D Offline
                          domubpkm @stanwood
                          last edited by

                          @stanwood

                          @stanwood said in tedit development and design discussion:

                          I'm not keen on installing apps such as "Log Viewer", which can lead to system instabilities)

                          https://open-store.io/app/logviewer.ruditimmer is a great click easy to use. I Never had any problems or instabilities with this .click .

                          danfroD 1 Reply Last reply Reply Quote 0
                          • danfroD Offline
                            danfro @domubpkm
                            last edited by

                            @domubpkm I never had instabilities too. But since the app is unconfined, I understand that users are reluctant to install it just for some logs.

                            D 1 Reply Last reply Reply Quote 1
                            • D Offline
                              domubpkm @danfro
                              last edited by

                              @danfro said in tedit development and design discussion:

                              But since the app is unconfined, I understand that users are reluctant to install it just for some logs

                              Yes. But it can't be otherwise for you who are used to developing .click?

                              1 Reply Last reply Reply Quote 0
                              • danfroD Offline
                                danfro @stanwood
                                last edited by

                                @stanwood Btw. thanks for your logs. The second last line looks familiar to me. The part Main process exited, code=killed, status=11/SEGV might be a trace.

                                Just got a broken tedit again. But I don't have this message in Logviewer. Interesting, in terminal I get this message too, but from systemd service, not tedit. So filtering seems to be handled different there. I will have to ask other developers maybe if they have an idea.

                                1 Reply Last reply Reply Quote 1
                                • D Offline
                                  domubpkm
                                  last edited by

                                  @danfro I am not making a cause and effect relationship, I am describing what happened (volla 22 OTA 7) while everything was ok for some time:

                                  • installation of Mimi 0.1.3 then crash of Lomiri at the 1st search under duckduckgo.
                                  • clear cache config data then uninstall Mimi.
                                  • copy data in Tedit with prolonged finger presses: Tedit crashes.
                                  • copy data with virtual keyboard: ok.
                                  • copy data with prolonged finger presses: ok again.
                                  danfroD 1 Reply Last reply Reply Quote 0
                                  • danfroD Offline
                                    danfro @domubpkm
                                    last edited by

                                    @domubpkm Thanks for the report. Sounds like it may be related to clipboard and/or long press copy/past. Although that may not explain why it cashes when swiping. But its something to look into.

                                    D 1 Reply Last reply Reply Quote 0
                                    • D Offline
                                      domubpkm @danfro
                                      last edited by

                                      @danfro It seems that changing channels (i went from stable to devel) is enough to crash the copy with a long press. Works again without crashing after a copy with the keyboard.

                                      danfroD 1 Reply Last reply Reply Quote 0
                                      • danfroD Offline
                                        danfro @domubpkm
                                        last edited by

                                        @domubpkm I will need to investigate the copy/paste functions of the TextArea. That might conflict with system clipboard. But not today, its Christmas. 🙂 Have a nice time everone and I hope you can spend some days in peace and with friends+family.

                                        1 Reply Last reply Reply Quote 2
                                        • danfroD Offline
                                          danfro
                                          last edited by

                                          Hi everyone. You may have noticed, that I was busy recently working on weather app. 😉 Now I found some time to dig into tedit development a bit.

                                          @domubpkm and others may like one of the new features now available for testing: file list search.
                                          Please test the build from the latest pipeline: https://gitlab.com/Danfro/tedit/-/pipelines/1645371249/builds and let me know if that is working for you. I am mainly interested to hear how it performs on long lists and other devices.

                                          D 1 Reply Last reply Reply Quote 1
                                          • danfroD Offline
                                            danfro
                                            last edited by

                                            Another new feature that is already added, is regarding import of files. When you import a file that already exists, the new file will now be renamed and a timestamp is added. So it does not overwrite the existing file.

                                            1 Reply Last reply Reply Quote 0
                                            • D Offline
                                              domubpkm @danfro
                                              last edited by domubpkm

                                              @danfro Hello. Thanks for the search files feature, very useful. Works well for me on Volla 22 with currently 70 files in Tedit.

                                              1 Reply Last reply Reply Quote 1
                                              • First post
                                                Last post