diff --git a/api/source/conf.py b/api/source/conf.py index b1e0dec..8432b85 100644 --- a/api/source/conf.py +++ b/api/source/conf.py @@ -19,6 +19,10 @@ import sys # documentation root, use os.path.abspath to make it absolute, like shown here. path_to_code = os.path.abspath(os.path.join(os.path.split(__file__)[0], '..', '..', '..', '..', 'OpenLP', 'trunk')) +if not os.path.exists(path_to_code): + print 'Incorrect path to code, expecting "%s"' % path_to_code + sys.exit(1) + sys.path.insert(0, path_to_code) # -- General configuration ----------------------------------------------------- diff --git a/user-guide/source/getting-started/first-time-wizard.rst b/user-guide/source/getting-started/first-time-wizard.rst index 51b065d..e69000b 100644 --- a/user-guide/source/getting-started/first-time-wizard.rst +++ b/user-guide/source/getting-started/first-time-wizard.rst @@ -2,5 +2,20 @@ First Time Wizard ================= -When you run OpenLP for the very first time, it will run the First Time Wizard -which helps you get OpenLP set up initially. \ No newline at end of file + +When OpenLP starts up for the first time, you can select the language you want +to use it in, or allow OpenLP to automatically detect your language from your +operating system. This may take a long time as OpenLP needs to contact the +download servers to initialise First Time Wizard. + +.. image:: ../screenshots/firsttimewizard/selecttranslation.png + +Follow the prompts once the First Time Wizard has started. + +.. image:: ../screenshots/firsttimewizard/firsttimewizard.png + +The First Time Wizard contains a selection of songs, Bibles and themes to +choose and download into OpenLP. The wizard also helps you set up your +monitors, your default theme and which features you want enabled. If at any +later stage you want to re-run the wizard, you can select it from within +OpenLP. diff --git a/user-guide/source/getting-started/getting-started.rst b/user-guide/source/getting-started/getting-started.rst index baeaf19..097b98d 100644 --- a/user-guide/source/getting-started/getting-started.rst +++ b/user-guide/source/getting-started/getting-started.rst @@ -12,7 +12,7 @@ system. .. toctree:: :maxdepth: 2 - + windows mac-os-x ubuntu diff --git a/user-guide/source/screenshots/firsttimewizard/firsttimewizard.png b/user-guide/source/screenshots/firsttimewizard/firsttimewizard.png new file mode 100644 index 0000000..4da495e Binary files /dev/null and b/user-guide/source/screenshots/firsttimewizard/firsttimewizard.png differ diff --git a/user-guide/source/screenshots/firsttimewizard/selecttranslation.png b/user-guide/source/screenshots/firsttimewizard/selecttranslation.png new file mode 100644 index 0000000..5b72e9c Binary files /dev/null and b/user-guide/source/screenshots/firsttimewizard/selecttranslation.png differ