Skip to content
This repository has been archived by the owner on Feb 13, 2021. It is now read-only.

Use https for all links #14

Merged
merged 1 commit into from Oct 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion COPYRIGHT
Expand Up @@ -60,7 +60,7 @@ Zach Oakes <zsoakes@gmail.com>
Zach Ploskey <zach@ploskey.com>

The Gtk-rs Project is licensed under the MIT license, see the LICENSE file
or <http://opensource.org/licenses/MIT>.
or <https://opensource.org/licenses/MIT>.

This project provides interoperability with various GNOME libraries but doesn't
distribute any parts of them. Distributing compiled libraries and executables
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "gdk4"
license = "MIT"
homepage = "http://gtk-rs.org/"
homepage = "https://gtk-rs.org/"
authors = ["The Gtk-rs Project Developers"]
keywords = ["gdk", "gdk4", "gtk", "gtk-rs", "gnome", "GUI"]
readme = "README.md"
documentation = "http://gtk-rs.org/docs/gdk4/"
documentation = "https://gtk-rs.org/docs/gdk4/"
version = "0.1.0"
description = "Rust bindings for the GDK 4 library"
repository = "https://github.com/gtk-rs/gdk4"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -2,9 +2,9 @@

Gdk 4 bindings for Rust.

- [Gtk-rs project site](http://gtk-rs.org/)
- [Gtk-rs project site](https://gtk-rs.org/)

- [Online documentation](http://gtk-rs.org/docs/)
- [Online documentation](https://gtk-rs.org/docs-src/)

- [Readme](https://github.com/gtk-rs/gtk/blob/master/README.md) in our
[main repo](https://github.com/gtk-rs/gtk)
Expand Down
2 changes: 1 addition & 1 deletion src/cairo_interaction.rs
@@ -1,6 +1,6 @@
// Copyright 2013-2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use cairo::{Context, Region};
use gdk_pixbuf::Pixbuf;
Expand Down
2 changes: 1 addition & 1 deletion src/clipboard.rs
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib::object::IsA;
use glib::translate::*;
Expand Down
2 changes: 1 addition & 1 deletion src/content_deserializer.rs
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use gdk_sys;
use glib;
Expand Down
2 changes: 1 addition & 1 deletion src/device.rs
@@ -1,6 +1,6 @@
// Copyright 2013-2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use gdk_sys;
use glib::object::IsA;
Expand Down
2 changes: 1 addition & 1 deletion src/drop.rs
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use gdk_sys;
use gio;
Expand Down
2 changes: 1 addition & 1 deletion src/events.rs
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use glib::translate::*;
use CrossingMode;
Expand Down
2 changes: 1 addition & 1 deletion src/functions.rs
@@ -1,6 +1,6 @@
// Copyright 2013-2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use cairo;
use pango;
Expand Down
2 changes: 1 addition & 1 deletion src/geometry.rs
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use gdk_sys;
use glib::translate::*;
Expand Down
2 changes: 1 addition & 1 deletion src/keymap.rs
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use gdk_sys;
use glib::translate::*;
Expand Down
2 changes: 1 addition & 1 deletion src/keymap_key.rs
@@ -1,6 +1,6 @@
// Copyright 2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use gdk_sys;
use glib::translate::*;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
@@ -1,6 +1,6 @@
// Copyright 2013-2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

#![allow(deprecated)]
#![cfg_attr(feature = "cargo-clippy", allow(cast_ptr_alignment))]
Expand Down
2 changes: 1 addition & 1 deletion src/prelude.rs
@@ -1,6 +1,6 @@
// Copyright 2015, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

//! Traits intended for blanket imports.

Expand Down
2 changes: 1 addition & 1 deletion src/rgba.rs
@@ -1,6 +1,6 @@
// Copyright 2013-2015, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use gdk_sys;
use glib;
Expand Down
2 changes: 1 addition & 1 deletion src/time_coord.rs
@@ -1,6 +1,6 @@
// Copyright 2013-2019, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

use gdk_sys;
use glib::translate::*;
Expand Down
2 changes: 1 addition & 1 deletion tests/check_gir.rs
@@ -1,6 +1,6 @@
// Copyright 2013-2018, The Gtk-rs Project Developers.
// See the COPYRIGHT file at the top-level directory of this distribution.
// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
// Licensed under the MIT license, see the LICENSE file or <https://opensource.org/licenses/MIT>

extern crate gir_format_check;

Expand Down