Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* CDPrintable: A program that prints labels with track listings for your CD cases.
* Copyright (C) 2025 Alexander McLean
*
* This source code is licensed under the GNU General Public License v3.0
* found in the LICENSE file in the root directory of this source tree.
*
* This is the main build file.
*/

plugins {
id("java")
id("application")
Expand Down
10 changes: 10 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
/*
* CDPrintable: A program that prints labels with track listings for your CD cases.
* Copyright (C) 2025 Alexander McLean
*
* This source code is licensed under the GNU General Public License v3.0
* found in the LICENSE file in the root directory of this source tree.
*
* This is a settings file for the Gradle build system.
*/

rootProject.name = "CDPrintable"

10 changes: 10 additions & 0 deletions src/main/java/com/CDPrintable/Constants.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* CDPrintable: A program that prints labels with track listings for your CD cases.
* Copyright (C) 2025 Alexander McLean
*
* This source code is licensed under the GNU General Public License v3.0
* found in the LICENSE file in the root directory of this source tree.
*
* This class defines program constants.
*/

package com.CDPrintable;

public class Constants {
Expand Down
10 changes: 10 additions & 0 deletions src/main/java/com/CDPrintable/Main.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* CDPrintable: A program that prints labels with track listings for your CD cases.
* Copyright (C) 2025 Alexander McLean
*
* This source code is licensed under the GNU General Public License v3.0
* found in the LICENSE file in the root directory of this source tree.
*
* This class contains the main method to run the program.
*/

package com.CDPrintable;

public class Main {
Expand Down
10 changes: 10 additions & 0 deletions src/main/java/com/CDPrintable/MusicBrainzRequest.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* CDPrintable: A program that prints labels with track listings for your CD cases.
* Copyright (C) 2025 Alexander McLean
*
* This source code is licensed under the GNU General Public License v3.0
* found in the LICENSE file in the root directory of this source tree.
*
* This class helps you build a URL request to the MusicBrainz API.
*/

package com.CDPrintable;

/**
Expand Down
10 changes: 10 additions & 0 deletions src/main/java/com/CDPrintable/ProgramWindow.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* CDPrintable: A program that prints labels with track listings for your CD cases.
* Copyright (C) 2025 Alexander McLean
*
* This source code is licensed under the GNU General Public License v3.0
* found in the LICENSE file in the root directory of this source tree.
*
* This class creates the main window for the program.
*/

package com.CDPrintable;

import javax.swing.*;
Expand Down
10 changes: 10 additions & 0 deletions src/main/java/com/CDPrintable/UserAgent.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* CDPrintable: A program that prints labels with track listings for your CD cases.
* Copyright (C) 2025 Alexander McLean
*
* This source code is licensed under the GNU General Public License v3.0
* found in the LICENSE file in the root directory of this source tree.
*
* This class store User Agent information.
*/

package com.CDPrintable;

import javax.swing.JLabel;
Expand Down
10 changes: 10 additions & 0 deletions src/main/java/com/CDPrintable/WebRequest.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
* CDPrintable: A program that prints labels with track listings for your CD cases.
* Copyright (C) 2025 Alexander McLean
*
* This source code is licensed under the GNU General Public License v3.0
* found in the LICENSE file in the root directory of this source tree.
*
* This class sends web requests and returns the result.
*/

package com.CDPrintable;

import java.io.BufferedReader;
Expand Down