Skip to content

Commit

Permalink
Release v0.5.1 patch notes (#190)
Browse files Browse the repository at this point in the history
* fix logo on backup docs site

* add announcement bar to backup site

* update current version

* add crash report to notes

* finish updating release notes

* update tag
  • Loading branch information
leigh-johnson authored Jan 6, 2023
1 parent 63ba564 commit 3435bb3
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 7 deletions.
28 changes: 26 additions & 2 deletions site/docs/release-history/0.5.x-emerald-langdale.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ PrintNanny OS is currently in closed Beta.
[Reserve your spot in the Founding Member program](https://printnanny.ai/shop/founding-membership), which grants you **early access to PrintNanny for $149 USD.** A limited number of spots open after each release, available on a first-come, first-serve basis.
:::

## ⬇️ [Click to Download PrintNanny OS](https://github.com/bitsy-ai/printnanny-os/releases/tag/0.5.0)
## ⬇️ [Click to Download PrintNanny OS](https://github.com/bitsy-ai/printnanny-os/releases/tag/0.5.1)

* Follow the [Quick Start guide](https://docs.printnanny.ai/docs/category/quick-start/) to create a fresh PrintNanny OS installation.
* [Update a Raspberry Pi already running PrintNanny OS](https://docs.printnanny.ai/docs/update-printnanny-os/).
Expand Down Expand Up @@ -70,6 +70,19 @@ PrintNanny Cloud now uses a password-less login too. Enter your email address to

![Passwordless login](./img/v0.5.0/passwordless-login.png).

### Crash Report

PrintNanny now includes a crash report utility, which can be accessed anytime by clicking the 🔥 icon in the top-right corner of Mission Control.

You can also submit a crash report from the command line, by running:

```bash
$ printnanny crash-report
```

![Passwordless login](./img/v0.5.0/crash-report.png).


### `tree` command

The `tree` command-line tool is now installed. `tree` recursively lists the contents of a directory:
Expand Down Expand Up @@ -111,4 +124,15 @@ PrintNanny OS is currently in closed Beta.
[Join the waitlist](https://printnanny.ai/) to receive stress-test invitations and launch/development updates.

[Reserve your spot in the Founding Member program](https://printnanny.ai/shop/founding-membership), which grants you **early access to PrintNanny for $149 USD.** A limited number of spots open after each release, available on a first-come, first-serve basis.
:::
:::

## Patch Releases

### v0.5.1

[v0.5.1 Github Milestone](https://github.com/bitsy-ai/printnanny-os/milestone/11?closed=1)

* Added a crash dump utility which collects browser logs, system logs/status. See what's collected in [#185](https://github.com/bitsy-ai/printnanny-os/issues/185)
* Fixed: OctoPrint settings sync error [#187](https://github.com/bitsy-ai/printnanny-os/issues/187)
* Fixed: disk space errors when updating PrintNanny OS [#186](https://github.com/bitsy-ai/printnanny-os/issues/186)
* Fixed: broken Github Issue link [#184](https://github.com/bitsy-ai/printnanny-os/issues/184)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 10 additions & 2 deletions site/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,23 @@ const config = {
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
announcementBar: {
id: 'v0_5_1',
content:
'<a href="https://printnanny.ai/docs/release-history/0.5.x-emerald-langdale/">PrintNanny OS v0.5.1 is now available!</a>',
backgroundColor: '#fafbfc',
textColor: '#091E42',
isCloseable: false,
},
navbar: {
// style: 'primary',
// title: 'PrintNanny',
logo: {
href: 'https://printnanny.ai',
height: '5rem',
alt: 'PrintNanny Logo',
srcDark: 'img/logo-dark.svg',
src: 'img/logo.svg',
srcDark: 'https://cdn.printnanny.ai/www/logo/logo-dark.svg',
src: 'https://cdn.printnanny.ai/www/logo/logo.svg',
},
items: [
{
Expand Down
4 changes: 2 additions & 2 deletions site/docusaurus.config.k8s.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
announcementBar: {
id: 'v0_5_0',
id: 'v0_5_1',
content:
'<a href="https://printnanny.ai/docs/release-history/0.5.x-emerald-langdale/">PrintNanny OS v0.5.0 is now available!</a>',
'<a href="https://printnanny.ai/docs/release-history/0.5.x-emerald-langdale/">PrintNanny OS v0.5.1 is now available!</a>',
backgroundColor: '#fafbfc',
textColor: '#091E42',
isCloseable: false,
Expand Down
2 changes: 1 addition & 1 deletion site/printnanny-config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const printnannyConfig = {
version: '0.5.0',
version: '0.5.1',
versionPretty: 'v0.5.x (Emerald Langdale)',
slug: 'release-history/0.5.x-emerald-langdale'
};
Expand Down

0 comments on commit 3435bb3

Please sign in to comment.