From 767e8058fbf3c7c0ffdb48e76cd88dee9eab5052 Mon Sep 17 00:00:00 2001 From: Thom Chiovoloni Date: Fri, 4 Dec 2020 05:10:00 -0800 Subject: [PATCH] Updates for ownership transfer. - Various links now point at the new imgui-rs/imgui-rs github repo. - As discussed, the `authors` entry in Cargo.toml now uses same text that appears in `LICENSE-MIT`, and doesn't list anybody directly. --- Cargo.toml | 6 +++--- README.markdown | 2 +- imgui-examples/Cargo.toml | 6 +++--- imgui-gfx-examples/Cargo.toml | 6 +++--- imgui-gfx-renderer/Cargo.toml | 6 +++--- imgui-glium-renderer/Cargo.toml | 6 +++--- imgui-sys-bindgen/Cargo.toml | 6 +++--- imgui-sys/Cargo.toml | 6 +++--- imgui-winit-support/Cargo.toml | 6 +++--- 9 files changed, 25 insertions(+), 25 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d283b9e..f7dc9d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,10 +2,10 @@ name = "imgui" version = "0.6.0" edition = "2018" -authors = ["Joonas Javanainen ", "imgui-rs contributors"] +authors = ["The imgui-rs Developers"] description = "High-level Rust bindings to dear imgui" -homepage = "https://github.com/Gekkio/imgui-rs" -repository = "https://github.com/Gekkio/imgui-rs" +homepage = "https://github.com/imgui-rs/imgui-rs" +repository = "https://github.com/imgui-rs/imgui-rs" license = "MIT/Apache-2.0" categories = ["gui", "api-bindings"] readme = "README.markdown" diff --git a/README.markdown b/README.markdown index 8c4904d..2dc6c3b 100644 --- a/README.markdown +++ b/README.markdown @@ -6,7 +6,7 @@ Minimum Rust version: 1.43 Wrapped Dear ImGui version: 1.79 -[![Build Status](https://github.com/Gekkio/imgui-rs/workflows/ci/badge.svg)](https://github.com/Gekkio/imgui-rs/actions) +[![Build Status](https://github.com/imgui-rs/imgui-rs/workflows/ci/badge.svg)](https://github.com/imgui-rs/imgui-rs/actions) [![Latest release on crates.io](https://meritbadge.herokuapp.com/imgui)](https://crates.io/crates/imgui) [![Documentation on docs.rs](https://docs.rs/imgui/badge.svg)](https://docs.rs/imgui) diff --git a/imgui-examples/Cargo.toml b/imgui-examples/Cargo.toml index ea4b152..41d4cdc 100644 --- a/imgui-examples/Cargo.toml +++ b/imgui-examples/Cargo.toml @@ -2,10 +2,10 @@ name = "imgui-examples" version = "0.0.0" edition = "2018" -authors = ["Joonas Javanainen ", "imgui-rs contributors"] +authors = ["The imgui-rs Developers"] description = "imgui crate examples using Glium backend" -homepage = "https://github.com/Gekkio/imgui-rs" -repository = "https://github.com/Gekkio/imgui-rs" +homepage = "https://github.com/imgui-rs/imgui-rs" +repository = "https://github.com/imgui-rs/imgui-rs" license = "MIT/Apache-2.0" publish = false diff --git a/imgui-gfx-examples/Cargo.toml b/imgui-gfx-examples/Cargo.toml index 349d1bb..63d1b3e 100644 --- a/imgui-gfx-examples/Cargo.toml +++ b/imgui-gfx-examples/Cargo.toml @@ -2,10 +2,10 @@ name = "imgui-gfx-examples" version = "0.0.0" edition = "2018" -authors = ["Joonas Javanainen ", "imgui-rs contributors"] +authors = ["The imgui-rs Developers"] description = "imgui crate examples" -homepage = "https://github.com/Gekkio/imgui-rs" -repository = "https://github.com/Gekkio/imgui-rs" +homepage = "https://github.com/imgui-rs/imgui-rs" +repository = "https://github.com/imgui-rs/imgui-rs" license = "MIT/Apache-2.0" publish = false diff --git a/imgui-gfx-renderer/Cargo.toml b/imgui-gfx-renderer/Cargo.toml index 82488f4..4f191a1 100644 --- a/imgui-gfx-renderer/Cargo.toml +++ b/imgui-gfx-renderer/Cargo.toml @@ -2,10 +2,10 @@ name = "imgui-gfx-renderer" version = "0.6.0" edition = "2018" -authors = ["Joonas Javanainen ", "imgui-rs contributors"] +authors = ["The imgui-rs Developers"] description = "gfx renderer for the imgui crate" -homepage = "https://github.com/Gekkio/imgui-rs" -repository = "https://github.com/Gekkio/imgui-rs" +homepage = "https://github.com/imgui-rs/imgui-rs" +repository = "https://github.com/imgui-rs/imgui-rs" license = "MIT/Apache-2.0" categories = ["gui", "rendering"] diff --git a/imgui-glium-renderer/Cargo.toml b/imgui-glium-renderer/Cargo.toml index f37800f..614625b 100644 --- a/imgui-glium-renderer/Cargo.toml +++ b/imgui-glium-renderer/Cargo.toml @@ -2,10 +2,10 @@ name = "imgui-glium-renderer" version = "0.6.0" edition = "2018" -authors = ["Joonas Javanainen ", "imgui-rs contributors"] +authors = ["The imgui-rs Developers"] description = "Glium renderer for the imgui crate" -homepage = "https://github.com/Gekkio/imgui-rs" -repository = "https://github.com/Gekkio/imgui-rs" +homepage = "https://github.com/imgui-rs/imgui-rs" +repository = "https://github.com/imgui-rs/imgui-rs" license = "MIT/Apache-2.0" categories = ["gui", "rendering"] diff --git a/imgui-sys-bindgen/Cargo.toml b/imgui-sys-bindgen/Cargo.toml index c61e092..17f94d2 100644 --- a/imgui-sys-bindgen/Cargo.toml +++ b/imgui-sys-bindgen/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "imgui-sys-bindgen" version = "0.0.0" -authors = ["Joonas Javanainen ", "imgui-rs contributors"] +authors = ["The imgui-rs Developers"] edition = "2018" description = "imgui-sys bindings updater" -homepage = "https://github.com/Gekkio/imgui-rs" -repository = "https://github.com/Gekkio/imgui-rs" +homepage = "https://github.com/imgui-rs/imgui-rs" +repository = "https://github.com/imgui-rs/imgui-rs" license = "MIT/Apache-2.0" publish = false diff --git a/imgui-sys/Cargo.toml b/imgui-sys/Cargo.toml index a8f1258..49d0892 100644 --- a/imgui-sys/Cargo.toml +++ b/imgui-sys/Cargo.toml @@ -2,10 +2,10 @@ name = "imgui-sys" version = "0.6.0" edition = "2018" -authors = ["Joonas Javanainen ", "imgui-rs contributors"] +authors = ["The imgui-rs Developers"] description = "Raw FFI bindings to dear imgui" -homepage = "https://github.com/Gekkio/imgui-rs" -repository = "https://github.com/Gekkio/imgui-rs" +homepage = "https://github.com/imgui-rs/imgui-rs" +repository = "https://github.com/imgui-rs/imgui-rs" license = "MIT/Apache-2.0" categories = ["gui", "external-ffi-bindings"] build = "build.rs" diff --git a/imgui-winit-support/Cargo.toml b/imgui-winit-support/Cargo.toml index 262212f..b3b30f0 100644 --- a/imgui-winit-support/Cargo.toml +++ b/imgui-winit-support/Cargo.toml @@ -2,10 +2,10 @@ name = "imgui-winit-support" version = "0.6.0" edition = "2018" -authors = ["Joonas Javanainen ", "imgui-rs contributors"] +authors = ["The imgui-rs Developers"] description = "winit support code for the imgui crate" -homepage = "https://github.com/Gekkio/imgui-rs" -repository = "https://github.com/Gekkio/imgui-rs" +homepage = "https://github.com/imgui-rs/imgui-rs" +repository = "https://github.com/imgui-rs/imgui-rs" license = "MIT/Apache-2.0" categories = ["gui"]