Prepping for final release
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 51 KiB |
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 834 B |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 6.9 KiB |
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 119 KiB After Width: | Height: | Size: 98 KiB |
@ -1,6 +1,12 @@
|
|||||||
# V0.69.0~2020-04-14
|
# V0.69.0~2020-04-14
|
||||||
|
|
||||||
* Upgrade Hugo.
|
* Upgrade Hugo to 0.69.0.
|
||||||
|
* Note: If you use inline HTML in your Markdown, add the following to `config.toml`:
|
||||||
|
|
||||||
|
```
|
||||||
|
[markup.goldmark.renderer]
|
||||||
|
unsafe= true
|
||||||
|
```
|
||||||
* Replace Caddy with Cloud Commander for admin file management.
|
* Replace Caddy with Cloud Commander for admin file management.
|
||||||
|
|
||||||
# V0.20-sandstorm2
|
# V0.20-sandstorm2
|
||||||
|
@ -17,7 +17,7 @@ const pkgdef :Spk.PackageDefinition = (
|
|||||||
# This manifest is included in your app package to tell Sandstorm
|
# This manifest is included in your app package to tell Sandstorm
|
||||||
# about your app.
|
# about your app.
|
||||||
|
|
||||||
appTitle = (defaultText = "Hugo (new)"),
|
appTitle = (defaultText = "Hugo"),
|
||||||
|
|
||||||
appVersion = 4, # Increment this for every release.
|
appVersion = 4, # Increment this for every release.
|
||||||
|
|
||||||
@ -161,6 +161,7 @@ const pkgdef :Spk.PackageDefinition = (
|
|||||||
"usr/lib/node_modules/npm/node_modules/node-gyp",
|
"usr/lib/node_modules/npm/node_modules/node-gyp",
|
||||||
"usr/local/lib/python2.7/dist-packages/pygments",
|
"usr/local/lib/python2.7/dist-packages/pygments",
|
||||||
"opt/app/node_modules/cloudcmd",
|
"opt/app/node_modules/cloudcmd",
|
||||||
|
"opt/app/node_modules/edward",
|
||||||
],
|
],
|
||||||
# Fill this list with more names of files or directories that should be
|
# Fill this list with more names of files or directories that should be
|
||||||
# included in your package, even if not listed in sandstorm-files.list.
|
# included in your package, even if not listed in sandstorm-files.list.
|
||||||
|
@ -7,6 +7,15 @@
|
|||||||
web-based file management.
|
web-based file management.
|
||||||
* Update NodeJS to 10 and `yarn upgrade` all transitive dependencies.
|
* Update NodeJS to 10 and `yarn upgrade` all transitive dependencies.
|
||||||
|
|
||||||
|
### Upgrade Notes
|
||||||
|
|
||||||
|
* If you use inline HTML in your Markdown, add the following to `config.toml`:
|
||||||
|
|
||||||
|
```
|
||||||
|
[markup.goldmark.renderer]
|
||||||
|
unsafe= true
|
||||||
|
```
|
||||||
|
|
||||||
## V0 (2016-10-10)
|
## V0 (2016-10-10)
|
||||||
|
|
||||||
* Initial release.
|
* Initial release.
|
||||||
|
@ -59,6 +59,9 @@
|
|||||||
:template="'git remote add origin ' + this.gitUrl + '\ngit push -fu origin master'"/>
|
:template="'git remote add origin ' + this.gitUrl + '\ngit push -fu origin master'"/>
|
||||||
<h2>Upgrade notes from the 0.20 Sandstorm release:</h2>
|
<h2>Upgrade notes from the 0.20 Sandstorm release:</h2>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>
|
||||||
|
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
If you were using inline HTML in any Markdown files, enter the following into
|
If you were using inline HTML in any Markdown files, enter the following into
|
||||||
your <code>config.toml</code> file:
|
your <code>config.toml</code> file:
|
||||||
|