From d7a6ffe63d9a8bc364c08850781bb0dc1cf7796b Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sat, 31 Mar 2018 11:38:24 +0200 Subject: [PATCH] update version and doc --- cesetup/cesetup.coedit | 2 +- cesetup/version.txt | 2 +- docs/features_runnables.md | 8 +++++--- docs/index.md | 4 ++-- docs/widgets_dub_project_editor.md | 2 +- docs/widgets_gdb_commander.md | 1 + docs/widgets_mini_explorer.md | 5 ++++- docs/widgets_project_inspector.md | 7 ++++++- 8 files changed, 21 insertions(+), 10 deletions(-) diff --git a/cesetup/cesetup.coedit b/cesetup/cesetup.coedit index 39d647e5..944ba3c5 100644 --- a/cesetup/cesetup.coedit +++ b/cesetup/cesetup.coedit @@ -84,5 +84,5 @@ object CurrentProject: TCENativeProject 'cesetup.d' ) ConfigurationIndex = 2 - version = '3.6.5' + version = '3.6.6' end diff --git a/cesetup/version.txt b/cesetup/version.txt index df731bb0..dde31d2e 100644 --- a/cesetup/version.txt +++ b/cesetup/version.txt @@ -1 +1 @@ -v3.6.5 +v3.6.6 diff --git a/docs/features_runnables.md b/docs/features_runnables.md index f6c4b100..7e2168fb 100644 --- a/docs/features_runnables.md +++ b/docs/features_runnables.md @@ -24,7 +24,7 @@ A runnable is useful to quickly test an idea, learn how to use new libraries, or By default runnables don't need any setting however the shebang line can be used when specific compiler options are required. Two typical scenarios: -- the runnable will be debugged so DWARF information must be generated with `-g`. +- the runnable will be debugged so DWARF informations must be generated with `-g`. - the runnable must be linked with a C static library so the linker flag `-L-lthelib` must be specified. Coedit doesn't handle the program specified after the She-Bang, which means that all the following script lines are valid: @@ -55,11 +55,11 @@ To be runnable, a module must verify: The _Compile file and run outside_ action can be used to execute in an external console. It must be used if the runnable outputs thousands of lines, to display properly UTF8 characters or if it has a GUI. -The version identifier **runnable_module** is automatically defined when a runnable is compiled. +The version identifier **single_module** and **run_single_module** are automatically defined when a runnable is compiled. It can be used to adjust the source according to the execution context, for example: ```d -version(runnable_module) +version(single_module) { stdout.writeln("to output stream"); } @@ -69,6 +69,8 @@ else } ``` +When the action _Run file unittests_ is used, **single_module** and **test_single_module** are defined. + The executable produced is deleted after each run unless the file has been saved explicitly out of the initial temporary folder. Note that the action _Run file unittest_ is based on the same internal function excepted that the `-main` and `-unittest` switches are automatically added to the switch list (menu **File**, action **Set runnable switches**). diff --git a/docs/index.md b/docs/index.md index dafa0524..78d3fc52 100644 --- a/docs/index.md +++ b/docs/index.md @@ -10,8 +10,8 @@ title: index ![](img/coedit_kde4_thumb.png) -This documentation is based on version 3.6.3. -Screenshots can be outdated but descriptions are up to the date. +This documentation is based on version 3.6.6. +Screenshots can be outdated but descriptions are up to date. #### First steps diff --git a/docs/widgets_dub_project_editor.md b/docs/widgets_dub_project_editor.md index cb55f122..376e7a9e 100644 --- a/docs/widgets_dub_project_editor.md +++ b/docs/widgets_dub_project_editor.md @@ -21,7 +21,7 @@ New properties can be added or removed: - : Shows a small dialog that allows to add a new value, a new array or a new object. - : Removes the selected property. Note that the effect is not reflected until the project is saved as a file (since Coedit does not communicate directly with DUB). - : Duplicates the selected object. Can be used to clone a configuration or a build type. -- : Updates the source files list. +- : Updates the list of sources files and auto fetch dependencies if specified as an option for [DUB](options_dub_build) ![](img/dub_add_property.png) diff --git a/docs/widgets_gdb_commander.md b/docs/widgets_gdb_commander.md index 802d14e6..51f40ad2 100644 --- a/docs/widgets_gdb_commander.md +++ b/docs/widgets_gdb_commander.md @@ -93,6 +93,7 @@ The text following the symbol is written to the input stream, with an implicit n - **autoGetThreads**: Sets if the thread list is automatically updated when the execution breaks. - **autoGetVariables**: Sets if the list of the local variables is automatically updated when the execution breaks. - **commandHistory**: Container that stores the custom GDB commands. +- **customEvalHistory**: Container that stores the custom expression that have been evaluated. - **ignoredSignals**: Sets the signals that won't break the execution. - **keepRedirectedStream**: Sets if the files that contain the inferior I/O history are kept on the disk. These files stands in the target directory with the extensions _.inferiorin_ and _.inferiorout_. - **shortcuts**: Allows to define a shortcut for each button in the toolbar. diff --git a/docs/widgets_mini_explorer.md b/docs/widgets_mini_explorer.md index 26a43127..e4419b9f 100644 --- a/docs/widgets_mini_explorer.md +++ b/docs/widgets_mini_explorer.md @@ -15,6 +15,8 @@ The mini explorer provides basic file browsing functionality within the IDE. ![](img/mini_explorer.png) +- : When clicked, allows to select a custom tree root. When using the associated drop down, allows to select a particular drive as root. +- : Got to the root parent folder. - : Adds the selected folder to the favorites. - : Removes the selected favorite folder. - : Open the selected folder or execute the selected file using the shell. @@ -29,8 +31,9 @@ A few options are available in the [option editor](widgets_options_editor). ![](img/options_mini_explorer.png) -- **contextExpands**: If checked then the tree auto expands to the folder that contains the source or the project file that's been selected. +- **contextExpands**: If checked then the tree auto expands to the folder that contains the source or the project file that's been focused. - **doubleClick**: Defines what happens when a file is double clicked. +- **showHidden**: Sets if hidden folders and files are displayed. {% raw %}