-
Notifications
You must be signed in to change notification settings - Fork 14
Updating Levure
Levure is an ongoing project so it is important to keep the copy used in your application project updated for bug fixes and improvements.
The Levure framework and utilities are entirely contained in the levure
folder in your application project folder. The levure
folder is a copy of the Levure master on Github. It is a good idea to keep your levure
folder current with the latest version of the Levure master.
- 📂 your_application_project_folder
- 📁 app
- 📁 builds
- 📁 levure
How you update your levure
folder depends on whether or not you are using Git.
If you are updating without Git, the easiest way is to download a copy of the latest Levure master from Github and replace the entire levure
folder in your application project folder.
-
Go to the Github project: https://github.com/trevordevore/levure.
-
Click the Clone or download button.
-
Click Download ZIP. The
levure-master.zip
file will be downloaded onto your computer. -
Unzip
levure-master.zip
to get thelevure-master
folder. -
Move the
levure-master
folder into your project folder. -
Delete the old
levure
folder from your project folder. -
Rename the
levure-master
folder tolevure
.
If you are using Git, you can easily update your levure
folder as a submodule. If you originally created your application project using the Levure project creator with the Use Git option checked, then your levure
folder is already a submodule.
To update your levure
folder to the latest Github master, open the Terminal application on your computer and change directories into the root of your project folder.
cd <the root of your application project folder>
Then update the levure
submodule:
git submodule update --remote levure
Now the levure
folder in your application project is synchronized with the Levure master on Github.
Levure is an application development framework written for LiveCode.