Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
code: add copyright notice
Browse files Browse the repository at this point in the history
  • Loading branch information
gucio321 committed Oct 23, 2022
1 parent 71b011b commit 70ad645
Show file tree
Hide file tree
Showing 12 changed files with 84 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cmd/constitutor/generate_windows.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
//go:build windows
// +build windows

/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

package main

//go:generate x86_64-w64-mingw32-windres *.rc -O coff -o windows.syso
7 changes: 7 additions & 0 deletions cmd/constitutor/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

// goversioninfo is https://github.com/josephspurrier/goversioninfo/
//
// //go:generate goversioninfo -icon=icon.ico -platform-specific=true
Expand Down
7 changes: 7 additions & 0 deletions internal/assets/assets.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

// Package assets uses go:embed to embed asset into the binary
// and shares it with other packages.
package assets
Expand Down
7 changes: 7 additions & 0 deletions internal/assets/css/stylesheet.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

main {
background-color: rgb(61, 61, 61);
popup-background-color: rgb(128, 128, 128);
Expand Down
7 changes: 7 additions & 0 deletions pkg/app/app.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

// Package app contains the main UI logic for ConstiTutor.
// For stylesheet see internal/assets/css.
package app
Expand Down
7 changes: 7 additions & 0 deletions pkg/app/helpers.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

package app

import (
Expand Down
7 changes: 7 additions & 0 deletions pkg/app/popupManager.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

package app

import (
Expand Down
7 changes: 7 additions & 0 deletions pkg/app/rendering.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

package app

import (
Expand Down
7 changes: 7 additions & 0 deletions pkg/app/search.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

package app

import (
Expand Down
7 changes: 7 additions & 0 deletions pkg/data/data.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

// Package data contains logic used for importing json data about
// legal acts.
package data
Expand Down
7 changes: 7 additions & 0 deletions pkg/data/importer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

package data

import "embed"
Expand Down
7 changes: 7 additions & 0 deletions pkg/data/txt_importer.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/*
* Copyright (c) 2022. The Greater Heptavirate (https://github.com/TheGreaterHeptavirate). All Rights Reservet
*
* All copies of this software (if not stated otherway) are dedicated
* ONLY to personal, non-commercial use.
*/

package data

import (
Expand Down

0 comments on commit 70ad645

Please sign in to comment.