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.


    Pythonista 3.4 is out!

    Pythonista
    20
    64
    5345
    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.
    • LankyDonkey
      LankyDonkey last edited by

      Sorry to be negative but all my apps have started since this morning. I didnt realise anything had changed until I saw that a new update had been released. Could you please help me figure out what is going on as I love Pythonista and have written several apps that I use everyday. However now after a minute or 2 of using the app the whole of pythonista crashes. I have been running the apps for over 2 years and I have never seen this happen before.

      Thank you

      LankyDonkey 1 Reply Last reply Reply Quote 0
      • LankyDonkey
        LankyDonkey @LankyDonkey last edited by

        @LankyDonkey I am on ios 16.4.1

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

          @ForceBru Thanks for the crash log. Unfortunately, it has become pretty difficult to test on iOS 12, and apparently no one in the beta was still using it, so it slipped through. Sorry about this! I'll look into it.

          ForceBru 1 Reply Last reply Reply Quote 0
          • RHH
            RHH @RHH last edited by

            This post is deleted!
            1 Reply Last reply Reply Quote 0
            • bosco
              bosco @LankyDonkey last edited by

              @LankyDonkey Issues after upgrading are often caused by modules in site-packages-3 or site-packages. Modules like requests or dropbox have been updated in the built-in site-packages and can be deleted from user site-packages. I would start with deleting all modules in site-packages-3 if you have any. If you use stash, there are other threads in this forum with instructions for installing the dev version that works with Pythonista 3.4

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

                @omz, please, please look into it, I can't lose my daily driver... Unfortunately, I couldn't get into the beta since it's full. Which is understandable, because Pythonista is still, in 2023, the absolute best Python IDE for iOS. 20/10, would buy again and recommend to more people. Let me know if I can help resolve this in any way!

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

                  Great Job! So far the transition has been seamless, with my earlier scripts running just fine!

                  Thanks for doing this (again).

                  Is there a place we can use Paypal to show our gratitude? You deserve some new income from those of us who are not new purchasers!

                  M

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

                    @omz So happy about this. Just 5star reviewed the update!

                    1 Reply Last reply Reply Quote 0
                    • R
                      random_soul last edited by

                      @omz, thank you so much for the update, using it for years, and love this app so much!

                      Last night I been trying to use the datepicker,
                      realise it has changed to the new style! Is there any way to continue using the old date picker which uses a scroll wheel!
                      I been trying for the whole night, but got no clue!
                      I am not pro at programming, so may lake of some basics!
                      could you tell how to do this, appreciated,
                      Many thanks!

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

                        @random_soul please, try this

                        import ui
                        from  objc_util import ObjCInstance
                        
                        v = ui.View()
                        v.background_color = 'white'
                        dp = ui.DatePicker()
                        
                        objc = ObjCInstance(dp)
                        
                        @on_main_thread
                        def setWheel():
                        	objc.setPreferredDatePickerStyle_(1)
                        setWheel()
                        
                        v.add_subview(dp)
                        v.present()
                        

                        alt text

                        Note that Apple doc says this PreferredDatePickerStyle should be 3 for wheel but it only works with 1 and don't ask me why.

                        Styles
                        case automatic
                        A style indicating that the system picks the concrete style based on the current platform and date picker mode.
                        case compact
                        A style indicating that the date picker displays as a label that when tapped displays a calendar-style editor.
                        case inline
                        A style indicating that the date pickers displays as an inline, editable field.
                        case wheels
                        A style indicating that the date picker displays as a wheel picker
                        
                        R 1 Reply Last reply Reply Quote 2
                        • R
                          random_soul @cvp last edited by

                          @cvp
                          it worked! Yes! Thank you!
                          This really helps!
                          I wrote an app in which uses the datepicker,
                          and been use the app almost 3 years,
                          The change affected my way of using the app,
                          finally I got my old routine back!
                          Many thanks, and wish you best! (^_^)v

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

                            @random_soul Thank you and hoping that none of your scripts crashes with V3.4

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

                              @cvp
                              thanks and best! (^_^) Thumbs Up!

                              1 Reply Last reply Reply Quote 0
                              • ccc
                                ccc @ForceBru last edited by

                                @ForceBru on iOS 12, please try opening your browser and going to the URL pythonista3://

                                ForceBru 1 Reply Last reply Reply Quote 0
                                • ForceBru
                                  ForceBru @ccc last edited by

                                  @ccc, tried this and the "Launch in Safe Mode" option in settings, but neither worked. The crash log says there's a problem with the Freetype library, so I guess I can't do anything about this and have to wait for the fix...

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

                                    @ForceBru to help eventually @omz, please post the full crash log

                                    ForceBru 1 Reply Last reply Reply Quote 0
                                    • ttobias
                                      ttobias last edited by

                                      @omz Thanks for the update, works great.
                                      Could you check if it is possible fix Multicast Networking?
                                      https://forum.omz-software.com/topic/8035/no-route-to-host-error-in-beta-340009-when-using-multicast

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

                                        @cvp said in Pythonista 3.4 is out!:

                                        @ForceBru to help eventually @omz, please post the full crash log

                                        I posted the crash log in my very first comment. All other crash logs (after enabling Safe Mode and via pythonista3://) are the exact same.

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

                                          @ForceBru ok, sorry

                                          1 Reply Last reply Reply Quote 0
                                          • LankyDonkey
                                            LankyDonkey @bosco last edited by

                                            @bosco I just tried to re-install some packages (eg wikipedia, fuzzywuzzy) via stash and am getting the same error message: No such file or directory: '/private/var/mobile/Containers/Shared/AppGroup/396C78F0-721B-4513-AE1D-505E0C669841/Pythonista3/Documents/site-packages-3/.pypi_packages'
                                            I tried searching this forum but no luck

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