diff --git a/.sandstorm/app-graphics/admin_interface.png b/.sandstorm/app-graphics/admin_interface.png index e41567f..c0dca4e 100644 Binary files a/.sandstorm/app-graphics/admin_interface.png and b/.sandstorm/app-graphics/admin_interface.png differ diff --git a/.sandstorm/app-graphics/appgrid-128x128.png b/.sandstorm/app-graphics/appgrid-128x128.png index 3dad438..11b11c3 100644 Binary files a/.sandstorm/app-graphics/appgrid-128x128.png and b/.sandstorm/app-graphics/appgrid-128x128.png differ diff --git a/.sandstorm/app-graphics/grain-24x24.png b/.sandstorm/app-graphics/grain-24x24.png index 5674ff2..7be990a 100644 Binary files a/.sandstorm/app-graphics/grain-24x24.png and b/.sandstorm/app-graphics/grain-24x24.png differ diff --git a/.sandstorm/app-graphics/hugo_icon.png b/.sandstorm/app-graphics/hugo_icon.png index 48acf34..4573b66 100644 Binary files a/.sandstorm/app-graphics/hugo_icon.png and b/.sandstorm/app-graphics/hugo_icon.png differ diff --git a/.sandstorm/app-graphics/market-150x150.png b/.sandstorm/app-graphics/market-150x150.png index 679c679..28008aa 100644 Binary files a/.sandstorm/app-graphics/market-150x150.png and b/.sandstorm/app-graphics/market-150x150.png differ diff --git a/.sandstorm/app-graphics/market-big-300x300.png b/.sandstorm/app-graphics/market-big-300x300.png index cac24c3..78d2102 100644 Binary files a/.sandstorm/app-graphics/market-big-300x300.png and b/.sandstorm/app-graphics/market-big-300x300.png differ diff --git a/.sandstorm/app-graphics/screenshot1.png b/.sandstorm/app-graphics/screenshot1.png index a2765d6..92df909 100644 Binary files a/.sandstorm/app-graphics/screenshot1.png and b/.sandstorm/app-graphics/screenshot1.png differ diff --git a/.sandstorm/app-graphics/screenshot2.png b/.sandstorm/app-graphics/screenshot2.png index cfc9654..6ce4552 100644 Binary files a/.sandstorm/app-graphics/screenshot2.png and b/.sandstorm/app-graphics/screenshot2.png differ diff --git a/.sandstorm/app-graphics/site_setup.png b/.sandstorm/app-graphics/site_setup.png index b330ae5..2c1c664 100644 Binary files a/.sandstorm/app-graphics/site_setup.png and b/.sandstorm/app-graphics/site_setup.png differ diff --git a/.sandstorm/changelog.md b/.sandstorm/changelog.md index 8443b17..cf134db 100644 --- a/.sandstorm/changelog.md +++ b/.sandstorm/changelog.md @@ -1,17 +1,23 @@ # V0.69.0~2020-04-14 - * Upgrade Hugo. - * Replace Caddy with Cloud Commander for admin file management. +* 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. # V0.20-sandstorm2 - * Upgrade Hugo. - * Switch to newer, easier-to-maintain launch screen and Git server setup. +* Upgrade Hugo. +* Switch to newer, easier-to-maintain launch screen and Git server setup. # V0.19-sandstorm1 - * Launch screen improvements. +* Launch screen improvements. # V0.19-sandstorm0 (2017-03-17) - * Initial release. +* Initial release. diff --git a/.sandstorm/sandstorm-pkgdef.capnp b/.sandstorm/sandstorm-pkgdef.capnp index 19c2d6b..ef8fae1 100644 --- a/.sandstorm/sandstorm-pkgdef.capnp +++ b/.sandstorm/sandstorm-pkgdef.capnp @@ -17,7 +17,7 @@ const pkgdef :Spk.PackageDefinition = ( # This manifest is included in your app package to tell Sandstorm # about your app. - appTitle = (defaultText = "Hugo (new)"), + appTitle = (defaultText = "Hugo"), 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/local/lib/python2.7/dist-packages/pygments", "opt/app/node_modules/cloudcmd", + "opt/app/node_modules/edward", ], # 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. diff --git a/CHANGELOG.md b/CHANGELOG.md index dabca9a..3893b84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,15 @@ web-based file management. * 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) * Initial release. diff --git a/pages/index.vue b/pages/index.vue index 25018db..1d1b0ac 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -59,6 +59,9 @@ :template="'git remote add origin ' + this.gitUrl + '\ngit push -fu origin master'"/>

Upgrade notes from the 0.20 Sandstorm release: