diff --git a/c/Makefile b/c/Makefile index bec4e5e..e19ed1d 100644 --- a/c/Makefile +++ b/c/Makefile @@ -1,10 +1,9 @@ # # Makefile for QR Code generator (C) # -# Copyright (c) Project Nayuki +# Copyright (c) Project Nayuki. (MIT License) # https://www.nayuki.io/page/qr-code-generator-library # -# (MIT License) # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (the "Software"), to deal in # the Software without restriction, including without limitation the rights to diff --git a/c/qrcodegen-demo.c b/c/qrcodegen-demo.c index 43b08d6..1a0eb96 100644 --- a/c/qrcodegen-demo.c +++ b/c/qrcodegen-demo.c @@ -4,10 +4,9 @@ * Run this command-line program with no arguments. The program * computes a demonstration QR Codes and print it to the console. * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/c/qrcodegen-test.c b/c/qrcodegen-test.c index b4f8534..f510ed0 100644 --- a/c/qrcodegen-test.c +++ b/c/qrcodegen-test.c @@ -4,10 +4,9 @@ * When compiling this program, the library qrcodegen.c needs QRCODEGEN_TEST * to be defined. Run this command line program with no arguments. * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/c/qrcodegen-worker.c b/c/qrcodegen-worker.c index 34bf8ba..299dd10 100644 --- a/c/qrcodegen-worker.c +++ b/c/qrcodegen-worker.c @@ -6,10 +6,9 @@ * Run with no command line arguments. The program is intended for automated * batch testing of end-to-end functionality of this QR Code generator library. * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/c/qrcodegen.c b/c/qrcodegen.c index d4afc44..8168063 100644 --- a/c/qrcodegen.c +++ b/c/qrcodegen.c @@ -1,10 +1,9 @@ /* * QR Code generator library (C) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/c/qrcodegen.h b/c/qrcodegen.h index e80b2eb..f53e696 100644 --- a/c/qrcodegen.h +++ b/c/qrcodegen.h @@ -1,10 +1,9 @@ /* * QR Code generator library (C) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/cpp/BitBuffer.cpp b/cpp/BitBuffer.cpp index 21b589a..a2e59b5 100644 --- a/cpp/BitBuffer.cpp +++ b/cpp/BitBuffer.cpp @@ -1,10 +1,9 @@ /* * QR Code generator library (C++) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/cpp/BitBuffer.hpp b/cpp/BitBuffer.hpp index 6ced98c..56069dd 100644 --- a/cpp/BitBuffer.hpp +++ b/cpp/BitBuffer.hpp @@ -1,10 +1,9 @@ /* * QR Code generator library (C++) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/cpp/Makefile b/cpp/Makefile index e9b93b3..151a4da 100644 --- a/cpp/Makefile +++ b/cpp/Makefile @@ -1,10 +1,9 @@ # # Makefile for QR Code generator (C++) # -# Copyright (c) Project Nayuki +# Copyright (c) Project Nayuki. (MIT License) # https://www.nayuki.io/page/qr-code-generator-library # -# (MIT License) # Permission is hereby granted, free of charge, to any person obtaining a copy of # this software and associated documentation files (the "Software"), to deal in # the Software without restriction, including without limitation the rights to diff --git a/cpp/QrCode.cpp b/cpp/QrCode.cpp index 30def78..6d6913e 100644 --- a/cpp/QrCode.cpp +++ b/cpp/QrCode.cpp @@ -1,10 +1,9 @@ /* * QR Code generator library (C++) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/cpp/QrCode.hpp b/cpp/QrCode.hpp index a3bdc72..2df850d 100644 --- a/cpp/QrCode.hpp +++ b/cpp/QrCode.hpp @@ -1,10 +1,9 @@ /* * QR Code generator library (C++) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/cpp/QrCodeGeneratorDemo.cpp b/cpp/QrCodeGeneratorDemo.cpp index 0ea7205..e0719c1 100644 --- a/cpp/QrCodeGeneratorDemo.cpp +++ b/cpp/QrCodeGeneratorDemo.cpp @@ -4,10 +4,9 @@ * Run this command-line program with no arguments. The program computes a bunch of demonstration * QR Codes and prints them to the console. Also, the SVG code for one QR Code is printed as a sample. * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/cpp/QrCodeGeneratorWorker.cpp b/cpp/QrCodeGeneratorWorker.cpp index 6fc415b..fe89385 100644 --- a/cpp/QrCodeGeneratorWorker.cpp +++ b/cpp/QrCodeGeneratorWorker.cpp @@ -6,10 +6,9 @@ * Run with no command line arguments. The program is intended for automated * batch testing of end-to-end functionality of this QR Code generator library. * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/cpp/QrSegment.cpp b/cpp/QrSegment.cpp index d021dfc..f96ec1a 100644 --- a/cpp/QrSegment.cpp +++ b/cpp/QrSegment.cpp @@ -1,10 +1,9 @@ /* * QR Code generator library (C++) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/cpp/QrSegment.hpp b/cpp/QrSegment.hpp index 77ed910..0ed9a5a 100644 --- a/cpp/QrSegment.hpp +++ b/cpp/QrSegment.hpp @@ -1,10 +1,9 @@ /* * QR Code generator library (C++) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/java/io/nayuki/qrcodegen/BitBuffer.java b/java/io/nayuki/qrcodegen/BitBuffer.java index 4c5d0ee..d94cdbf 100644 --- a/java/io/nayuki/qrcodegen/BitBuffer.java +++ b/java/io/nayuki/qrcodegen/BitBuffer.java @@ -1,10 +1,9 @@ /* * QR Code generator library (Java) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/java/io/nayuki/qrcodegen/QrCode.java b/java/io/nayuki/qrcodegen/QrCode.java index 5cdb34c..4b3d8b3 100644 --- a/java/io/nayuki/qrcodegen/QrCode.java +++ b/java/io/nayuki/qrcodegen/QrCode.java @@ -1,10 +1,9 @@ /* * QR Code generator library (Java) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/java/io/nayuki/qrcodegen/QrCodeGeneratorDemo.java b/java/io/nayuki/qrcodegen/QrCodeGeneratorDemo.java index 298fb2e..6a7e84c 100644 --- a/java/io/nayuki/qrcodegen/QrCodeGeneratorDemo.java +++ b/java/io/nayuki/qrcodegen/QrCodeGeneratorDemo.java @@ -4,10 +4,9 @@ * Run this command-line program with no arguments. The program creates/overwrites a bunch of * PNG and SVG files in the current working directory to demonstrate the creation of QR Codes. * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/java/io/nayuki/qrcodegen/QrCodeGeneratorWorker.java b/java/io/nayuki/qrcodegen/QrCodeGeneratorWorker.java index 9df60a8..818ff18 100644 --- a/java/io/nayuki/qrcodegen/QrCodeGeneratorWorker.java +++ b/java/io/nayuki/qrcodegen/QrCodeGeneratorWorker.java @@ -6,10 +6,9 @@ * Run with no command line arguments. The program is intended for automated * batch testing of end-to-end functionality of this QR Code generator library. * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/java/io/nayuki/qrcodegen/QrSegment.java b/java/io/nayuki/qrcodegen/QrSegment.java index 6c0ff5a..058ac92 100644 --- a/java/io/nayuki/qrcodegen/QrSegment.java +++ b/java/io/nayuki/qrcodegen/QrSegment.java @@ -1,10 +1,9 @@ /* * QR Code generator library (Java) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/java/io/nayuki/qrcodegen/QrSegmentAdvanced.java b/java/io/nayuki/qrcodegen/QrSegmentAdvanced.java index 8a65084..39c6563 100644 --- a/java/io/nayuki/qrcodegen/QrSegmentAdvanced.java +++ b/java/io/nayuki/qrcodegen/QrSegmentAdvanced.java @@ -1,10 +1,9 @@ /* * QR Code generator library - Optional advanced logic (Java) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/javascript/qrcodegen-demo.js b/javascript/qrcodegen-demo.js index b9caba1..ddf6a6e 100644 --- a/javascript/qrcodegen-demo.js +++ b/javascript/qrcodegen-demo.js @@ -1,10 +1,9 @@ /* * QR Code generator demo (JavaScript) * - * Copyright (c) Project Nayuki + * Copyright (c) Project Nayuki. (MIT License) * https://www.nayuki.io/page/qr-code-generator-library * - * (MIT License) * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in * the Software without restriction, including without limitation the rights to diff --git a/javascript/qrcodegen-js-demo.html b/javascript/qrcodegen-js-demo.html index 962f4f3..61b5317 100644 --- a/javascript/qrcodegen-js-demo.html +++ b/javascript/qrcodegen-js-demo.html @@ -1,10 +1,9 @@