Skip to content

Commit

Permalink
Update all repository links. (rust-native-ui#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoraCodes committed Feb 3, 2019
1 parent 6343672 commit b40495d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,7 +1,7 @@
# Improved User Interface
## A cross-platform UI toolkit for Rust based on libui
[![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)
[![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)
[![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)
![actively developed badge](https://img.shields.io/badge/maintenance-actively--developed-brightgreen.svg)

iui: [![iui crates.io version badge](https://img.shields.io/crates/v/iui.svg)](https://crates.io/crates/iui/)
Expand Down
10 changes: 5 additions & 5 deletions iui/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "iui"
version = "0.3.0"
authors = ["Leo Tindall <lfstindall@gmail.com>"]
authors = ["Leonora Tindall <lfstindall@gmail.com>"]

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

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

maintenance = { status = "actively-developed" }

[dependencies]
bitflags = "1.0"
libc = "0.2"
failure = "0.1.1"
ui-sys = { path = "../ui-sys", version = "0.2.0" }
ui-sys = { path = "../ui-sys", version = "0.2.1" }

2 changes: 1 addition & 1 deletion iui/src/lib.rs
Expand Up @@ -14,7 +14,7 @@
//! 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
//! 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!
//!
//! For code examples, see the [examples](https://github.com/LeoTindall/libui-rs/blob/master/iui/examples/)
//! For code examples, see the [examples](https://github.com/rust-native-ui/libui-rs/blob/master/iui/examples/)
//! directory.

#[macro_use]
Expand Down
10 changes: 5 additions & 5 deletions ui-sys/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "ui-sys"
version = "0.2.0"
authors = ["Leo Tindall <lfstindall@gmail.com>"]
version = "0.2.1"
authors = ["Leonora Tindall <lfstindall@gmail.com>"]
license = "MIT"
description = "Native bindings to the minimalist, cross-platform, widget set `libui`"

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

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

maintenance = { status = "actively-developed" }

Expand Down

0 comments on commit b40495d

Please sign in to comment.