omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    New Beta for Pythonista 3.3

    Pythonista
    44
    98
    95187
    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.
    • mikael
      mikael last edited by

      In the Testflight version, under External files, Open..., I can choose between ”Python/Text file” and ”Folder”. If I select folder, I still only see iCloud and ”On this Phone” folders, but no Working Copy repositories.

      Am I missing something obvious?

      1 Reply Last reply Reply Quote 0
      • shaun-h
        shaun-h last edited by

        I can see Working Copy and access folders in it (note: I use the Working Copy test flight version), so unsure as to why but I assume you can see Working Copy in the files app.

        mikael 1 Reply Last reply Reply Quote 1
        • cvp
          cvp last edited by cvp

          I don't use WorkingCopy but I see iCloud, On My iPad, my NAS ip and my Mac ip

          1 Reply Last reply Reply Quote 0
          • mikael
            mikael @shaun-h last edited by

            @shaun-h, thanks. I had somehow lost Working Copy in Files. After I enabled it again there I can now open the repos directly in Pythonista – excellent!

            1 Reply Last reply Reply Quote 1
            • cvp
              cvp last edited by

              Now, the open external folder also shows an usb Drive connected, and that is a very good news...

              1 Reply Last reply Reply Quote 0
              • omz
                omz last edited by

                The idea is that I still need to finish a few things for the release (mostly app preview video etc.), but I wanted to ensure that users get access to the update a bit earlier because I can’t really foresee how smoothly app review etc. goes, and some people relied on features that were in previous betas, but not in 3.2.

                cvp 1 Reply Last reply Reply Quote 0
                • cvp
                  cvp @omz last edited by

                  @omz Welcome back and thanks for the future version. I'm sincerely more than happy that you feel better.

                  1 Reply Last reply Reply Quote 3
                  • omz
                    omz last edited by

                    @cvp Thank you!

                    jmv38 1 Reply Last reply Reply Quote 0
                    • jmv38
                      jmv38 @omz last edited by

                      @omz welcome back sir. Thank you for the update.

                      omz 1 Reply Last reply Reply Quote 1
                      • omz
                        omz @jmv38 last edited by

                        @jmv38 Thanks to you as well! :)

                        mikael 1 Reply Last reply Reply Quote 0
                        • shinyformica
                          shinyformica last edited by

                          @omz thanks for the update!

                          Pythonista has been unbelievably helpful at my work, and continues to impress every day.

                          1 Reply Last reply Reply Quote 2
                          • mikael
                            mikael @omz last edited by

                            @omz, my sincere thanks to you, as well.

                            Pythonista and this incredible community have enabled me to keep up and develop my Python knowledge, squeezed in between a non-coding job and a busy family life.

                            I am not exaggerating when I say that that was the primary thing that enabled me to get a new job, starting a new career next month as a full-time senior Python developer.

                            1 Reply Last reply Reply Quote 4
                            • Olaf
                              Olaf last edited by

                              Happy to see you @omz and the update!

                              1 Reply Last reply Reply Quote 0
                              • bennr01
                                bennr01 last edited by

                                @omz Glad to see you in the forums again :)

                                BTW, in the current beta, the keyboard.set_view() method still has TODO (also document custom view callbacks like kb_should_insert) as the documentation.

                                omz 1 Reply Last reply Reply Quote 0
                                • omz
                                  omz @bennr01 last edited by

                                  @bennr01 said:

                                  BTW, in the current beta, the keyboard.set_view() method still has TODO (also document custom view callbacks like kb_should_insert) as the documentation.

                                  Oops, thanks!

                                  1 Reply Last reply Reply Quote 0
                                  • omz
                                    omz last edited by

                                    @mikael said:

                                    I am not exaggerating when I say that that was the primary thing that enabled me to get a new job, starting a new career next month as a full-time senior Python developer.

                                    That's amazing, congrats! :)

                                    1 Reply Last reply Reply Quote 1
                                    • Blanchot
                                      Blanchot last edited by Blanchot

                                      Dear @omz,

                                      Welcome back! The fact that this forum has continued to be a lively place where regular members help others with their questions and regularly offer their code snippets as solutions to problems is a measure of the love and enthusiasm folks have for pythonista.

                                      That too is amazing!

                                      1 Reply Last reply Reply Quote 2
                                      • mithrendal
                                        mithrendal last edited by mithrendal

                                        @Blanchot So true.

                                        @mikael your new job colleagues will be very happy as they get a high skilled and very talented work mate with you!!! Wish you a happy time on your new journey.

                                        1 Reply Last reply Reply Quote 1
                                        • technoway
                                          technoway last edited by technoway

                                          With the latest Pythonista Beta v. 3.3 (330025), installed today, i.e. 20 Feb., 2020, I get the same crash in my App I got with the last Beta.

                                          I tracked it down to the very first line of code that executes in my App! I commented out that line, and my App runs successfully.

                                          That line is:

                                          A great many lines of code are omitted both before and after the code snippet shown.

                                                  # Prevent iPhone from going to sleep while this program runs.
                                                  console.set_idle_timer_disabled(True)
                                          
                                                  # Create an instance of a class that derives from ui.View.
                                                  # <code-omitted>
                                          

                                          If I comment out that one line of code, the program does not crash.

                                          I am running that on an iPhone 6s running IOS 13.3.1

                                          codeprezzer 1 Reply Last reply Reply Quote 0
                                          • codeprezzer
                                            codeprezzer @technoway last edited by

                                            @technoway said:

                                            With the latest Pythonista Beta v. 3.3 (330025), installed today, i.e. 20 Feb., 2020, I get the same crash in my App I got with the last Beta.

                                            I tracked it down to the very first line of code that executes in my App! I commented out that line, and my App runs successfully.

                                            That line is:

                                            A great many lines of code are omitted both before and after the code snippet shown.

                                                    # Prevent iPhone from going to sleep while this program runs.
                                                    console.set_idle_timer_disabled(True)
                                            
                                                    # Create an instance of a class that derives from ui.View.
                                                    # <code-omitted>
                                            

                                            If I comment out that one line of code, the program does not crash.

                                            I am running that on an iPhone 6s running IOS 13.3.1

                                            I'm having exactly same issue since updating to 3.3 earlier today. Commenting out the "console.set_idle_timer_disabled(True)" helps. iPhone 8 and 13.3.1. Phone reboot not help.

                                            Thanks 👍

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Powered by NodeBB Forums | Contributors