diff --git a/cache/cache_object.go b/cache/cache_object.go index 5c329e0..7835d34 100644 --- a/cache/cache_object.go +++ b/cache/cache_object.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -31,7 +31,7 @@ import ( "sync" // local - "gitlab.com/pztrn/urtrator/cachemodels" + "go.dev.pztrn.name/urtrator/cachemodels" ) type Cache struct { diff --git a/cache/cache_profiles.go b/cache/cache_profiles.go index 6653b8e..46649d5 100644 --- a/cache/cache_profiles.go +++ b/cache/cache_profiles.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -31,8 +31,8 @@ import ( "strconv" // local - "gitlab.com/pztrn/urtrator/cachemodels" - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/cachemodels" + "go.dev.pztrn.name/urtrator/datamodels" ) func (c *Cache) CreateProfile(name string) { diff --git a/cache/cache_servers.go b/cache/cache_servers.go index 9dd6ccb..c8f6655 100644 --- a/cache/cache_servers.go +++ b/cache/cache_servers.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -30,8 +30,8 @@ import ( "fmt" // local - "gitlab.com/pztrn/urtrator/cachemodels" - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/cachemodels" + "go.dev.pztrn.name/urtrator/datamodels" ) func (c *Cache) CreateServer(addr string) { diff --git a/cache/exported.go b/cache/exported.go index 7eace62..2de0850 100644 --- a/cache/exported.go +++ b/cache/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,8 +27,8 @@ package cache import ( // local - "gitlab.com/pztrn/urtrator/database" - event "gitlab.com/pztrn/urtrator/eventer" + "go.dev.pztrn.name/urtrator/database" + event "go.dev.pztrn.name/urtrator/eventer" ) var ( diff --git a/cachemodels/profile.go b/cachemodels/profile.go index 614ee51..1a31bf6 100644 --- a/cachemodels/profile.go +++ b/cachemodels/profile.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,7 +27,7 @@ package cachemodels import ( // local - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/datamodels" ) type Profile struct { diff --git a/cachemodels/server.go b/cachemodels/server.go index 7c83e1d..903ad0b 100644 --- a/cachemodels/server.go +++ b/cachemodels/server.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,7 +27,7 @@ package cachemodels import ( // local - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/datamodels" // Other "github.com/mattn/go-gtk/gtk" diff --git a/clipboardwatcher/clipboardwatcher_object.go b/clipboardwatcher/clipboardwatcher_object.go index a9334a1..22df054 100644 --- a/clipboardwatcher/clipboardwatcher_object.go +++ b/clipboardwatcher/clipboardwatcher_object.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/clipboardwatcher/exported.go b/clipboardwatcher/exported.go index e613c56..0705e0a 100644 --- a/clipboardwatcher/exported.go +++ b/clipboardwatcher/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,8 +27,8 @@ package clipboardwatcher import ( // local - "gitlab.com/pztrn/urtrator/cache" - "gitlab.com/pztrn/urtrator/eventer" + "go.dev.pztrn.name/urtrator/cache" + "go.dev.pztrn.name/urtrator/eventer" ) var ( diff --git a/colorizer/colorizer_object.go b/colorizer/colorizer_object.go index 77e02c1..529a25c 100644 --- a/colorizer/colorizer_object.go +++ b/colorizer/colorizer_object.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/colorizer/exported.go b/colorizer/exported.go index 87b5aaa..c24e60b 100644 --- a/colorizer/exported.go +++ b/colorizer/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/common/const.go b/common/const.go index 8757303..ca89db4 100644 --- a/common/const.go +++ b/common/const.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/common/logo.go b/common/logo.go index c501f57..367c376 100644 --- a/common/logo.go +++ b/common/logo.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/common/server_list_icons.go b/common/server_list_icons.go index cd7e774..ebd8548 100644 --- a/common/server_list_icons.go +++ b/common/server_list_icons.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/common/toolbar_icons.go b/common/toolbar_icons.go index 359be5f..d4e6d33 100644 --- a/common/toolbar_icons.go +++ b/common/toolbar_icons.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/configuration/config_object.go b/configuration/config_object.go index 6a04c26..2edb79e 100644 --- a/configuration/config_object.go +++ b/configuration/config_object.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/configuration/exported.go b/configuration/exported.go index 1408599..e5c7cbc 100644 --- a/configuration/exported.go +++ b/configuration/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/context/context_object.go b/context/context_object.go index dbe323b..e1493b6 100644 --- a/context/context_object.go +++ b/context/context_object.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -31,16 +31,16 @@ import ( "fmt" // local - "gitlab.com/pztrn/urtrator/cache" - "gitlab.com/pztrn/urtrator/clipboardwatcher" - "gitlab.com/pztrn/urtrator/colorizer" - "gitlab.com/pztrn/urtrator/configuration" - "gitlab.com/pztrn/urtrator/database" - "gitlab.com/pztrn/urtrator/eventer" - "gitlab.com/pztrn/urtrator/launcher" - "gitlab.com/pztrn/urtrator/requester" - "gitlab.com/pztrn/urtrator/timer" - "gitlab.com/pztrn/urtrator/translator" + "go.dev.pztrn.name/urtrator/cache" + "go.dev.pztrn.name/urtrator/clipboardwatcher" + "go.dev.pztrn.name/urtrator/colorizer" + "go.dev.pztrn.name/urtrator/configuration" + "go.dev.pztrn.name/urtrator/database" + "go.dev.pztrn.name/urtrator/eventer" + "go.dev.pztrn.name/urtrator/launcher" + "go.dev.pztrn.name/urtrator/requester" + "go.dev.pztrn.name/urtrator/timer" + "go.dev.pztrn.name/urtrator/translator" // Github "github.com/mattn/go-gtk/gtk" diff --git a/context/exported.go b/context/exported.go index e1dc173..4c8a668 100644 --- a/context/exported.go +++ b/context/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/database/database_object.go b/database/database_object.go index 2df9a1a..1091708 100644 --- a/database/database_object.go +++ b/database/database_object.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -34,8 +34,8 @@ import ( "strconv" // local - "gitlab.com/pztrn/urtrator/configuration" - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/configuration" + "go.dev.pztrn.name/urtrator/datamodels" // Other "github.com/jmoiron/sqlx" diff --git a/database/exported.go b/database/exported.go index 7980f03..5db2832 100644 --- a/database/exported.go +++ b/database/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,7 +27,7 @@ package database import ( // Local - "gitlab.com/pztrn/urtrator/configuration" + "go.dev.pztrn.name/urtrator/configuration" ) var ( diff --git a/database/migrations.go b/database/migrations.go index e6ac48c..48ad3bb 100644 --- a/database/migrations.go +++ b/database/migrations.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/datamodels/configuration.go b/datamodels/configuration.go index f11f5ea..47eb3af 100644 --- a/datamodels/configuration.go +++ b/datamodels/configuration.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/datamodels/database.go b/datamodels/database.go index 7453613..946f4e4 100644 --- a/datamodels/database.go +++ b/datamodels/database.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/datamodels/profile.go b/datamodels/profile.go index 8b9ec02..86ea2c7 100644 --- a/datamodels/profile.go +++ b/datamodels/profile.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/datamodels/server.go b/datamodels/server.go index f1bb090..2451165 100644 --- a/datamodels/server.go +++ b/datamodels/server.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/doc/installation/macos/make-app.sh b/doc/installation/macos/make-app.sh index b139d44..c490ac8 100755 --- a/doc/installation/macos/make-app.sh +++ b/doc/installation/macos/make-app.sh @@ -51,7 +51,7 @@ fi # Okay, let's compile. echo "Building URTrator..." -go install -v gitlab.com/pztrn/urtrator +go install -v go.dev.pztrn.name/urtrator if [ $? -ne 0 ]; then echo "Failed to build URTrator! Please, create a new bug report at https://github.com/pztrn/urtrator and attach FULL console output!" exit 1 @@ -62,7 +62,7 @@ mkdir -p URTrator.app/Contents/{MacOS,Framework,Resources} # Copying URTrator binary cp $GOPATH/bin/urtrator URTrator.app/Contents/MacOS/ # Copying main resources. -cp $GOPATH/src/gitlab.com/pztrn/urtrator/artwork/urtrator.icns ./URTrator.app/Contents/Resources/ +cp $GOPATH/src/go.dev.pztrn.name/urtrator/artwork/urtrator.icns ./URTrator.app/Contents/Resources/ cp -R ./Resources/themes ./URTrator.app/Contents/Resources/ ##################################################################### diff --git a/eventer/eventer_object.go b/eventer/eventer_object.go index 5dc53f3..772b3ca 100644 --- a/eventer/eventer_object.go +++ b/eventer/eventer_object.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/eventer/exported.go b/eventer/exported.go index 814c7b3..3caf23c 100644 --- a/eventer/exported.go +++ b/eventer/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/ioq3dataparser/exported.go b/ioq3dataparser/exported.go index b925064..2cc1d18 100644 --- a/ioq3dataparser/exported.go +++ b/ioq3dataparser/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/launcher/exported.go b/launcher/exported.go index 036a785..6acdd23 100644 --- a/launcher/exported.go +++ b/launcher/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/launcher/launcher_object.go b/launcher/launcher_object.go index 0e9f2e4..4d791ee 100644 --- a/launcher/launcher_object.go +++ b/launcher/launcher_object.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -37,7 +37,7 @@ import ( "strings" // local - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/datamodels" // Github "github.com/mattn/go-gtk/gtk" diff --git a/requester/exported.go b/requester/exported.go index 9b3aa7b..5ee95bc 100644 --- a/requester/exported.go +++ b/requester/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -30,10 +30,10 @@ import ( "fmt" // local - "gitlab.com/pztrn/urtrator/cache" - "gitlab.com/pztrn/urtrator/configuration" - "gitlab.com/pztrn/urtrator/eventer" - "gitlab.com/pztrn/urtrator/timer" + "go.dev.pztrn.name/urtrator/cache" + "go.dev.pztrn.name/urtrator/configuration" + "go.dev.pztrn.name/urtrator/eventer" + "go.dev.pztrn.name/urtrator/timer" ) var ( diff --git a/requester/pooler.go b/requester/pooler.go index 644e144..ffb8b37 100644 --- a/requester/pooler.go +++ b/requester/pooler.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -37,7 +37,7 @@ import ( "time" // local - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/datamodels" ) type Pooler struct { diff --git a/requester/requester_object.go b/requester/requester_object.go index 7400e30..4a8d719 100644 --- a/requester/requester_object.go +++ b/requester/requester_object.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/timer/exported.go b/timer/exported.go index a02ceef..bd286b4 100644 --- a/timer/exported.go +++ b/timer/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -30,8 +30,8 @@ import ( "fmt" // local - "gitlab.com/pztrn/urtrator/configuration" - "gitlab.com/pztrn/urtrator/eventer" + "go.dev.pztrn.name/urtrator/configuration" + "go.dev.pztrn.name/urtrator/eventer" ) var ( diff --git a/timer/timer.go b/timer/timer.go index 0759c38..5efede9 100644 --- a/timer/timer.go +++ b/timer/timer.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/timer/timertask.go b/timer/timertask.go index b4a719d..bb20b65 100644 --- a/timer/timertask.go +++ b/timer/timertask.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/translations_update.py b/translations_update.py index b720424..99499f1 100755 --- a/translations_update.py +++ b/translations_update.py @@ -3,7 +3,7 @@ # URTrator - Urban Terror server browser and game launcher, written in # Go. # -# Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +# Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and # URTrator contributors. # # Permission is hereby granted, free of charge, to any person obtaining diff --git a/translator/exported.go b/translator/exported.go index f90b02b..b4fbda9 100644 --- a/translator/exported.go +++ b/translator/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,7 +27,7 @@ package translator import ( // local - "gitlab.com/pztrn/urtrator/configuration" + "go.dev.pztrn.name/urtrator/configuration" ) var ( diff --git a/translator/translator.go b/translator/translator.go index 62c78be..fdf097b 100644 --- a/translator/translator.go +++ b/translator/translator.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/translator/translator_unix.go b/translator/translator_unix.go index 4cf88cb..6df09f8 100644 --- a/translator/translator_unix.go +++ b/translator/translator_unix.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/translator/translator_windows.go b/translator/translator_windows.go index 3f15fda..fe05eb2 100644 --- a/translator/translator_windows.go +++ b/translator/translator_windows.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/ui/gtk2/about.go b/ui/gtk2/about.go index 015612c..195ce1b 100644 --- a/ui/gtk2/about.go +++ b/ui/gtk2/about.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,7 +27,7 @@ package ui import ( // local - "gitlab.com/pztrn/urtrator/common" + "go.dev.pztrn.name/urtrator/common" // other "github.com/mattn/go-gtk/gtk" diff --git a/ui/gtk2/exported.go b/ui/gtk2/exported.go index de5cfa9..39fd593 100644 --- a/ui/gtk2/exported.go +++ b/ui/gtk2/exported.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,7 +27,7 @@ package ui import ( // local - "gitlab.com/pztrn/urtrator/context" + "go.dev.pztrn.name/urtrator/context" // Other "github.com/mattn/go-gtk/gdkpixbuf" diff --git a/ui/gtk2/favorite.go b/ui/gtk2/favorite.go index 3cbf68d..402fdee 100644 --- a/ui/gtk2/favorite.go +++ b/ui/gtk2/favorite.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -34,9 +34,9 @@ import ( "strings" // Local - "gitlab.com/pztrn/urtrator/cachemodels" - "gitlab.com/pztrn/urtrator/common" - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/cachemodels" + "go.dev.pztrn.name/urtrator/common" + "go.dev.pztrn.name/urtrator/datamodels" // Other "github.com/mattn/go-gtk/gdkpixbuf" diff --git a/ui/gtk2/mainwindow.go b/ui/gtk2/mainwindow.go index bb60563..1659eeb 100644 --- a/ui/gtk2/mainwindow.go +++ b/ui/gtk2/mainwindow.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -34,8 +34,8 @@ import ( "strings" // Local - "gitlab.com/pztrn/urtrator/datamodels" - "gitlab.com/pztrn/urtrator/ioq3dataparser" + "go.dev.pztrn.name/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/ioq3dataparser" // Other "github.com/mattn/go-gtk/gdkpixbuf" diff --git a/ui/gtk2/mainwindow_helpers.go b/ui/gtk2/mainwindow_helpers.go index 8a69eb3..c957e58 100644 --- a/ui/gtk2/mainwindow_helpers.go +++ b/ui/gtk2/mainwindow_helpers.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/ui/gtk2/mainwindow_init.go b/ui/gtk2/mainwindow_init.go index 9772187..e9e643f 100644 --- a/ui/gtk2/mainwindow_init.go +++ b/ui/gtk2/mainwindow_init.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -34,8 +34,8 @@ import ( "strconv" // local - "gitlab.com/pztrn/urtrator/common" - "gitlab.com/pztrn/urtrator/timer" + "go.dev.pztrn.name/urtrator/common" + "go.dev.pztrn.name/urtrator/timer" // Other "github.com/mattn/go-gtk/gdkpixbuf" diff --git a/ui/gtk2/mainwindow_init_mac.go b/ui/gtk2/mainwindow_init_mac.go index f1c1521..fa6d6bf 100644 --- a/ui/gtk2/mainwindow_init_mac.go +++ b/ui/gtk2/mainwindow_init_mac.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/ui/gtk2/mainwindow_init_win.go b/ui/gtk2/mainwindow_init_win.go index 8fbfd54..48b0223 100644 --- a/ui/gtk2/mainwindow_init_win.go +++ b/ui/gtk2/mainwindow_init_win.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/ui/gtk2/mainwindow_launch.go b/ui/gtk2/mainwindow_launch.go index e8760cb..51bb5d4 100644 --- a/ui/gtk2/mainwindow_launch.go +++ b/ui/gtk2/mainwindow_launch.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -33,7 +33,7 @@ import ( "strings" // Local - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/datamodels" // other "github.com/mattn/go-gtk/glib" diff --git a/ui/gtk2/mainwindow_servers_sorting.go b/ui/gtk2/mainwindow_servers_sorting.go index 3ddd37b..8e4468c 100644 --- a/ui/gtk2/mainwindow_servers_sorting.go +++ b/ui/gtk2/mainwindow_servers_sorting.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining diff --git a/ui/gtk2/options.go b/ui/gtk2/options.go index 588b127..f0d80ec 100644 --- a/ui/gtk2/options.go +++ b/ui/gtk2/options.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -31,7 +31,7 @@ import ( "runtime" // Local - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/datamodels" // Other "github.com/mattn/go-gtk/glib" diff --git a/ui/gtk2/options_profile.go b/ui/gtk2/options_profile.go index 67b2966..44ccb44 100644 --- a/ui/gtk2/options_profile.go +++ b/ui/gtk2/options_profile.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -33,7 +33,7 @@ import ( "strings" // Local - "gitlab.com/pztrn/urtrator/datamodels" + "go.dev.pztrn.name/urtrator/datamodels" // Other "github.com/mattn/go-gtk/gtk" diff --git a/ui/gtk2/server_cvars.go b/ui/gtk2/server_cvars.go index 49006c1..0befb0f 100644 --- a/ui/gtk2/server_cvars.go +++ b/ui/gtk2/server_cvars.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -31,7 +31,7 @@ import ( "sort" // Local - "gitlab.com/pztrn/urtrator/ioq3dataparser" + "go.dev.pztrn.name/urtrator/ioq3dataparser" // Other "github.com/mattn/go-gtk/glib" diff --git a/urtrator.go b/urtrator.go index 4761790..1a6b87b 100644 --- a/urtrator.go +++ b/urtrator.go @@ -1,7 +1,7 @@ // URTrator - Urban Terror server browser and game launcher, written in // Go. // -// Copyright (c) 2016-2018, Stanslav N. a.k.a pztrn (or p0z1tr0n) and +// Copyright (c) 2016-2020, Stanslav N. a.k.a pztrn (or p0z1tr0n) and // URTrator contributors. // // Permission is hereby granted, free of charge, to any person obtaining @@ -27,9 +27,9 @@ package main import ( // local - "gitlab.com/pztrn/urtrator/common" - "gitlab.com/pztrn/urtrator/context" - "gitlab.com/pztrn/urtrator/ui/gtk2" + "go.dev.pztrn.name/urtrator/common" + "go.dev.pztrn.name/urtrator/context" + "go.dev.pztrn.name/urtrator/ui/gtk2" // stdlib "fmt"