Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Change the default hash policy to "sha3". Bump the version number to 2.10 to start the next development cycle. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
b4520f5efc75692575d632f67e47a76e |
| User & Date: | drh 2019-07-13 14:30:42.143 |
Context
|
2019-07-13
| ||
| 16:56 | Disable the SQLITE_DQS=0 compile-time option. It turns out the ".schema" command in the SQLite CLI makes use of double-quoted string literals. ... (check-in: 05ca5d96c1 user: drh tags: trunk) | |
| 14:30 | Change the default hash policy to "sha3". Bump the version number to 2.10 to start the next development cycle. ... (check-in: b4520f5efc user: drh tags: trunk) | |
| 13:05 | Version 2.9 ... (check-in: 0fd79a3e09 user: drh tags: trunk, release, version-2.9) | |
Changes
Changes to VERSION.
|
| | | 1 | 2.10 |
Changes to src/main.c.
| ︙ | ︙ | |||
2154 2155 2156 2157 2158 2159 2160 |
file_simplify_name(g.zRepositoryName, -1, 0);
}else{
if( isDir==0 && fCreate ){
const char *zPassword;
db_create_repository(zRepo);
db_open_repository(zRepo);
db_begin_transaction();
| | | | 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 |
file_simplify_name(g.zRepositoryName, -1, 0);
}else{
if( isDir==0 && fCreate ){
const char *zPassword;
db_create_repository(zRepo);
db_open_repository(zRepo);
db_begin_transaction();
g.eHashPolicy = HPOLICY_SHA3;
db_set_int("hash-policy", HPOLICY_SHA3, 0);
db_initial_setup(0, "now", g.zLogin);
db_end_transaction(0);
fossil_print("project-id: %s\n", db_get("project-code", 0));
fossil_print("server-id: %s\n", db_get("server-code", 0));
zPassword = db_text(0, "SELECT pw FROM user WHERE login=%Q", g.zLogin);
fossil_print("admin-user: %s (initial password is \"%s\")\n",
g.zLogin, zPassword);
|
| ︙ | ︙ |
Changes to www/changes.wiki.
1 2 3 4 5 6 7 8 9 |
<title>Change Log</title>
<a name='v2_9'></a>
<h2>Changes for Version 2.9 (2019-07-13)</h2>
* Added the [/help?cmd=git|fossil git export] command and instructions
for [./mirrortogithub.md|creating a GitHub mirror of a Fossil project].
* Improved handling of relative hyperlinks on the
[/help?cmd=/artifact|/artifact] pages for wiki. For example,
| > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<title>Change Log</title>
<a name='v2_10'></a>
<h2>Changes for Version 2.10 (pending)</h2>
* Change the default [./hashpolicy.wiki|hash policy] to SHA3.
<a name='v2_9'></a>
<h2>Changes for Version 2.9 (2019-07-13)</h2>
* Added the [/help?cmd=git|fossil git export] command and instructions
for [./mirrortogithub.md|creating a GitHub mirror of a Fossil project].
* Improved handling of relative hyperlinks on the
[/help?cmd=/artifact|/artifact] pages for wiki. For example,
|
| ︙ | ︙ |