mirror of
https://github.com/audacity/audacity.github.io.git
synced 2026-04-13 07:25:21 -05:00
Add 3.3 base post, update readme.md
This commit is contained in:
55
README.md
55
README.md
@@ -1,54 +1,9 @@
|
||||
# Astro Starter Kit: Basics
|
||||
# About this repo
|
||||
|
||||
```
|
||||
npm create astro@latest -- --template basics
|
||||
```
|
||||
This is the source of audacityteam.org (or will be soon, anyway). It uses [Astro](https://docs.astro.build/en/getting-started/).
|
||||
|
||||
[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/basics)
|
||||
[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/basics)
|
||||
To build and test this code locally, first install dependencies via `npm install`, then `npm run dev` to spin up a dev server.
|
||||
|
||||
> 🧑🚀 **Seasoned astronaut?** Delete this file. Have fun!
|
||||
## Translation
|
||||
|
||||

|
||||
|
||||
|
||||
## 🚀 Project Structure
|
||||
|
||||
Inside of your Astro project, you'll see the following folders and files:
|
||||
|
||||
```
|
||||
/
|
||||
├── public/
|
||||
│ └── favicon.svg
|
||||
├── src/
|
||||
│ ├── components/
|
||||
│ │ └── Card.astro
|
||||
│ ├── layouts/
|
||||
│ │ └── Layout.astro
|
||||
│ └── pages/
|
||||
│ └── index.astro
|
||||
└── package.json
|
||||
```
|
||||
|
||||
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
|
||||
|
||||
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
|
||||
|
||||
Any static assets, like images, can be placed in the `public/` directory.
|
||||
|
||||
## 🧞 Commands
|
||||
|
||||
All commands are run from the root of the project, from a terminal:
|
||||
|
||||
| Command | Action |
|
||||
| :--------------------- | :----------------------------------------------- |
|
||||
| `npm install` | Installs dependencies |
|
||||
| `npm run dev` | Starts local dev server at `localhost:3000` |
|
||||
| `npm run build` | Build your production site to `./dist/` |
|
||||
| `npm run preview` | Preview your build locally, before deploying |
|
||||
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
|
||||
| `npm run astro --help` | Get help using the Astro CLI |
|
||||
|
||||
## 👀 Want to learn more?
|
||||
|
||||
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).
|
||||
Translations are not yet supported. Please join our [dev discord](https://discord.gg/sFHfRbUVZj) to get notified when they are.
|
||||
24
src/pages/posts/audacity-3.3.md
Normal file
24
src/pages/posts/audacity-3.3.md
Normal file
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: Audacity 3.3 released
|
||||
slug: audacity-3.3
|
||||
thumbnail: /our-new-site.jpg
|
||||
author: Leo Wattenberg
|
||||
date: April 1, 2023
|
||||
layout: "../../layouts/PostLayout.astro"
|
||||
description: linear dB, beats & bars and a lot of under the hood work
|
||||
---
|
||||
|
||||
## About Audacity 3.3
|
||||
Audacity 3.3 is quite humble compared to our last releases. In terms of features, there's not too much to report:
|
||||
|
||||
* We added a linear dB ruler for waveforms. This ruler uses the standard convention found across the audio world. Meters and waveform now report the same values.
|
||||
* We reworked the way snapping works.
|
||||
* We also started working on a Beats & Measures feature. It's not quite ready yet, so the coresponding toolbar is hidden by default. More information can be found [here](#)
|
||||
|
||||
Additional changes can be found in the [changelog](#).
|
||||
|
||||
## Why this happened
|
||||
|
||||
A lot of our work has been focused on getting Audacity ready for a version 4. As such, a lot of under-the-hood work has been happening - in technical terms: reducing dependency on wxWidgets, library extractions and general refactoring. This work will continue for the next few releases in parallel with feature development.
|
||||
|
||||
We will share more information about Audacity 4 in a future post.
|
||||
Reference in New Issue
Block a user