From 04fca53182fd426d38bd51458e05fbdbae68130b Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Mon, 25 Dec 2023 08:02:36 -0800 Subject: [PATCH] Fixing doc urls for rustme --- .crate-docs.md | 2 +- .rustme/config.ron | 6 +++--- README.md | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.crate-docs.md b/.crate-docs.md index e3ec2a4..a890c14 100644 --- a/.crate-docs.md +++ b/.crate-docs.md @@ -1,6 +1,6 @@ ![Gooey is considered alpha and unsupported](https://img.shields.io/badge/status-alpha-orange) [![crate version](https://img.shields.io/crates/v/gooey.svg)](https://crates.io/crates/gooey) -[![Documentation for `main` branch](https://img.shields.io/badge/docs-main-informational)](https://gooey.rs/main/gooey/) +[![Documentation for `main` branch](https://img.shields.io/badge/docs-main-informational)](https://gooey.rs/main/docs/gooey/) Gooey is an experimental Graphical User Interface (GUI) crate for the Rust programming language. It is powered by: diff --git a/.rustme/config.ron b/.rustme/config.ron index 0b1c66e..b157243 100644 --- a/.rustme/config.ron +++ b/.rustme/config.ron @@ -37,16 +37,16 @@ Configuration( release: "v0.1.3", ), "docs": ( - default: "https://gooey.rs/main/gooey/", + default: "https://gooey.rs/main/docs/gooey/", release: "https://docs.rs/gooey", ), "widget": ( - default: "https://gooey.rs/main/gooey/widget/trait.Widget.html", + default: "https://gooey.rs/main/docs/gooey/widget/trait.Widget.html", release: "https://docs.rs/gooey/*/gooey/widget/trait.Widget.html", for_docs: "crate::widget::Widget", ), "widgets": ( - default: "https://gooey.rs/main/gooey/widgets/index.html", + default: "https://gooey.rs/main/docs/gooey/widgets/index.html", release: "https://docs.rs/gooey/*/gooey/widgets/index.html", for_docs: "mod@crate::widgets", ), diff --git a/README.md b/README.md index d079107..d2d03e7 100644 --- a/README.md +++ b/README.md @@ -60,8 +60,8 @@ and problem it aims to solve. Doing so will help prevent friction in merging pull requests, as it ensures changes fit the vision the maintainers have for Gooey. -[widget]: https://gooey.rs/main/gooey/widget/trait.Widget.html -[widgets]: https://gooey.rs/main/gooey/widgets/index.html +[widget]: https://gooey.rs/main/docs/gooey/widget/trait.Widget.html +[widgets]: https://gooey.rs/main/docs/gooey/widgets/index.html [button-example]: https://github.com/khonsulabs/gooey/tree/main/examples/basic-button.rs [examples]: https://github.com/khonsulabs/gooey/tree/main/examples/ [kludgine]: https://github.com/khonsulabs/kludgine