diff --git a/data/geany.glade b/data/geany.glade index c73b2e01e..675ffbce1 100644 --- a/data/geany.glade +++ b/data/geany.glade @@ -997,7 +997,7 @@ True True - Path to start in when opening or saving files. Must be an absolute path. Leave blank to use the current working directory. + Path to start in when opening or saving files. Must be an absolute path. False False diff --git a/doc/geany.html b/doc/geany.html index 00c5aa071..a658e2f23 100644 --- a/doc/geany.html +++ b/doc/geany.html @@ -2159,8 +2159,7 @@ you open Geany it's in the same location.
Startup path
Path to start in when opening or saving files. -It must be an absolute path. -Leave it blank to use the current working directory.
+It must be an absolute path.
Project files
Path to start in when opening project files.
Extra plugin path
@@ -5982,17 +5981,29 @@ copied into the configured backup directory when the file is saved in Geany.

This document (geany.txt) is written in reStructuredText (or "reST"). The source file for it is located in Geany's doc subdirectory. If you intend on making changes, you should grab the -source right from SVN to make sure you've got the newest version. After +source right from Git to make sure you've got the newest version. After editing the file, to build the HTML document to see how your changes look, run "make doc" in the subdirectory doc of Geany's source directory. This regenerates the geany.html file. To generate a PDF file, use the command "make pdf" which should generate a file called geany-1.22.pdf.

-

After you are happy with your changes, create a patch:

+

After you are happy with your changes, create a patch e.g. by using:

-% svn diff geany.txt > foo.patch
+% git diff geany.txt > foo.patch
+
+

or even better, by creating a Git-formatted patch which will keep authoring +and description data, by first committing your changes (doing so in a fresh +new branch is recommended for matser not to diverge from upstream) and then +using git format-patch:

+
+% git checkout -b my-documentation-changes # create a fresh branch
+% git commit geany.txt
+Write a good commit message...
+% git format-patch HEAD^
+% git checkout master # go back to master
 

and then submit that file to the mailing list for review.

+

Also you can clone the Geany repository at GitHub and send a pull request.

Note, you will need the Python docutils software package installed to build the docs. The package is named python-docutils on Debian and Fedora systems.

@@ -6776,7 +6787,7 @@ USE OR PERFORMANCE OF THIS SOFTWARE.

diff --git a/doc/geany.txt b/doc/geany.txt index 671618081..0a8969c1c 100644 --- a/doc/geany.txt +++ b/doc/geany.txt @@ -1763,7 +1763,6 @@ Paths Startup path Path to start in when opening or saving files. It must be an absolute path. - Leave it blank to use the current working directory. Project files Path to start in when opening project files.