Skip to content

Commit b40495d

Browse files
authored
Update all repository links. (#62)
1 parent 6343672 commit b40495d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Improved User Interface
22
## A cross-platform UI toolkit for Rust based on libui
33
[![travis-ci build status](https://travis-ci.com/rust-native-ui/libui-rs.svg?branch=master)](https://travis-ci.com/rust-native-ui/libui-rs)
4-
[![libui-rs appveyor build status badge](https://ci.appveyor.com/api/projects/status/github/leotindall/libui-rs)](https://ci.appveyor.com/project/LeoTindall/libui-rs)
4+
[![libui-rs appveyor build status badge](https://ci.appveyor.com/api/projects/status/github/leotindall/libui-rs)](https://ci.appveyor.com/project/rust-native-ui/libui-rs)
55
![actively developed badge](https://img.shields.io/badge/maintenance-actively--developed-brightgreen.svg)
66

77
iui: [![iui crates.io version badge](https://img.shields.io/crates/v/iui.svg)](https://crates.io/crates/iui/)

iui/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "iui"
33
version = "0.3.0"
4-
authors = ["Leo Tindall <lfstindall@gmail.com>"]
4+
authors = ["Leonora Tindall <lfstindall@gmail.com>"]
55

66
# A short blurb about the package. This is not rendered in any format when
77
# uploaded to crates.io (aka this is not markdown).
@@ -11,7 +11,7 @@ description = "Simple, small, easy to distribute GUI bindings."
1111
# intended to be webviews of the relevant data, not necessarily compatible
1212
# with VCS tools and the like.
1313
documentation = "https://docs.rs/iui/"
14-
repository = "https://github.com/LeoTindall/libui-rs"
14+
repository = "https://github.com/rust-native-ui/libui-rs"
1515

1616
# This points to a file under the package root (relative to this `Cargo.toml`).
1717
# The contents of this file are stored and indexed in the registry.
@@ -32,14 +32,14 @@ license = "MIT"
3232
[badges]
3333
# Travis CI: `repository` in format "<user>/<project>" is required.
3434
# `branch` is optional; default is `master`
35-
travis-ci = { repository = "LeoTindall/libui-rs", branch = "master" }
36-
appveyor = { repository = "LeoTindall/libui-rs", branch = "master" }
35+
travis-ci = { repository = "rust-native-ui/libui-rs", branch = "master" }
36+
appveyor = { repository = "rust-native-ui/libui-rs", branch = "master" }
3737

3838
maintenance = { status = "actively-developed" }
3939

4040
[dependencies]
4141
bitflags = "1.0"
4242
libc = "0.2"
4343
failure = "0.1.1"
44-
ui-sys = { path = "../ui-sys", version = "0.2.0" }
44+
ui-sys = { path = "../ui-sys", version = "0.2.1" }
4545

iui/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//! 1. implement some [callbacks](https://docs.rs/iui/*/iui/controls/struct.Button.html#method.on_clicked) for user input, taking full advantage of Rust's concurrency protections
1515
//! 1. call [`UI::main`](https://docs.rs/iui/*/iui/struct.UI.html#method.main), or take control over the event processing with an [`EventLoop`](https://docs.rs/iui/*/iui/struct.EventLoop.html), and voíla! A GUI!
1616
//!
17-
//! For code examples, see the [examples](https://github.com/LeoTindall/libui-rs/blob/master/iui/examples/)
17+
//! For code examples, see the [examples](https://github.com/rust-native-ui/libui-rs/blob/master/iui/examples/)
1818
//! directory.
1919
2020
#[macro_use]

ui-sys/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "ui-sys"
3-
version = "0.2.0"
4-
authors = ["Leo Tindall <lfstindall@gmail.com>"]
3+
version = "0.2.1"
4+
authors = ["Leonora Tindall <lfstindall@gmail.com>"]
55
license = "MIT"
66
description = "Native bindings to the minimalist, cross-platform, widget set `libui`"
77

@@ -10,7 +10,7 @@ description = "Native bindings to the minimalist, cross-platform, widget set `li
1010
# intended to be webviews of the relevant data, not necessarily compatible
1111
# with VCS tools and the like.
1212
documentation = "https://docs.rs/ui-sys/"
13-
repository = "https://github.com/LeoTindall/libui-rs"
13+
repository = "https://github.com/rust-native-ui/libui-rs"
1414

1515
# This points to a file under the package root (relative to this `Cargo.toml`).
1616
# The contents of this file are stored and indexed in the registry.
@@ -33,8 +33,8 @@ build = "build.rs"
3333
[badges]
3434
# Travis CI: `repository` in format "<user>/<project>" is required.
3535
# `branch` is optional; default is `master`
36-
travis-ci = { repository = "LeoTindall/libui-rs", branch = "master" }
37-
appveyor = { repository = "LeoTindall/libui-rs", branch = "master" }
36+
travis-ci = { repository = "rust-native-ui/libui-rs", branch = "master" }
37+
appveyor = { repository = "rust-native-ui/libui-rs", branch = "master" }
3838

3939
maintenance = { status = "actively-developed" }
4040

0 commit comments

Comments
 (0)