From 2d6cc62ad6a9984dd3a8a272f1605bb6ddc735a9 Mon Sep 17 00:00:00 2001 From: Jens Reimann Date: Tue, 12 Dec 2023 08:31:30 +0100 Subject: [PATCH] chore: update links after repository transfer --- Cargo.toml | 2 +- README.md | 8 ++++---- examples/yew-tailwindcss/src/main.rs | 5 +++-- examples/yew/src/main.rs | 2 +- site/config.toml | 2 +- site/content/_index.md | 9 +++------ site/content/assets.md | 4 ++-- site/content/configuration.md | 2 +- site/templates/index.html | 2 +- 9 files changed, 17 insertions(+), 19 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e8cb5f02..f036e79b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ authors = [ "Anthony Dodd ", "Jens Reimann " ] -repository = "https://github.com/thedodd/trunk" +repository = "https://github.com/trunk-rs/trunk" readme = "README.md" categories = ["command-line-utilities", "wasm", "web-programming"] keywords = ["wasm", "bundler", "web", "build-tool", "compiler"] diff --git a/README.md b/README.md index 2c2a330f..4c3b116c 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ # Trunk -[![Build Status](https://github.com/thedodd/trunk/actions/workflows/ci.yaml/badge.svg?branch=trunk)](https://github.com/thedodd/trunk/actions) +[![Build Status](https://github.com/trunk-rs/trunk/actions/workflows/ci.yaml/badge.svg?branch=trunk)](https://github.com/trunk-rs/trunk/actions) [![](https://img.shields.io/crates/v/trunk.svg?color=brightgreen&style=flat-square)](https://crates.io/crates/trunk) ![](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue?style=flat-square) [![Discord Chat](https://img.shields.io/discord/793890238267260958?logo=discord&style=flat-square)](https://discord.gg/JEPdBujTDr) [![](https://img.shields.io/crates/d/trunk?label=downloads%20%28crates.io%29&style=flat-square)](https://crates.io/crates/trunk) -[![](https://img.shields.io/github/downloads/thedodd/trunk/total?label=downloads%20%28GH%29&style=flat-square)](https://github.com/thedodd/trunk/releases) +[![](https://img.shields.io/github/downloads/trunk-rs/trunk/total?label=downloads%20%28GH%29&style=flat-square)](https://github.com/trunk-rs/trunk/releases) ![](https://img.shields.io/homebrew/installs/dy/trunk?color=brightgreen&label=downloads%20%28brew%29&style=flat-square) **Build, bundle & ship your Rust WASM application to the web.** @@ -23,9 +23,9 @@ Trunk is a WASM web application bundler for Rust. Trunk uses a simple, optional- Head on over to the [Trunk website](https://trunkrs.dev), everything you need is there. A few quick links: - [Install](https://trunkrs.dev/#install) - - Download a released binary: https://github.com/thedodd/trunk/releases + - Download a released binary: https://github.com/trunk-rs/trunk/releases - `cargo binstall trunk` - - `cargo install --git https://github.com/thedodd/trunk trunk` (most recent from git) + - `cargo install --git https://github.com/trunk-rs/trunk trunk` (most recent from git) - `cargo install --path . trunk` (Most recent from local directory) - [App Setup](https://trunkrs.dev//#app-setup) - [Assets](https://trunkrs.dev/assets/) diff --git a/examples/yew-tailwindcss/src/main.rs b/examples/yew-tailwindcss/src/main.rs index 13e5230f..31f3159f 100644 --- a/examples/yew-tailwindcss/src/main.rs +++ b/examples/yew-tailwindcss/src/main.rs @@ -22,9 +22,10 @@ impl Component for App { } fn view(&self) -> Html { - let link_classes = "block px-4 py-2 hover:bg-black hover:text-white rounded border-black border"; + let link_classes = + "block px-4 py-2 hover:bg-black hover:text-white rounded border-black border"; let links = [ - ("Trunk", "https://github.com/thedodd/trunk"), + ("Trunk", "https://github.com/trunk-rs/trunk"), ("Yew", "https://yew.rs/"), ("Tailwind", "https://tailwindcss.com"), ]; diff --git a/examples/yew/src/main.rs b/examples/yew/src/main.rs index 500e014a..33c83c36 100644 --- a/examples/yew/src/main.rs +++ b/examples/yew/src/main.rs @@ -39,7 +39,7 @@ impl Component for App { navend=html!{ <> - + {"Trunk"} diff --git a/site/config.toml b/site/config.toml index 0fa0b917..578cde29 100644 --- a/site/config.toml +++ b/site/config.toml @@ -15,5 +15,5 @@ favicon = "rustacean-flat-happy.svg" juice_logo_name = "Trunk" juice_logo_path = "rustacean-flat-happy.svg" juice_extra_menu = [ - { title = "Github", link = "https://github.com/thedodd/trunk"} + { title = "Github", link = "https://github.com/trunk-rs/trunk"} ] diff --git a/site/content/_index.md b/site/content/_index.md index 33d9bb17..88b81c9a 100644 --- a/site/content/_index.md +++ b/site/content/_index.md @@ -29,12 +29,12 @@ cargo binstall trunk ### GitHub release download -Fetch and unpack a released binary from the [release page](https://github.com/thedodd/trunk/releases). +Fetch and unpack a released binary from the [release page](https://github.com/trunk-rs/trunk/releases). For example (be sure to check for the most recent version): ```shell -wget -qO- https://github.com/thedodd/trunk/releases/download/0.17.10/trunk-x86_64-unknown-linux-gnu.tar.gz | tar -xzf- +wget -qO- https://github.com/trunk-rs/trunk/releases/download/0.17.10/trunk-x86_64-unknown-linux-gnu.tar.gz | tar -xzf- ``` ### NixOS @@ -47,9 +47,6 @@ nix-env -i trunk ### Brew -**Note:** Brew isn't supported at the moment. There is a PR pending, however it seems to publishing a fork of something -without acknowledging it's a fork isn't something that Homebrew does: https://github.com/Homebrew/homebrew-core/pull/150913 - ```shell brew install trunk ``` @@ -124,7 +121,7 @@ That's not all! Trunk has even more useful features. Head on over to the followi # Contributing -Anyone and everyone is welcome to contribute! Please review the [CONTRIBUTING.md](https://github.com/thedodd/trunk/blob/master/CONTRIBUTING.md) document for more details. The best way to get started is to find an open issue, and then start hacking on implementing it. Letting other folks know that you are working on it, and sharing progress is a great approach. Open pull requests early and often, and please use GitHub's draft pull request feature. +Anyone and everyone is welcome to contribute! Please review the [CONTRIBUTING.md](https://github.com/trunk-rs/trunk/blob/master/CONTRIBUTING.md) document for more details. The best way to get started is to find an open issue, and then start hacking on implementing it. Letting other folks know that you are working on it, and sharing progress is a great approach. Open pull requests early and often, and please use GitHub's draft pull request feature. # License diff --git a/site/content/assets.md b/site/content/assets.md index 14fc0f12..6d4ab0b5 100644 --- a/site/content/assets.md +++ b/site/content/assets.md @@ -50,7 +50,7 @@ This will typically look like: `