From ffc01e7df5ae814b2953767850d051b52254ffd0 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 6 May 2026 09:13:13 +0800 Subject: [PATCH] Change the order of questions asked in the wizard. --- docs/en/tutorial/tutorial-1.md | 2 +- tox.ini | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/en/tutorial/tutorial-1.md b/docs/en/tutorial/tutorial-1.md index 25b08202..9f18ea7f 100644 --- a/docs/en/tutorial/tutorial-1.md +++ b/docs/en/tutorial/tutorial-1.md @@ -72,6 +72,7 @@ Let's start our first BeeWare project! We're going to use the Briefcase `new` co Briefcase will ask us for some details of our new application. For the purposes of this tutorial, use the following: +- **GUI framework** - Accept the default option, Toga (BeeWare's own GUI toolkit). - **Formal Name** - Accept the default value: `Hello World`. - **App Name** - Accept the default value: `helloworld`. - **Bundle Identifier** - If you own your own domain, enter that domain in reversed order. (For example, if you own the domain "cupcakes.com", enter `com.cupcakes` as the bundle). If you don't own your own domain, accept the default bundle (`com.example`). @@ -81,7 +82,6 @@ Briefcase will ask us for some details of our new application. For the purposes - **Author's Email** - Enter your own email address. This will be used in the configuration file, in help text, and anywhere that an email is required when submitting the app to an app store. - **Application URL** - The URL of the landing page for your application. Again, if you own your own domain, enter a URL at that domain (including the `https://`). Otherwise, just accept the default URL (`https://example.com/helloworld`). This URL doesn't need to actually exist (for now); it will only be used if you publish your application to an app store. - **Project License** - Accept the default license (BSD). This won't affect anything about the operation of the tutorial, though - so if you have particularly strong feelings about license choice, feel free to choose another license. -- **GUI framework** - Accept the default option, Toga (BeeWare's own GUI toolkit). Briefcase will then generate a project skeleton for you to use. If you've followed this tutorial so far, and accepted the defaults as described, your file system should look something like: diff --git a/tox.ini b/tox.ini index 0b91910a..e21a3c2b 100644 --- a/tox.ini +++ b/tox.ini @@ -8,6 +8,9 @@ docs_dir = {tox_root}{/}docs{/}en # Docs are always built on Python 3.13. See also the RTD config. base_python = py313 skip_install = true +setenv = + DISABLE_MKDOCS_2_WARNING = true + NO_MKDOCS_2_WARNING = 1 passenv = DEEPL_API_KEY dependency_groups = docs