Skip to content

Commit

Permalink
Standardize copyright headers. (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
xStrom committed Feb 22, 2024
1 parent 69ee2c9 commit de61b32
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 26 deletions.
7 changes: 7 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This is the list of Velato's significant contributors.
#
# This does not necessarily list everyone who has contributed code,
# especially since many employees of one corporation may be contributing.
# To see the full list of contributors, see the revision history in
# source control.
Google LLC
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ members = ["demo"]
edition = "2021"
version = "0.0.1"
license = "MIT OR Apache-2.0"
# homepage = "https://vello.dev" - Domain owned by us, but unused at present
# rust-version =
repository = "https://github.com/linebender/vello"
repository = "https://github.com/linebender/velato"

[package]
name = "velato"
Expand Down
17 changes: 2 additions & 15 deletions demo/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Also licensed under MIT license, at your choice.
// Copyright 2022 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

use std::{fs, time::Instant};

Expand Down
2 changes: 1 addition & 1 deletion src/import.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2023 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

use crate::model::animated::Position;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2023 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

/// Re-export vello.
Expand Down
2 changes: 1 addition & 1 deletion src/model/animated.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2023 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

/*!
Expand Down
2 changes: 1 addition & 1 deletion src/model/fixed.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2023 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

/*!
Expand Down
2 changes: 1 addition & 1 deletion src/model/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2023 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

use vello::kurbo::{self, Affine, PathEl, Point, Shape as _, Size, Vec2};
Expand Down
2 changes: 1 addition & 1 deletion src/model/spline.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2023 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

use vello::kurbo::{PathEl, Point};
Expand Down
2 changes: 1 addition & 1 deletion src/model/value.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2023 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

use vello::kurbo;
Expand Down
2 changes: 1 addition & 1 deletion src/render.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 Google LLC
// Copyright 2023 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

use super::{model::*, Composition};
Expand Down

0 comments on commit de61b32

Please sign in to comment.