diff --git a/README.md b/README.md index 3675dbb..f76e090 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ Documentation * [Installation](doc/01-Installation.md) * [Getting Started](doc/02-Getting-Started.md) * [Create your first process node](doc/03-Create-your-first-process-node.md) -* [Create additional nodes](doc/04-Create-additional-nodes.md) -* [Populate your structure](doc/05-Populate-your-structure.md) +* [~~Create additional nodes~~](doc/04-Create-additional-nodes.md) +* [~~Populate your structure~~](doc/05-Populate-your-structure.md) ### Web Components * [Breadcrumb](doc/12-Web-Components-Breadcrumb.md) @@ -36,7 +36,7 @@ Documentation * [Show Processes on a Dashboard](doc/16-Add-To-Dashboard.md) ### Storage -* [~~Store your Configuration~~](doc/21-Store-Config.md) +* [Store your Configuration](doc/21-Store-Config.md) * [~~Upload an existing Configuration~~](doc/22-Upload-Config.md) ### Monitoring diff --git a/doc/21-Store-Config.md b/doc/21-Store-Config.md new file mode 100644 index 0000000..84a3613 --- /dev/null +++ b/doc/21-Store-Config.md @@ -0,0 +1,25 @@ +Store your Configuration +===================================================== + +Changes to your *Business Process Configuration* are added to a stack and will +not be stored immediately. In case there are pending unstored changes, this will +be shown on every screen: + +![Pending Changes](screenshot/21_store-config/2101_Pending-Changes.png) + +A click on *Dismiss* immediately throws away all unstored changes. A click on +*Store* brings you to the configuration form. You have seen this before, once +you created your [very first configuration](02-Getting-Started.md): + +![Store Config](screenshot/21_store-config/2102_Store-Config.png) + +Config Diff +----------- + +If unsure what changes you're going to store, you can still check the *Config Diff* +before finally storing to disk: + +![Show Diff](screenshot/21_store-config/2103_Show-Diff.png) + +You can also download your existing configuration to safe it elsewhere or to +apply manual modifications with our favourite plaintext editor. diff --git a/doc/screenshot/21_store-config/2101_Pending-Changes.png b/doc/screenshot/21_store-config/2101_Pending-Changes.png new file mode 100644 index 0000000..7e33981 Binary files /dev/null and b/doc/screenshot/21_store-config/2101_Pending-Changes.png differ diff --git a/doc/screenshot/21_store-config/2102_Store-Config.png b/doc/screenshot/21_store-config/2102_Store-Config.png new file mode 100644 index 0000000..d985786 Binary files /dev/null and b/doc/screenshot/21_store-config/2102_Store-Config.png differ diff --git a/doc/screenshot/21_store-config/2103_Show-Diff.png b/doc/screenshot/21_store-config/2103_Show-Diff.png new file mode 100644 index 0000000..7025f6c Binary files /dev/null and b/doc/screenshot/21_store-config/2103_Show-Diff.png differ