From 1284aef8919f445af8270f304be68fc1c13a9e8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mr=2E=20m=20=20=F0=9F=A4=99?= <91018726+mr-cheff@users.noreply.github.com> Date: Thu, 19 Dec 2024 23:35:19 +0000 Subject: [PATCH] =?UTF-8?q?Mejorar=20la=20interfaz=20de=20usuario=20del=20?= =?UTF-8?q?NavBar=20y=20actualizar=20la=20estructura=20de=20ReleaseNoteIte?= =?UTF-8?q?m=20para=20manejar=20descripciones=20de=20arreglos=20como=20cad?= =?UTF-8?q?enas=20o=20objetos.=20A=C3=B1adir=20nueva=20entrada=20de=20nota?= =?UTF-8?q?s=20de=20lanzamiento=20para=20la=20versi=C3=B3n=201.0.2-b.3.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/NavBar.astro | 2 +- src/components/ReleaseNoteItem.astro | 28 +++++++++------- src/release-notes.ts | 49 +++++++++++++++++++++++++++- 3 files changed, 65 insertions(+), 14 deletions(-) diff --git a/src/components/NavBar.astro b/src/components/NavBar.astro index 6a80877..957a807 100644 --- a/src/components/NavBar.astro +++ b/src/components/NavBar.astro @@ -103,7 +103,7 @@ import { ThemeSwitch } from 'free-astro-components' Mods -
+
diff --git a/src/components/ReleaseNoteItem.astro b/src/components/ReleaseNoteItem.astro index 15f4149..4af20b2 100644 --- a/src/components/ReleaseNoteItem.astro +++ b/src/components/ReleaseNoteItem.astro @@ -39,18 +39,22 @@ const date = new Date(Date.parse(`${year}-${month}-${day}`)); diff --git a/src/release-notes.ts b/src/release-notes.ts index 757d47f..77a2f81 100644 --- a/src/release-notes.ts +++ b/src/release-notes.ts @@ -1,8 +1,10 @@ -interface Fix { +interface FixWithIssue { description: string; issue?: number; } +type Fix = string | FixWithIssue; + export interface ReleaseNote { version: string; date: string; @@ -1866,4 +1868,49 @@ export const releaseNotes: ReleaseNote[] = [ "Added new URL bar suggestions UI" ] }, + { + version: "1.0.2-b.3", + date: "19/12/2024", + image: true, + workflowId: 12419745635, + extra: + "This release brings more bug fixing and ovcerall stability while also including some small polishing features/details. Our goal during the beta phase is to get everything as stable and ready for our stable release!\n\nNote: We will be hosting a hall-of-fame event, where top 20 zen rices will be featured in the website!\n\nMerry Christmas everyone!", + fixes: [ + "Fixed workspaces not being initialized correctly when creating a fresh profile", + "Fixed gradient generator not being correctly initialized on startup", + "Fixed moving around/reordering pinned and essential tabs not saving", + "Fixed pinned tabs and essential tabs not being saved correctly on the first run of a fresh profile", + { + description: "Fixed compact mode preferences page having wrong labels", + issue: 3885, + }, + "Fixed scroll direction when swiping workspaces with mousepads", + "Fixed weird margins in compact mode in certain conditions", + { + description: "Fixed trying to unload multiple tabs at once", + issue: 3831 + }, + "Fixed surrounding spaces for certain layouts while using the web panels sidebar", + "Fixed workspace indicator showing if workspaces are disabled", + "Fixed URL bar not showing while in compact mode + right sidebar", + "Fixed clicking on the URLbar not doing anything on some conditions", + "Fixed accessibility issues with system links", + "Fixed bookmarks toolbar being reset when changing toolbar layouts", + "Fixed having right side floating URL bar opening in single toolbar", + "Fixed not being able to click on window buttons when having collapsed sidebar on the right", + "Fixed opening unfloatable URL bar when having compact mode having a weird behavior", + "Fixed not saving essential tabs correctly, leading to data loss", + ], + features: [ + "Added a 'Copy current URL' keyboard shortcut", + "Enhanced URL bar layout when it's not floating", + "Improved and polished compact mode switching animation (Can be disabled in about:config or when having performance issues)", + "Added delays when hovering on the window buttons, making it a bit less error-prone", + "Added experimental rounded corners for website (Disabled by default on macos)", + "Added fallback cache-based website favicon in case we fail to fetch the website's favicon for essentials/pinned tabs", + "Added a more optimized version of zen hardening, there should be less performance issues now and less font-rendering issues", + "Added a smoother scrolling experience by using msd physics and changing scroll values/offests (Disabled in macos)", + "Optimized workspace switching animations", + ] + }, ].reverse();