Skip to content

Commit

Permalink
Release notes for v0.60.0
Browse files Browse the repository at this point in the history
adeira-source-id: ef92148b56611015fcdebe6bc08909d0e1bf08ed
  • Loading branch information
itsdouges authored and triplex-bot committed Oct 30, 2023
1 parent 51fc505 commit 98a334c
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 12 deletions.
12 changes: 7 additions & 5 deletions apps/docs/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function Header({
<span className="mr-3">
<Link
aria-label="Triplex home"
className="font text-[2.5rem] text-white/90"
className="font text-[2.5rem] text-neutral-300"
href="/"
>
<svg viewBox="0 0 200 200" width="32px">
Expand All @@ -65,7 +65,7 @@ export function Header({
</span>

<Link
className="flex h-full items-center bg-blue-400 px-6 py-3 text-lg font-semibold text-neutral-950 md:text-base"
className="flex h-full items-center bg-blue-400 px-6 py-3 text-lg font-semibold text-neutral-900"
href="/download"
>
Download
Expand All @@ -85,7 +85,7 @@ export function Header({
<div className="hidden md:contents">{children}</div>

<button
className="relative flex h-8 cursor-default items-center rounded-md border-neutral-700 px-3 text-sm text-neutral-400 -outline-offset-1 outline-blue-400 hover:bg-white/5 focus-visible:outline focus-visible:outline-1 active:bg-white/10 md:ml-auto md:w-64 md:cursor-text md:border md:pl-3 md:pr-1.5"
className="relative flex h-8 cursor-default items-center rounded-md border-neutral-700 px-3 text-base text-neutral-400 -outline-offset-1 outline-blue-400 hover:bg-white/5 focus-visible:outline focus-visible:outline-1 active:bg-white/10 md:ml-auto md:w-72 md:cursor-text md:border md:pl-3 md:pr-1.5"
onClick={showSearch}
type="button"
>
Expand Down Expand Up @@ -114,8 +114,10 @@ export function HeaderItem({
return (
<Link
className={cn([
isSelected ? "text-blue-400" : "text-white/80 hover:text-white/90",
"text-base font-semibold",
isSelected
? "text-blue-400"
: "text-neutral-300 hover:text-neutral-200",
"text-lg font-semibold",
])}
href={href}
>
Expand Down
14 changes: 7 additions & 7 deletions apps/docs/pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,20 @@
"title": "Docs",
"href": "/docs/overview"
},
"faq": {
"title": "FAQ",
"href": "/docs/faq"
},
"blog": {
"title": "Blog"
},
"pricing": {
"title": "Pricing",
"href": "/pricing",
"theme": {
"layout": "raw"
}
},
"faq": {
"title": "FAQ",
"href": "/docs/faq"
},
"github": {
"title": "Visit Github",
"href": "https://github.com/try-triplex/triplex",
Expand All @@ -52,9 +55,6 @@
"href": "https://twitter.com/_douges",
"type": "hidden"
},
"blog": {
"title": "Blog"
},
"license": {
"type": "hidden"
}
Expand Down
1 change: 1 addition & 0 deletions apps/docs/pages/blog/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"pagination": false
}
},
"v0.60.0-element-actions": "",
"v0.59.0-backend-stability": "",
"threejs-halloween-challenge": "",
"v0.58.0-provider-component-ui": "",
Expand Down
44 changes: 44 additions & 0 deletions apps/docs/pages/blog/v0.60.0-element-actions.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
title: "Triplex 0.60: Element Actions"
ogTitle: Triplex 0.60.0
date: 2023-10-30
description:
This release completes a large refactor of the backend to improve scene
stability.
---

▵ Triplex 0.60.0 introduces a new duplicate element action, improves their
overall user experience, and fixes some bugs.

## New features

- Flesh out a scene faster now by duplicating elements using the
`CommandOrControl+D` hotkey
[[#117](https://github.com/try-triplex/triplex/issues/117)]
- Element actions have moved from the context panel to the scene panel
- Enter selection has moved from an action button to a gesture — now double
click on the element you want to navigate to instead

## Bug fixes

- Fix regression on Windows where the scene would never load
[[#151](https://github.com/try-triplex/triplex/issues/151)]
- Inputs across Triplex can now have copy / paste commands executed on them via
the standard hotkeys
[[#143](https://github.com/try-triplex/triplex/issues/143)]
- Context panel now closes when the element has been lost. This could happen
from being deleted in code, re-ordering, anything
[[#56](https://github.com/try-triplex/triplex/issues/56)]
- When focusing inputs you will no longer trigger unexpected hotkeys such as
transform mode changes when typing.
- IDE links now opened through the `launch-editor` package
[[#142](https://github.com/try-triplex/triplex/issues/142)]
- Error overlay no longer closers after an HMR event
- Fix delete action not working on nested child elements
- Fix adding custom components to a new file

## Chores

- [End-to-end tests](https://twitter.com/_douges/status/1718741907315269963) now
cover the primary flows of Triplex aiding in preventing regressions hitting
production again

0 comments on commit 98a334c

Please sign in to comment.