diff --git a/docs/articles/page/1/index.html b/docs/articles/page/1/index.html index d417779..3b555ee 100644 --- a/docs/articles/page/1/index.html +++ b/docs/articles/page/1/index.html @@ -163,7 +163,30 @@

Articles

Browse all articles.

featured
- + + · 1 min read +
+

First beta release

+
+

Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements.

+ +
+
+ + Tibor Bödecs + +
+ +
+ Releases +
+
+ +
+ + +
+ · 1 min read

Last alpha release

@@ -183,7 +206,7 @@

- featured +

diff --git a/docs/authors/tibor-bodecs/index.html b/docs/authors/tibor-bodecs/index.html index dc24934..52edc68 100644 --- a/docs/authors/tibor-bodecs/index.html +++ b/docs/authors/tibor-bodecs/index.html @@ -160,7 +160,7 @@

Tibor Bödecs


CEO @ Binary Birds

-

2 articles

+

3 articles

@@ -171,7 +171,31 @@

Tibor Bödecs

featured
- + + · 1 min read +
+

First beta release

+
+

Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements.

+ +
+
+ + Tibor Bödecs + +
+ +
+ Releases +
+
+ + +
+ + +
+ · 1 min read

Last alpha release

@@ -192,7 +216,7 @@

- featured +
diff --git a/docs/docs/deployment/github-pages/index.html b/docs/docs/deployment/github-pages/index.html index 8ed9783..d84d6fb 100644 --- a/docs/docs/deployment/github-pages/index.html +++ b/docs/docs/deployment/github-pages/index.html @@ -212,7 +212,7 @@
Deployment -

GitHub Pages


Toucan-based websites can be hosted for free using GitHub Pages. Follow these steps to set up your site:

  1. Create a repository for your website on GitHub.
  2. Place all your source files into an src directory within the repository.
  3. Run the toucan generate command to generate your site.
  4. Commit and push the generated files to your repository.
  5. Navigate to the repository’s Settings > Pages section.
  6. In the Pages settings, select the directory containing the generated site files.

Once done, your site should be live on GitHub Pages.

Fore more information, visit the following guides:

+

GitHub Pages


Toucan-based websites can be hosted for free using GitHub Pages. Follow these steps to set up your site:

  1. Create a repository for your website on GitHub.
  2. Place all your source files into an src directory within the repository.
  3. Run the toucan generate command to generate your site.
  4. Commit and push the generated files to your repository.
  5. Navigate to the repository’s Settings > Pages section.
  6. In the Pages settings, select the directory containing the generated site files.

Once done, your site should be live on GitHub Pages.

For more information, visit the following guides:

diff --git a/docs/docs/getting-started/commands/index.html b/docs/docs/getting-started/commands/index.html index 68fe57e..0ddd240 100644 --- a/docs/docs/getting-started/commands/index.html +++ b/docs/docs/getting-started/commands/index.html @@ -213,7 +213,7 @@ Getting started

Commands


Toucan includes three built-in subcommands to generate static sites: generate, watch, and serve.

Generate

The generate command builds static files from the source folder. The static site will be available in a destination directory, which can be customized. Additionally, the site’s base URL can be overridden, which is useful for local development.

toucan generate ./src ./docs --base-url http://localhost:3000/
-

Watch

The watch command monitors a source directory for changes and automatically rebuilds the distribution files, regenerating the site whenever changes are detected.

Please note that the watch command is only available on macOS during the alpha release.​

toucan watch ./src ./docs --base-url http://localhost:3000/
+

Watch

The watch command monitors a source directory for changes and automatically rebuilds the distribution files, regenerating the site whenever changes are detected.

Please note that the watch command is only available on macOS during the beta release.​

toucan watch ./src ./docs --base-url http://localhost:3000/
 

Serve

The serve command starts a web server to serve a specified directory. It allows serving a folder with an optional port number. By default, your site will be accessible at http://localhost:3000/ if run as follows:

toucan serve ./docs -h localhost -p 3000
 toucan serve ./docs --host localhost --port 3000
 

You can specify a hostname and port parameter to bind your web server to a given address. This allows you to preview your website at http://localhost:3000/.

diff --git a/docs/docs/index.html b/docs/docs/index.html index aa99bdd..509f124 100644 --- a/docs/docs/index.html +++ b/docs/docs/index.html @@ -209,7 +209,7 @@
-

Docs

Toucan is currently released as an alpha-version.

Welcome to the Toucan user docs. This page is currently work in progress. We’re going to provide the documentation for our static site during the upcoming weeks. Thank you very much for your patience. 🙏

Don’t hesitate to contact us if you have any questions.

+

Docs

Toucan is currently released as an beta-version.

Welcome to the Toucan user docs. This page is currently work in progress. We’re going to provide the documentation for our static site during the upcoming weeks. Thank you very much for your patience. 🙏

Don’t hesitate to contact us if you have any questions.

diff --git a/docs/docs/installation/index.html b/docs/docs/installation/index.html index d7309be..792ff67 100644 --- a/docs/docs/installation/index.html +++ b/docs/docs/installation/index.html @@ -210,7 +210,7 @@
Docs -

Installation

During the alpha release, Toucan is available only for macOS and Linux. Windows support will be coming soon.

+

Installation

During the beta release, Toucan is available only for macOS and Linux. Windows support will be coming soon.

Guides

    diff --git a/docs/docs/installation/linux/index.html b/docs/docs/installation/linux/index.html index f81b914..b8ad2a9 100644 --- a/docs/docs/installation/linux/index.html +++ b/docs/docs/installation/linux/index.html @@ -212,7 +212,7 @@
    Installation -

    Linux


    During the alpha release, Toucan can be installed on Linux by compiling from source.

    Please note that the watch command is not fully supported yet, but this feature will be available on Linux in a future release.

    Quick install

    Here’s a quick snippet to install Toucan on Linux. Run the following commands, ensuring that Swift 5.10 or later is installed on your machine beforehand.

    # clone the repository & install toucan
    +                

    Linux


    During the beta release, Toucan can be installed on Linux by compiling from source.

    Please note that the watch command is not fully supported yet, but this feature will be available on Linux in a future release.

    Quick install

    Here’s a quick snippet to install Toucan on Linux. Run the following commands, ensuring that Swift 5.10 or later is installed on your machine beforehand.

    # clone the repository & install toucan
     git clone https://github.com/toucansites/toucan.git
     cd toucan
     make install
    diff --git a/docs/docs/installation/macos/index.html b/docs/docs/installation/macos/index.html
    index 24c0c8c..51165cd 100644
    --- a/docs/docs/installation/macos/index.html
    +++ b/docs/docs/installation/macos/index.html
    @@ -212,7 +212,7 @@
                 
    Installation -

    macOS


    During the alpha release, Toucan can be installed on macOS by compiling from source. Support for Brew and Mint package managers is coming soon.

    Quick install

    Here’s a quick snippet to install Toucan on macOS. Simply run the following commands. Please note that both Swift and Xcode must be installed on your machine before executing the commands.

    # clone the repository & install toucan
    +                

    macOS


    During the beta release, Toucan can be installed on macOS by compiling from source. Support for Brew and Mint package managers is coming soon.

    Quick install

    Here’s a quick snippet to install Toucan on macOS. Simply run the following commands. Please note that both Swift and Xcode must be installed on your machine before executing the commands.

    # clone the repository & install toucan
     git clone https://github.com/toucansites/toucan.git
     cd toucan
     make install
    diff --git a/docs/docs/installation/windows/index.html b/docs/docs/installation/windows/index.html
    index 1f2e8e5..f4d6bef 100644
    --- a/docs/docs/installation/windows/index.html
    +++ b/docs/docs/installation/windows/index.html
    @@ -212,7 +212,7 @@
                 
    Installation -

    Windows


    Toucan is available for macOS and Linux during the alpha release, with Windows support coming soon.

    If you’d like to help improve Toucan on Windows, consider submitting a PR to the project’s repository on GitHub. 🙏

    +

    Windows


    Toucan is available for macOS and Linux during the beta release, with Windows support coming soon.

    If you’d like to help improve Toucan on Windows, consider submitting a PR to the project’s repository on GitHub. 🙏

    diff --git a/docs/docs/themes/content-types/index.html b/docs/docs/themes/content-types/index.html index b23936c..007c98f 100644 --- a/docs/docs/themes/content-types/index.html +++ b/docs/docs/themes/content-types/index.html @@ -242,7 +242,7 @@

    Content types


    Custom content types are defined in the types method: equals value: true -

    Content types, including pagination and property validation, are still subject to change during the alpha and beta release cycles.

    Additional documentation will be provided once this feature is stabilized.

    +

    Content types, including pagination and property validation, are still subject to change during beta release cycle.

    Additional documentation will be provided once this feature is stabilized.

    diff --git a/docs/docs/themes/toucan-templates/index.html b/docs/docs/themes/toucan-templates/index.html index 9001c40..37ab3f0 100644 --- a/docs/docs/themes/toucan-templates/index.html +++ b/docs/docs/themes/toucan-templates/index.html @@ -212,7 +212,7 @@
    Themes -

    Toucan templates


    The templates are being standardized in preparation for the 1.0.0 release. This document outlines the structure of the template files used during the alpha and beta release cycles.

    Top-level templates

    There are a few top level templates that most of the themes will include inside the themes/default/templates folder:

    html.mustache
    +                

    Toucan templates


    The templates are being standardized in preparation for the 1.0.0 release. This document outlines the structure of the template files used during the beta release cycle.

    Top-level templates

    There are a few top level templates that most of the themes will include inside the themes/default/templates folder:

    html.mustache
     redirect.mustache
     rss.mustache
     sitemap.mustache
    diff --git a/docs/first-beta-release/index.html b/docs/first-beta-release/index.html
    new file mode 100644
    index 0000000..5bfdced
    --- /dev/null
    +++ b/docs/first-beta-release/index.html
    @@ -0,0 +1,300 @@
    +
    +
    +
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +
    +    First beta release - Toucan
    +
    +    
    +    
    +    
    +
    +    
    +
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +    
    +
    +    
    +    
    +
    +
    +
    +
    +
    +    
    +
    +    
    +
    + +
    + +
    + + · 1 min read +
    +

    First beta release

    +
    +

    Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements.

    + + +
    + +
    + +

    Toucan is now ready for beta testing. During this phase, the focus will be on bug fixes and overall quality-of-life improvements.

    A significant change from version 1.0.0-alpha.3 is the introduction of custom block directives. More details about this feature can be found in the corresponding documentation section.

    Another new feature is the init command, which assists in bootstrapping the creation of a static website. Simply run toucan init to get started.

    This is a great time to start building your own site with Toucan. The team is eager to see the projects created using our static site generator.

    Check out the sample repositories for inspiration and start building your own site or theme with Toucan:

    We hope you find Toucan easy to use, and we greatly value your feedback. 🙏

    + +
    + + + +
    +

    Related articles

    +
    +
    +
    + + +
    + + · 1 min read +
    +

    Last alpha release

    +
    +

    Toucan 1.0.0-alpha.3 is now released, this article will help you to understand the changes and to migrate your site from alpha 2.

    + +
    +
    + + Tibor Bödecs + +
    + +
    + Releases +
    +
    +
    +
    + + +
    + + · 2 min read +
    +

    Toucan is now ready for alpha testing

    +
    +

    Here’s how you can try out Toucan, our brand-new static site generator, developed entirely in Swift.

    + +
    +
    + + Tibor Bödecs + +
    + +
    + Releases +
    +
    +
    +
    +
    + +
    + +
    + +
    + +
    + + + + + + + diff --git a/docs/index.html b/docs/index.html index ed8b3bd..544d7d4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -233,7 +233,30 @@

    Most recent

    featured
    - + + · 1 min read +
    +

    First beta release

    +
    +

    Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements.

    + +
    +
    + + Tibor Bödecs + +
    + +
    + Releases +
    +
    +
+
+ + +
+ · 1 min read

Last alpha release

@@ -253,7 +276,7 @@

- featured +
diff --git a/docs/last-alpha-release/index.html b/docs/last-alpha-release/index.html index dcca3cd..6d2233a 100644 --- a/docs/last-alpha-release/index.html +++ b/docs/last-alpha-release/index.html @@ -31,7 +31,7 @@ Last alpha release - Toucan - + @@ -158,7 +158,7 @@
- + · 1 min read

Last alpha release

@@ -210,6 +210,29 @@

Related articles

featured +
+ + · 1 min read +
+

First beta release

+
+

Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements.

+ +
+
+ + Tibor Bödecs + +
+ +
+ Releases +
+
+
+
+ +
· 2 min read diff --git a/docs/news/index.html b/docs/news/index.html index c573f10..a2cdce3 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -165,7 +165,30 @@

News

Latest news

featured
- + + · 1 min read +
+

First beta release

+
+

Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements.

+ +
+
+ + Tibor Bödecs + +
+ +
+ Releases +
+
+
+
+ + +
+ · 1 min read

Last alpha release

@@ -185,7 +208,7 @@

- featured +

Releases

-

2 articles

+

3 articles

@@ -264,7 +287,7 @@

Andris Sipos

Tibor Bödecs

-

2 articles

+

3 articles

diff --git a/docs/rss.xml b/docs/rss.xml index de401cd..d7d7bba 100644 --- a/docs/rss.xml +++ b/docs/rss.xml @@ -4,17 +4,24 @@ The Markdown-based static site generator written in Swift https://toucansites.com/ en-US - Tue, 22 Oct 2024 13:33:02 +0000 - Tue, 15 Oct 2024 00:00:00 +0000 + Tue, 22 Oct 2024 18:36:43 +0000 + Tue, 22 Oct 2024 00:00:00 +0000 250 + + https://toucansites.com/first-beta-release/ + <![CDATA[ First beta release ]]> + + https://toucansites.com/first-beta-release/ + Tue, 22 Oct 2024 00:00:00 +0000 + https://toucansites.com/last-alpha-release/ <![CDATA[ Last alpha release ]]> https://toucansites.com/last-alpha-release/ - Tue, 15 Oct 2024 00:00:00 +0000 + Thu, 17 Oct 2024 00:00:00 +0000 https://toucansites.com/toucan-is-now-ready-for-alpha-testing/ diff --git a/docs/sitemap.xml b/docs/sitemap.xml index ce24834..268cb21 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -11,7 +11,7 @@ https://toucansites.com/contact/ 2024-10-17 https://toucansites.com/docs/ - 2024-10-17 + 2024-10-22 https://toucansites.com/docs/content-management/ 2024-10-22 https://toucansites.com/docs/content-management/markdown/ @@ -27,17 +27,17 @@ https://toucansites.com/docs/getting-started/basics/ 2024-10-17 https://toucansites.com/docs/getting-started/commands/ - 2024-10-17 + 2024-10-22 https://toucansites.com/docs/getting-started/site-index/ 2024-10-17 https://toucansites.com/docs/installation/ - 2024-10-17 + 2024-10-22 https://toucansites.com/docs/installation/linux/ - 2024-10-17 + 2024-10-22 https://toucansites.com/docs/installation/macos/ - 2024-10-17 + 2024-10-22 https://toucansites.com/docs/installation/windows/ - 2024-10-17 + 2024-10-22 https://toucansites.com/docs/integrations/ 2024-10-22 https://toucansites.com/docs/integrations/syntax-highlight/ @@ -49,13 +49,13 @@ https://toucansites.com/docs/themes/block-directives/ 2024-10-22 https://toucansites.com/docs/themes/content-types/ - 2024-10-17 + 2024-10-22 https://toucansites.com/docs/themes/mustache-templates/ 2024-10-17 https://toucansites.com/docs/themes/theme-assets/ 2024-10-17 https://toucansites.com/docs/themes/toucan-templates/ - 2024-10-17 + 2024-10-22 https://toucansites.com/faq/ 2024-10-21 https://toucansites.com/news/ @@ -68,10 +68,12 @@ 2024-10-17 https://toucansites.com/tags/releases/ 2024-10-17 + https://toucansites.com/first-beta-release/ + 2024-10-22 https://toucansites.com/last-alpha-release/ - 2024-10-17 + 2024-10-22 https://toucansites.com/toucan-is-now-ready-for-alpha-testing/ - 2024-10-17 + 2024-10-22 https://toucansites.com/introducing-toucan-a-new-markdown-based-static-site-generator/ 2024-10-17 diff --git a/docs/tags/index.html b/docs/tags/index.html index 19758f8..3620a5f 100644 --- a/docs/tags/index.html +++ b/docs/tags/index.html @@ -164,7 +164,7 @@

News

Releases

-

2 articles

+

3 articles

diff --git a/docs/tags/releases/index.html b/docs/tags/releases/index.html index 44839ca..99a9c87 100644 --- a/docs/tags/releases/index.html +++ b/docs/tags/releases/index.html @@ -160,7 +160,7 @@

Releases


Toucan updates and releases.

-

2 articles

+

3 articles

@@ -170,7 +170,30 @@

Releases

featured
- + + · 1 min read +
+

First beta release

+
+

Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements.

+ +
+
+ + Tibor Bödecs + +
+ +
+ Releases +
+
+

+
+ + +
+ · 1 min read

Last alpha release

@@ -190,7 +213,7 @@

- featured + +
+ + +
+ · 1 min read

Last alpha release

diff --git a/src/contents/blog/articles/first-beta-release/index.md b/src/contents/blog/articles/first-beta-release/index.md new file mode 100644 index 0000000..bd625d2 --- /dev/null +++ b/src/contents/blog/articles/first-beta-release/index.md @@ -0,0 +1,35 @@ +--- +type: post +title: "First beta release" +description: "Toucan 1.0.0-beta.1 has been released, featuring custom block directives and other minor enhancements." +publication: "2024-10-22 00:00:00" +tags: + - releases +authors: + - tibor-bodecs +featured: true +--- + +Toucan is now ready for [beta](https://github.com/toucansites/toucan/releases/tag/1.0.0-beta.1) testing. During this phase, the focus will be on bug fixes and overall quality-of-life improvements. + +A significant change from version 1.0.0-alpha.3 is the introduction of custom block directives. More details about this feature can be found in the corresponding [documentation](/docs/themes/block-directives/) section. + +Another new feature is the init command, which assists in bootstrapping the creation of a static website. Simply run `toucan init` to get started. + +This is a great time to start building your own site with Toucan. The team is eager to see the projects created using our static site generator. + +Check out the sample repositories for inspiration and start building your own site or theme with Toucan: + +- [The.Swift.Dev](https://github.com/theswiftdev/blog) +- [toucansites.com](https://github.com/toucansites/website) +- [Minimal example](https://github.com/toucansites/minimal-example) +- [Swift on Server](https://github.com/swift-on-server/site/) + +We hope you find Toucan easy to use, and we greatly value your feedback. 🙏 + + + + + + + diff --git a/src/contents/blog/articles/last-alpha-release/index.md b/src/contents/blog/articles/last-alpha-release/index.md index a421ce0..105cfc5 100644 --- a/src/contents/blog/articles/last-alpha-release/index.md +++ b/src/contents/blog/articles/last-alpha-release/index.md @@ -2,12 +2,12 @@ type: post title: "Last alpha release" description: "Toucan 1.0.0-alpha.3 is now released, this article will help you to understand the changes and to migrate your site from alpha 2." -publication: "2024-10-15 00:00:00" +publication: "2024-10-17 00:00:00" tags: - releases authors: - tibor-bodecs -featured: true +featured: false --- The alpha testing phase for Toucan is now finished with the release of the final alpha version, [1.0.0-alpha.3](https://github.com/toucansites/toucan/releases). We are preparing to begin the beta release cycle shortly. diff --git a/src/contents/blog/articles/toucan-is-now-ready-for-alpha-testing/index.md b/src/contents/blog/articles/toucan-is-now-ready-for-alpha-testing/index.md index 960dc12..798b83c 100644 --- a/src/contents/blog/articles/toucan-is-now-ready-for-alpha-testing/index.md +++ b/src/contents/blog/articles/toucan-is-now-ready-for-alpha-testing/index.md @@ -7,7 +7,7 @@ tags: - releases authors: - tibor-bodecs -featured: true +featured: false --- ## What is Toucan? diff --git a/src/contents/docs/getting-started/commands/index.md b/src/contents/docs/getting-started/commands/index.md index c366b5d..bfff895 100644 --- a/src/contents/docs/getting-started/commands/index.md +++ b/src/contents/docs/getting-started/commands/index.md @@ -23,7 +23,7 @@ toucan generate ./src ./docs --base-url http://localhost:3000/ The `watch` command monitors a source directory for changes and automatically rebuilds the distribution files, regenerating the site whenever changes are detected. -> Please note that the `watch` command is only available on macOS during the alpha release.​ +> Please note that the `watch` command is only available on macOS during the beta release.​ ```sh toucan watch ./src ./docs --base-url http://localhost:3000/ diff --git a/src/contents/docs/index.md b/src/contents/docs/index.md index deb50ed..2c6dcb3 100644 --- a/src/contents/docs/index.md +++ b/src/contents/docs/index.md @@ -6,7 +6,7 @@ template: docs.home # Docs -Toucan is currently released as an [alpha-version](https://github.com/binarybirds/toucan). +Toucan is currently released as an [beta-version](https://github.com/binarybirds/toucan). Welcome to the Toucan user docs. This page is currently work in progress. We're going to provide the documentation for our static site during the upcoming weeks. Thank you very much for your patience. 🙏 diff --git a/src/contents/docs/installation/index.md b/src/contents/docs/installation/index.md index 87d8ec5..31cc465 100644 --- a/src/contents/docs/installation/index.md +++ b/src/contents/docs/installation/index.md @@ -7,4 +7,4 @@ order: 1 # Installation -During the alpha release, Toucan is available only for macOS and Linux. Windows support will be coming soon. +During the beta release, Toucan is available only for macOS and Linux. Windows support will be coming soon. diff --git a/src/contents/docs/installation/linux/index.md b/src/contents/docs/installation/linux/index.md index 95a0a14..12d1f3a 100644 --- a/src/contents/docs/installation/linux/index.md +++ b/src/contents/docs/installation/linux/index.md @@ -9,7 +9,7 @@ order: 2 # Linux --- -During the alpha release, Toucan can be installed on Linux by compiling from source. +During the beta release, Toucan can be installed on Linux by compiling from source. Please note that the `watch` command is not fully supported yet, but this feature will be available on Linux in a future release. diff --git a/src/contents/docs/installation/macos/index.md b/src/contents/docs/installation/macos/index.md index e764135..99deeca 100644 --- a/src/contents/docs/installation/macos/index.md +++ b/src/contents/docs/installation/macos/index.md @@ -9,7 +9,7 @@ order: 1 # macOS --- -During the alpha release, Toucan can be installed on macOS by compiling from source. Support for [Brew](https://brew.sh/) and [Mint](https://github.com/yonaskolb/Mint) package managers is coming soon. +During the beta release, Toucan can be installed on macOS by compiling from source. Support for [Brew](https://brew.sh/) and [Mint](https://github.com/yonaskolb/Mint) package managers is coming soon. ## Quick install diff --git a/src/contents/docs/installation/windows/index.md b/src/contents/docs/installation/windows/index.md index 3a05dc7..3b5c662 100644 --- a/src/contents/docs/installation/windows/index.md +++ b/src/contents/docs/installation/windows/index.md @@ -9,6 +9,6 @@ order: 3 # Windows --- -Toucan is available for [macOS](/docs/installation/macos/) and [Linux](/docs/installation/linux/) during the alpha release, with Windows support coming soon. +Toucan is available for [macOS](/docs/installation/macos/) and [Linux](/docs/installation/linux/) during the beta release, with Windows support coming soon. If you'd like to help improve Toucan on Windows, consider submitting a PR to the project's repository on [GitHub](https://github.com/toucansites/toucan/pulls). 🙏 \ No newline at end of file diff --git a/src/contents/docs/themes/content-types/index.md b/src/contents/docs/themes/content-types/index.md index 3834233..7daffa3 100644 --- a/src/contents/docs/themes/content-types/index.md +++ b/src/contents/docs/themes/content-types/index.md @@ -50,6 +50,6 @@ context: ``` -Content types, including pagination and property validation, are still subject to change during the alpha and beta release cycles. +Content types, including pagination and property validation, are still subject to change during beta release cycle. Additional documentation will be provided once this feature is stabilized. \ No newline at end of file diff --git a/src/contents/docs/themes/toucan-templates/index.md b/src/contents/docs/themes/toucan-templates/index.md index c0e6952..72fbcb5 100644 --- a/src/contents/docs/themes/toucan-templates/index.md +++ b/src/contents/docs/themes/toucan-templates/index.md @@ -9,7 +9,7 @@ order: 5 # Toucan templates --- -The templates are being standardized in preparation for the 1.0.0 release. This document outlines the structure of the template files used during the alpha and beta release cycles. +The templates are being standardized in preparation for the 1.0.0 release. This document outlines the structure of the template files used during the beta release cycle. ## Top-level templates