Fossil SCM
Updates to the change log and a typo fix in one of the documentation pages.
Commit
7705070de7b2eb1845023af00f71ca9f00c433ec
Parent
3d8bf07d13f1ec9…
2 files changed
+1
-1
+31
-8
+1
-1
| --- src/publish.c | ||
| +++ src/publish.c | ||
| @@ -58,11 +58,11 @@ | ||
| 58 | 58 | ** |
| 59 | 59 | ** Cause artifacts identified by TAGS... to be published (made non-private). |
| 60 | 60 | ** This can be used (for example) to convert a private branch into a public |
| 61 | 61 | ** branch, or to publish a bundle that was imported privately. |
| 62 | 62 | ** |
| 63 | -** If any of TAGS names a branch, then all checkins on that most recent | |
| 63 | +** If any of TAGS names a branch, then all checkins on the most recent | |
| 64 | 64 | ** instance of that branch are included, not just the most recent checkin. |
| 65 | 65 | ** |
| 66 | 66 | ** If any of TAGS name checkins then all files and tags associated with |
| 67 | 67 | ** those checkins are also published automatically. Except if the --only |
| 68 | 68 | ** option is used, then only the specific artifacts identified by TAGS |
| 69 | 69 |
| --- src/publish.c | |
| +++ src/publish.c | |
| @@ -58,11 +58,11 @@ | |
| 58 | ** |
| 59 | ** Cause artifacts identified by TAGS... to be published (made non-private). |
| 60 | ** This can be used (for example) to convert a private branch into a public |
| 61 | ** branch, or to publish a bundle that was imported privately. |
| 62 | ** |
| 63 | ** If any of TAGS names a branch, then all checkins on that most recent |
| 64 | ** instance of that branch are included, not just the most recent checkin. |
| 65 | ** |
| 66 | ** If any of TAGS name checkins then all files and tags associated with |
| 67 | ** those checkins are also published automatically. Except if the --only |
| 68 | ** option is used, then only the specific artifacts identified by TAGS |
| 69 |
| --- src/publish.c | |
| +++ src/publish.c | |
| @@ -58,11 +58,11 @@ | |
| 58 | ** |
| 59 | ** Cause artifacts identified by TAGS... to be published (made non-private). |
| 60 | ** This can be used (for example) to convert a private branch into a public |
| 61 | ** branch, or to publish a bundle that was imported privately. |
| 62 | ** |
| 63 | ** If any of TAGS names a branch, then all checkins on the most recent |
| 64 | ** instance of that branch are included, not just the most recent checkin. |
| 65 | ** |
| 66 | ** If any of TAGS name checkins then all files and tags associated with |
| 67 | ** those checkins are also published automatically. Except if the --only |
| 68 | ** option is used, then only the specific artifacts identified by TAGS |
| 69 |
+31
-8
| --- www/changes.wiki | ||
| +++ www/changes.wiki | ||
| @@ -1,14 +1,35 @@ | ||
| 1 | 1 | <title>Change Log</title> |
| 2 | 2 | |
| 3 | 3 | <h2>Changes For Version 1.30 (2015-01-??)</h2> |
| 4 | - * Add setting to control the number of times autosync will be tried before | |
| 5 | - returning an error. | |
| 4 | + * Added the [/help?cmd=bundle|fossil bundle] command. | |
| 5 | + * Added the [/help?cmd=purge|fossil purge] command. | |
| 6 | + * Added the [/help?cmd=publish|fossil publish] command. | |
| 7 | + * Added the [/help?cmd=unpublished|fossil unpublished] command. | |
| 8 | + * Enhance the [/tree] webpage to show the age of each file and to give the | |
| 9 | + option to sort the display by file age - newest files first. | |
| 10 | + * Enhance the [/brlist] webpage to show additional information about each branch | |
| 11 | + and to be sortable by click on column headers. | |
| 12 | + * Add support for Docker. Just install docker and type | |
| 13 | + "sudo docker run -d -p 8080:8080 nijtmans/fossil" to get it running. | |
| 6 | 14 | * Add the [/help/fusefs|fossil fusefs DIRECTORY] command that mounts a |
| 7 | 15 | Fuse Filesystem at the given DIRECTORY and populates it with read-only |
| 8 | 16 | copies of all historical check-ins. This only works on systems that |
| 9 | 17 | support FuseFS. |
| 18 | + * Add the administrative log - recording all configuration changes to a | |
| 19 | + repository. | |
| 20 | + * Added the [/sitemap] webpage. | |
| 21 | + * Added the [/bloblist] web page. | |
| 22 | + * Let [/help?cmd=new|fossil new] no longer create an initial empty commit | |
| 23 | + by default. The first commit after checking out an empty repository will | |
| 24 | + become the initial commit. | |
| 25 | + * Added the [/help?cmd=all|fossil all dbstat] command and the --db-check | |
| 26 | + command-line option. | |
| 27 | + * Update SQLite to version 3.8.8. | |
| 28 | + * Added the --verily option to the [/help?cmd=clean|fossil clean] command. | |
| 29 | + * Add setting to control the number of times autosync will be tried before | |
| 30 | + returning an error. | |
| 10 | 31 | * Added a compile-time option (--with-miniz) to build using miniz instead |
| 11 | 32 | of zlib. Disabled by default. |
| 12 | 33 | * Several fixes to the TH1 expression parser. |
| 13 | 34 | * Support customization of commands and webpages, including the ability to |
| 14 | 35 | add new ones, via the "TH1 hooks" feature. Disabled by default. Enabled |
| @@ -15,28 +36,30 @@ | ||
| 15 | 36 | via a compile-time option. |
| 16 | 37 | * Add the <nowiki>[checkout], [render], [styleHeader], [styleFooter], |
| 17 | 38 | [trace], [getParameter], [setParameter], [artifact], and |
| 18 | 39 | [globalState]</nowiki> commands to TH1, primarily for use by TH1 hooks. |
| 19 | 40 | * Bring in the latest version of autosetup from upstream. |
| 41 | + * Automatically adjust the width of command-line output according to the | |
| 42 | + detected width of the terminal. | |
| 20 | 43 | * When committing a (non-binary) file which contains bytes forming an |
| 21 | 44 | invalid UTF-8 stream, fossil now adds the possibility to convert it |
| 22 | 45 | to a valid UTF-8 stream ('c') if you like. |
| 23 | - * Let [/help?cmd=new|fossil new] no longer create an initial empty commit | |
| 24 | - by default. The first commit after checking out an empty repository will | |
| 25 | - become the initial commit. | |
| 26 | 46 | * Added a line-number toggle option to the [/help?cmd=/info|/info] |
| 27 | 47 | and [/help?cmd=/artifact|/artifact] pages. |
| 28 | - * Add check to most commands to error on unknown command-line options | |
| 48 | + * Updates most commands so that they generate errors when used with | |
| 49 | + unknown command-line options. | |
| 50 | + * Use full 40-character SHA1 hashes (instead of abbreviations) in most | |
| 51 | + internal URLs. | |
| 29 | 52 | * Fix to prevent partial clone when connection is lost during clone |
| 30 | 53 | * Fix bug with 302 redirect not properly shutting down connection and |
| 31 | 54 | and handle 301 redirects. |
| 32 | 55 | * Fix to prevent empty cloned repository when authentication fails |
| 33 | 56 | * Update documentation for protocol 3 and 'cfile' card use |
| 57 | + * Allow commits against a closed check-in as long as the commit goes onto | |
| 58 | + a different branch. | |
| 34 | 59 | * Fix sync protocol bug which would occasionally delete phantom artifacts |
| 35 | 60 | before they were included in a cluster artifact |
| 36 | - * Add support for Docker. Just install docker and type | |
| 37 | - "sudo docker run -d -p 8080:8080 nijtmans/fossil" to get it running. | |
| 38 | 61 | |
| 39 | 62 | <h2>Changes For Version 1.29 (2014-06-12)</h2> |
| 40 | 63 | * Add the ability to display content, diffs and annotations for UTF16 |
| 41 | 64 | text files in the web interface. |
| 42 | 65 | * Add the "SaveAs..." and "Invert" buttons |
| 43 | 66 |
| --- www/changes.wiki | |
| +++ www/changes.wiki | |
| @@ -1,14 +1,35 @@ | |
| 1 | <title>Change Log</title> |
| 2 | |
| 3 | <h2>Changes For Version 1.30 (2015-01-??)</h2> |
| 4 | * Add setting to control the number of times autosync will be tried before |
| 5 | returning an error. |
| 6 | * Add the [/help/fusefs|fossil fusefs DIRECTORY] command that mounts a |
| 7 | Fuse Filesystem at the given DIRECTORY and populates it with read-only |
| 8 | copies of all historical check-ins. This only works on systems that |
| 9 | support FuseFS. |
| 10 | * Added a compile-time option (--with-miniz) to build using miniz instead |
| 11 | of zlib. Disabled by default. |
| 12 | * Several fixes to the TH1 expression parser. |
| 13 | * Support customization of commands and webpages, including the ability to |
| 14 | add new ones, via the "TH1 hooks" feature. Disabled by default. Enabled |
| @@ -15,28 +36,30 @@ | |
| 15 | via a compile-time option. |
| 16 | * Add the <nowiki>[checkout], [render], [styleHeader], [styleFooter], |
| 17 | [trace], [getParameter], [setParameter], [artifact], and |
| 18 | [globalState]</nowiki> commands to TH1, primarily for use by TH1 hooks. |
| 19 | * Bring in the latest version of autosetup from upstream. |
| 20 | * When committing a (non-binary) file which contains bytes forming an |
| 21 | invalid UTF-8 stream, fossil now adds the possibility to convert it |
| 22 | to a valid UTF-8 stream ('c') if you like. |
| 23 | * Let [/help?cmd=new|fossil new] no longer create an initial empty commit |
| 24 | by default. The first commit after checking out an empty repository will |
| 25 | become the initial commit. |
| 26 | * Added a line-number toggle option to the [/help?cmd=/info|/info] |
| 27 | and [/help?cmd=/artifact|/artifact] pages. |
| 28 | * Add check to most commands to error on unknown command-line options |
| 29 | * Fix to prevent partial clone when connection is lost during clone |
| 30 | * Fix bug with 302 redirect not properly shutting down connection and |
| 31 | and handle 301 redirects. |
| 32 | * Fix to prevent empty cloned repository when authentication fails |
| 33 | * Update documentation for protocol 3 and 'cfile' card use |
| 34 | * Fix sync protocol bug which would occasionally delete phantom artifacts |
| 35 | before they were included in a cluster artifact |
| 36 | * Add support for Docker. Just install docker and type |
| 37 | "sudo docker run -d -p 8080:8080 nijtmans/fossil" to get it running. |
| 38 | |
| 39 | <h2>Changes For Version 1.29 (2014-06-12)</h2> |
| 40 | * Add the ability to display content, diffs and annotations for UTF16 |
| 41 | text files in the web interface. |
| 42 | * Add the "SaveAs..." and "Invert" buttons |
| 43 |
| --- www/changes.wiki | |
| +++ www/changes.wiki | |
| @@ -1,14 +1,35 @@ | |
| 1 | <title>Change Log</title> |
| 2 | |
| 3 | <h2>Changes For Version 1.30 (2015-01-??)</h2> |
| 4 | * Added the [/help?cmd=bundle|fossil bundle] command. |
| 5 | * Added the [/help?cmd=purge|fossil purge] command. |
| 6 | * Added the [/help?cmd=publish|fossil publish] command. |
| 7 | * Added the [/help?cmd=unpublished|fossil unpublished] command. |
| 8 | * Enhance the [/tree] webpage to show the age of each file and to give the |
| 9 | option to sort the display by file age - newest files first. |
| 10 | * Enhance the [/brlist] webpage to show additional information about each branch |
| 11 | and to be sortable by click on column headers. |
| 12 | * Add support for Docker. Just install docker and type |
| 13 | "sudo docker run -d -p 8080:8080 nijtmans/fossil" to get it running. |
| 14 | * Add the [/help/fusefs|fossil fusefs DIRECTORY] command that mounts a |
| 15 | Fuse Filesystem at the given DIRECTORY and populates it with read-only |
| 16 | copies of all historical check-ins. This only works on systems that |
| 17 | support FuseFS. |
| 18 | * Add the administrative log - recording all configuration changes to a |
| 19 | repository. |
| 20 | * Added the [/sitemap] webpage. |
| 21 | * Added the [/bloblist] web page. |
| 22 | * Let [/help?cmd=new|fossil new] no longer create an initial empty commit |
| 23 | by default. The first commit after checking out an empty repository will |
| 24 | become the initial commit. |
| 25 | * Added the [/help?cmd=all|fossil all dbstat] command and the --db-check |
| 26 | command-line option. |
| 27 | * Update SQLite to version 3.8.8. |
| 28 | * Added the --verily option to the [/help?cmd=clean|fossil clean] command. |
| 29 | * Add setting to control the number of times autosync will be tried before |
| 30 | returning an error. |
| 31 | * Added a compile-time option (--with-miniz) to build using miniz instead |
| 32 | of zlib. Disabled by default. |
| 33 | * Several fixes to the TH1 expression parser. |
| 34 | * Support customization of commands and webpages, including the ability to |
| 35 | add new ones, via the "TH1 hooks" feature. Disabled by default. Enabled |
| @@ -15,28 +36,30 @@ | |
| 36 | via a compile-time option. |
| 37 | * Add the <nowiki>[checkout], [render], [styleHeader], [styleFooter], |
| 38 | [trace], [getParameter], [setParameter], [artifact], and |
| 39 | [globalState]</nowiki> commands to TH1, primarily for use by TH1 hooks. |
| 40 | * Bring in the latest version of autosetup from upstream. |
| 41 | * Automatically adjust the width of command-line output according to the |
| 42 | detected width of the terminal. |
| 43 | * When committing a (non-binary) file which contains bytes forming an |
| 44 | invalid UTF-8 stream, fossil now adds the possibility to convert it |
| 45 | to a valid UTF-8 stream ('c') if you like. |
| 46 | * Added a line-number toggle option to the [/help?cmd=/info|/info] |
| 47 | and [/help?cmd=/artifact|/artifact] pages. |
| 48 | * Updates most commands so that they generate errors when used with |
| 49 | unknown command-line options. |
| 50 | * Use full 40-character SHA1 hashes (instead of abbreviations) in most |
| 51 | internal URLs. |
| 52 | * Fix to prevent partial clone when connection is lost during clone |
| 53 | * Fix bug with 302 redirect not properly shutting down connection and |
| 54 | and handle 301 redirects. |
| 55 | * Fix to prevent empty cloned repository when authentication fails |
| 56 | * Update documentation for protocol 3 and 'cfile' card use |
| 57 | * Allow commits against a closed check-in as long as the commit goes onto |
| 58 | a different branch. |
| 59 | * Fix sync protocol bug which would occasionally delete phantom artifacts |
| 60 | before they were included in a cluster artifact |
| 61 | |
| 62 | <h2>Changes For Version 1.29 (2014-06-12)</h2> |
| 63 | * Add the ability to display content, diffs and annotations for UTF16 |
| 64 | text files in the web interface. |
| 65 | * Add the "SaveAs..." and "Invert" buttons |
| 66 |