Skip to content

Commit 17d3258

Browse files
Alban BaillyGitHub Enterprise
authored andcommitted
Merge pull request linode#73 from Linode/development
Release 1.0.4
2 parents 269412e + e110c7d commit 17d3258

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ Built with:
1010

1111
## Running Locally
1212

13+
### Prerequisites
14+
15+
Must have Hugo installed:
16+
17+
`brew install hugo`
18+
19+
### Setup
20+
1321
From within your local developers-linode-com repository:
1422

1523
`yarn`

content/changelog/2018/10-08.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
title: "0.36.0: 2018-10-08"
3+
date: "2018-10-08T11:02:00-04:00"
4+
description: "Cloud Manager Changelog 0.36.0"
5+
changelog:
6+
- Cloud Manager
7+
version: 0.36.0
8+
---
9+
### Changed
10+
11+
* Support
12+
* Allow selecting multiple files when attaching to a ticket
13+
* Auto-collapse attachments when a ticket contains more than 5 attachments
14+
* Increase support search results to display up to 20 results
15+
* Profile
16+
* Truncate whitespace when adding SSH keys
17+
* Billing
18+
* Display last four credit card digits when submitting payment
19+
20+
### Fixed
21+
22+
* Volumes
23+
* Issue where creating a volume would potentially display the wrong region for the attached linode
24+
* Stackscripts
25+
* When creating a linode from Stackscript, the SSH Key access panel failed to display on image selection
26+
* Misc.
27+
* Issue where certain modals could not be dismissed with the escape key
28+
* On Linode creation, the password field now appears disabled until an image is selected
29+
* Two-factor authentication QR code border visibility in dark theme

themes/dlc/layouts/_default/changelog.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<span class="uppercase font-semibold text-xs mr-4">Product:</span>
1010
{{ $currentTag := index (last 1 (split (delimit (split .URL "/") "," "") ",")) 0 }}
1111
{{ range $name, $items := .Site.Taxonomies.changelog }}
12-
<a href="/changelog/{{ $name | urlize | lower }}" class="btn btn-small btn-grey mr-2 {{ if eq $currentTag $name}}active{{end}}">{{ $name | upper}}</a>
12+
<a href="/changelog/{{ $name | urlize | lower }}" class="btn btn-small btn-grey mr-2 {{ if eq $currentTag ($name | urlize)}}active{{end}}">{{ $name | upper}}</a>
1313
{{ end }}
1414
</nav>
1515

0 commit comments

Comments
 (0)