Skip to content

Commit 7a3e945

Browse files
committed
Update Copyright Information
closes #65
1 parent e88377e commit 7a3e945

25 files changed

+10
-232
lines changed

Cargo.toml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
# Stick
2-
# Copyright © 2017-2021 Jeron Aldaron Lau.
3-
#
4-
# Licensed under any of:
5-
# - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
6-
# - MIT License (https://mit-license.org/)
7-
# - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
8-
# At your option (See accompanying files LICENSE_APACHE_2_0.txt,
9-
# LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt). This file may not be copied,
10-
# modified, or distributed except according to those terms.
11-
121
[workspace]
132
members = [
143
# The Stick Crate

LICENSE_BOOST_1_0.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
Boost Software License - Version 1.0 - August 17th, 2003
22

3-
Copyright © 2017-2021 Jeron Aldaron Lau.
4-
53
Permission is hereby granted, free of charge, to any person or organization
64
obtaining a copy of the software and accompanying documentation covered by
75
this license (the "Software") to use, reproduce, display, distribute,

LICENSE_MIT.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
MIT License
22

3-
Copyright © 2017-2021 Jeron Aldaron Lau.
4-
53
Permission is hereby granted, free of charge, to any person obtaining a copy
64
of this software and associated documentation files (the "Software"), to deal
75
in the Software without restriction, including without limitation the rights

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,14 @@ Type can be any of the following:
4545
- `gamepad` - A generic Gamepad (W3 Standard Gamepad Compliant)
4646

4747
## License
48+
Copyright © 2017-2023 The Stick Contributors.
49+
4850
Licensed under any of
4951
- Apache License, Version 2.0, ([LICENSE_APACHE_2_0.txt][7]
5052
or [https://www.apache.org/licenses/LICENSE-2.0][8])
51-
- MIT License, ([LICENSE_MIT.txt][9] or [https://mit-license.org/][10])
5253
- Boost Software License, Version 1.0, ([LICENSE_BOOST_1_0.txt][11]
5354
or [https://www.boost.org/LICENSE_1_0.txt][12])
55+
- MIT License, ([LICENSE_MIT.txt][9] or [https://mit-license.org/][10])
5456

5557
at your option.
5658

stick/Cargo.toml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,11 @@
1-
# Stick
2-
# Copyright Jeron Aldaron Lau 2017-2021.
3-
# Copyright Daniel Parnell 2021.
4-
#
5-
# Licensed under any of:
6-
# - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
7-
# - MIT License (https://mit-license.org/)
8-
# - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
9-
# At your option (See accompanying files LICENSE_APACHE_2_0.txt,
10-
# LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt). This file may not be copied,
11-
# modified, or distributed except according to those terms.
12-
131
[package]
142
name = "stick"
153
version = "0.13.0"
16-
authors = [
17-
"Jeron Aldaron Lau <[email protected]>",
18-
"Daniel Parnell <[email protected]>"
19-
]
20-
license = "Apache-2.0 OR MIT OR BSL-1.0"
4+
license = "Apache-2.0 OR BSL-1.0 OR MIT"
215

22-
description = "Platform-agnostic asynchronous gamepad, joystick and flighstick library"
6+
description = """
7+
Platform-agnostic asynchronous gamepad, joystick, and flightstick library
8+
"""
239
repository = "https://github.com/ardaku/stick"
2410
documentation = "https://docs.rs/stick"
2511
homepage = "https://github.com/ardaku/stick/blob/stable/CHANGELOG.md"

stick/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,14 @@ You may enable the following features
6565
You can use the [changelog][3] to facilitate upgrading this crate as a dependency.
6666

6767
## License
68+
Copyright © 2017-2023 The Stick Contributors.
69+
6870
Licensed under any of
6971
- Apache License, Version 2.0, ([LICENSE_APACHE_2_0.txt][7]
7072
or [https://www.apache.org/licenses/LICENSE-2.0][8])
71-
- MIT License, ([LICENSE_MIT.txt][9] or [https://mit-license.org/][10])
7273
- Boost Software License, Version 1.0, ([LICENSE_BOOST_1_0.txt][11]
7374
or [https://www.boost.org/LICENSE_1_0.txt][12])
75+
- MIT License, ([LICENSE_MIT.txt][9] or [https://mit-license.org/][10])
7476

7577
at your option.
7678

stick/src/ctlr.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
// Stick
2-
// Copyright © 2017-2021 Jeron Aldaron Lau.
3-
//
4-
// Licensed under any of:
5-
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
6-
// - MIT License (https://mit-license.org/)
7-
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
8-
// At your option (See accompanying files LICENSE_APACHE_2_0.txt,
9-
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt). This file may not be copied,
10-
// modified, or distributed except according to those terms.
11-
121
use std::collections::HashMap;
132
use std::fmt::Debug;
143
use std::future::Future;

stick/src/event.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
// Stick
2-
// Copyright © 2017-2021 Jeron Aldaron Lau.
3-
//
4-
// Licensed under any of:
5-
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
6-
// - MIT License (https://mit-license.org/)
7-
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
8-
// At your option (See accompanying files LICENSE_APACHE_2_0.txt,
9-
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt). This file may not be copied,
10-
// modified, or distributed except according to those terms.
11-
121
/// An event from a [`Controller`](crate::Controller).
132
#[derive(Debug, Copy, Clone)]
143
#[non_exhaustive]

stick/src/focus.rs

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
// Stick
2-
// Copyright © 2017-2021 Jeron Aldaron Lau.
3-
//
4-
// Licensed under any of:
5-
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
6-
// - MIT License (https://mit-license.org/)
7-
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
8-
// At your option (See accompanying files LICENSE_APACHE_2_0.txt,
9-
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt). This file may not be copied,
10-
// modified, or distributed except according to those terms.
11-
121
/// Window grab focus, re-enable events if they were disabled.
132
pub fn focus() {
143
crate::raw::GLOBAL.with(|g| g.enable());

stick/src/gamepad.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,3 @@
1-
// Copyright © 2017-2021 The Stick Contributors.
2-
//
3-
// Licensed under any of:
4-
// - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
5-
// - MIT License (https://mit-license.org/)
6-
// - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
7-
// At your option (See accompanying files LICENSE_APACHE_2_0.txt,
8-
// LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt). This file may not be copied,
9-
// modified, or distributed except according to those terms.
10-
111
// FIXME: Use in crate.
122

133
/// An event from a `Gamepad`.

0 commit comments

Comments
 (0)