From 497e90a4fe52d3b8eb259f84263ce64613ccb907 Mon Sep 17 00:00:00 2001 From: Ahoys123 Date: Mon, 2 Jan 2023 18:46:41 -0800 Subject: [PATCH] added copyright comment --- tscreen_term.go | 14 ++++++++++++++ tscreen_web.go | 14 ++++++++++++++ webfiles/tcell.js | 14 ++++++++++++++ 3 files changed, 42 insertions(+) diff --git a/tscreen_term.go b/tscreen_term.go index a9e172e..09fa771 100644 --- a/tscreen_term.go +++ b/tscreen_term.go @@ -1,3 +1,17 @@ +// Copyright 2023 The TCell Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use file except in compliance with the License. +// You may obtain a copy of the license at +// +// http://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. + //go:build !js || !wasm // +build !js !wasm diff --git a/tscreen_web.go b/tscreen_web.go index 58fc482..a34e70b 100644 --- a/tscreen_web.go +++ b/tscreen_web.go @@ -1,3 +1,17 @@ +// Copyright 2023 The TCell Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use file except in compliance with the License. +// You may obtain a copy of the license at +// +// http://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. + //go:build js && wasm // +build js,wasm diff --git a/webfiles/tcell.js b/webfiles/tcell.js index 27e6000..8d81555 100644 --- a/webfiles/tcell.js +++ b/webfiles/tcell.js @@ -1,3 +1,17 @@ +// Copyright 2023 The TCell Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use file except in compliance with the License. +// You may obtain a copy of the license at +// +// http://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. + const term = document.getElementById("terminal") var width = 80; var height = 24 const beepAudio = new Audio("beep.wav");