Moved to my Gitea and made it buildable.

This commit is contained in:
Stanislav Nikitin 2019-12-29 13:21:05 +05:00
parent a50136d2c5
commit df428b96ce
56 changed files with 106 additions and 106 deletions

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -31,7 +31,7 @@ import (
"sync" "sync"
// local // local
"gitlab.com/pztrn/urtrator/cachemodels" "go.dev.pztrn.name/urtrator/cachemodels"
) )
type Cache struct { type Cache struct {

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -31,8 +31,8 @@ import (
"strconv" "strconv"
// local // local
"gitlab.com/pztrn/urtrator/cachemodels" "go.dev.pztrn.name/urtrator/cachemodels"
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
) )
func (c *Cache) CreateProfile(name string) { func (c *Cache) CreateProfile(name string) {

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -30,8 +30,8 @@ import (
"fmt" "fmt"
// local // local
"gitlab.com/pztrn/urtrator/cachemodels" "go.dev.pztrn.name/urtrator/cachemodels"
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
) )
func (c *Cache) CreateServer(addr string) { func (c *Cache) CreateServer(addr string) {

6
cache/exported.go vendored
View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -27,8 +27,8 @@ package cache
import ( import (
// local // local
"gitlab.com/pztrn/urtrator/database" "go.dev.pztrn.name/urtrator/database"
event "gitlab.com/pztrn/urtrator/eventer" event "go.dev.pztrn.name/urtrator/eventer"
) )
var ( var (

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -27,7 +27,7 @@ package cachemodels
import ( import (
// local // local
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
) )
type Profile struct { type Profile struct {

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -27,7 +27,7 @@ package cachemodels
import ( import (
// local // local
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
// Other // Other
"github.com/mattn/go-gtk/gtk" "github.com/mattn/go-gtk/gtk"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -27,8 +27,8 @@ package clipboardwatcher
import ( import (
// local // local
"gitlab.com/pztrn/urtrator/cache" "go.dev.pztrn.name/urtrator/cache"
"gitlab.com/pztrn/urtrator/eventer" "go.dev.pztrn.name/urtrator/eventer"
) )
var ( var (

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -31,16 +31,16 @@ import (
"fmt" "fmt"
// local // local
"gitlab.com/pztrn/urtrator/cache" "go.dev.pztrn.name/urtrator/cache"
"gitlab.com/pztrn/urtrator/clipboardwatcher" "go.dev.pztrn.name/urtrator/clipboardwatcher"
"gitlab.com/pztrn/urtrator/colorizer" "go.dev.pztrn.name/urtrator/colorizer"
"gitlab.com/pztrn/urtrator/configuration" "go.dev.pztrn.name/urtrator/configuration"
"gitlab.com/pztrn/urtrator/database" "go.dev.pztrn.name/urtrator/database"
"gitlab.com/pztrn/urtrator/eventer" "go.dev.pztrn.name/urtrator/eventer"
"gitlab.com/pztrn/urtrator/launcher" "go.dev.pztrn.name/urtrator/launcher"
"gitlab.com/pztrn/urtrator/requester" "go.dev.pztrn.name/urtrator/requester"
"gitlab.com/pztrn/urtrator/timer" "go.dev.pztrn.name/urtrator/timer"
"gitlab.com/pztrn/urtrator/translator" "go.dev.pztrn.name/urtrator/translator"
// Github // Github
"github.com/mattn/go-gtk/gtk" "github.com/mattn/go-gtk/gtk"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -34,8 +34,8 @@ import (
"strconv" "strconv"
// local // local
"gitlab.com/pztrn/urtrator/configuration" "go.dev.pztrn.name/urtrator/configuration"
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
// Other // Other
"github.com/jmoiron/sqlx" "github.com/jmoiron/sqlx"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -27,7 +27,7 @@ package database
import ( import (
// Local // Local
"gitlab.com/pztrn/urtrator/configuration" "go.dev.pztrn.name/urtrator/configuration"
) )
var ( var (

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -51,7 +51,7 @@ fi
# Okay, let's compile. # Okay, let's compile.
echo "Building URTrator..." echo "Building URTrator..."
go install -v gitlab.com/pztrn/urtrator go install -v go.dev.pztrn.name/urtrator
if [ $? -ne 0 ]; then 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!" echo "Failed to build URTrator! Please, create a new bug report at https://github.com/pztrn/urtrator and attach FULL console output!"
exit 1 exit 1
@ -62,7 +62,7 @@ mkdir -p URTrator.app/Contents/{MacOS,Framework,Resources}
# Copying URTrator binary # Copying URTrator binary
cp $GOPATH/bin/urtrator URTrator.app/Contents/MacOS/ cp $GOPATH/bin/urtrator URTrator.app/Contents/MacOS/
# Copying main resources. # 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/ cp -R ./Resources/themes ./URTrator.app/Contents/Resources/
##################################################################### #####################################################################

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -37,7 +37,7 @@ import (
"strings" "strings"
// local // local
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
// Github // Github
"github.com/mattn/go-gtk/gtk" "github.com/mattn/go-gtk/gtk"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -30,10 +30,10 @@ import (
"fmt" "fmt"
// local // local
"gitlab.com/pztrn/urtrator/cache" "go.dev.pztrn.name/urtrator/cache"
"gitlab.com/pztrn/urtrator/configuration" "go.dev.pztrn.name/urtrator/configuration"
"gitlab.com/pztrn/urtrator/eventer" "go.dev.pztrn.name/urtrator/eventer"
"gitlab.com/pztrn/urtrator/timer" "go.dev.pztrn.name/urtrator/timer"
) )
var ( var (

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -37,7 +37,7 @@ import (
"time" "time"
// local // local
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
) )
type Pooler struct { type Pooler struct {

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -30,8 +30,8 @@ import (
"fmt" "fmt"
// local // local
"gitlab.com/pztrn/urtrator/configuration" "go.dev.pztrn.name/urtrator/configuration"
"gitlab.com/pztrn/urtrator/eventer" "go.dev.pztrn.name/urtrator/eventer"
) )
var ( var (

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -3,7 +3,7 @@
# URTrator - Urban Terror server browser and game launcher, written in # URTrator - Urban Terror server browser and game launcher, written in
# Go. # 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. # URTrator contributors.
# #
# Permission is hereby granted, free of charge, to any person obtaining # Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -27,7 +27,7 @@ package translator
import ( import (
// local // local
"gitlab.com/pztrn/urtrator/configuration" "go.dev.pztrn.name/urtrator/configuration"
) )
var ( var (

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -27,7 +27,7 @@ package ui
import ( import (
// local // local
"gitlab.com/pztrn/urtrator/common" "go.dev.pztrn.name/urtrator/common"
// other // other
"github.com/mattn/go-gtk/gtk" "github.com/mattn/go-gtk/gtk"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -27,7 +27,7 @@ package ui
import ( import (
// local // local
"gitlab.com/pztrn/urtrator/context" "go.dev.pztrn.name/urtrator/context"
// Other // Other
"github.com/mattn/go-gtk/gdkpixbuf" "github.com/mattn/go-gtk/gdkpixbuf"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -34,9 +34,9 @@ import (
"strings" "strings"
// Local // Local
"gitlab.com/pztrn/urtrator/cachemodels" "go.dev.pztrn.name/urtrator/cachemodels"
"gitlab.com/pztrn/urtrator/common" "go.dev.pztrn.name/urtrator/common"
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
// Other // Other
"github.com/mattn/go-gtk/gdkpixbuf" "github.com/mattn/go-gtk/gdkpixbuf"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -34,8 +34,8 @@ import (
"strings" "strings"
// Local // Local
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
"gitlab.com/pztrn/urtrator/ioq3dataparser" "go.dev.pztrn.name/urtrator/ioq3dataparser"
// Other // Other
"github.com/mattn/go-gtk/gdkpixbuf" "github.com/mattn/go-gtk/gdkpixbuf"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -34,8 +34,8 @@ import (
"strconv" "strconv"
// local // local
"gitlab.com/pztrn/urtrator/common" "go.dev.pztrn.name/urtrator/common"
"gitlab.com/pztrn/urtrator/timer" "go.dev.pztrn.name/urtrator/timer"
// Other // Other
"github.com/mattn/go-gtk/gdkpixbuf" "github.com/mattn/go-gtk/gdkpixbuf"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -33,7 +33,7 @@ import (
"strings" "strings"
// Local // Local
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
// other // other
"github.com/mattn/go-gtk/glib" "github.com/mattn/go-gtk/glib"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -31,7 +31,7 @@ import (
"runtime" "runtime"
// Local // Local
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
// Other // Other
"github.com/mattn/go-gtk/glib" "github.com/mattn/go-gtk/glib"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -33,7 +33,7 @@ import (
"strings" "strings"
// Local // Local
"gitlab.com/pztrn/urtrator/datamodels" "go.dev.pztrn.name/urtrator/datamodels"
// Other // Other
"github.com/mattn/go-gtk/gtk" "github.com/mattn/go-gtk/gtk"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -31,7 +31,7 @@ import (
"sort" "sort"
// Local // Local
"gitlab.com/pztrn/urtrator/ioq3dataparser" "go.dev.pztrn.name/urtrator/ioq3dataparser"
// Other // Other
"github.com/mattn/go-gtk/glib" "github.com/mattn/go-gtk/glib"

View File

@ -1,7 +1,7 @@
// URTrator - Urban Terror server browser and game launcher, written in // URTrator - Urban Terror server browser and game launcher, written in
// Go. // 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. // URTrator contributors.
// //
// Permission is hereby granted, free of charge, to any person obtaining // Permission is hereby granted, free of charge, to any person obtaining
@ -27,9 +27,9 @@ package main
import ( import (
// local // local
"gitlab.com/pztrn/urtrator/common" "go.dev.pztrn.name/urtrator/common"
"gitlab.com/pztrn/urtrator/context" "go.dev.pztrn.name/urtrator/context"
"gitlab.com/pztrn/urtrator/ui/gtk2" "go.dev.pztrn.name/urtrator/ui/gtk2"
// stdlib // stdlib
"fmt" "fmt"