Moved to my Gitea and made it buildable.
This commit is contained in:
parent
a50136d2c5
commit
df428b96ce
4
cache/cache_object.go
vendored
4
cache/cache_object.go
vendored
@ -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 {
|
||||
|
6
cache/cache_profiles.go
vendored
6
cache/cache_profiles.go
vendored
@ -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) {
|
||||
|
6
cache/cache_servers.go
vendored
6
cache/cache_servers.go
vendored
@ -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) {
|
||||
|
6
cache/exported.go
vendored
6
cache/exported.go
vendored
@ -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 (
|
||||
|
@ -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 {
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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 (
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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 (
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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/
|
||||
|
||||
#####################################################################
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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 (
|
||||
|
@ -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 {
|
||||
|
@ -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
|
||||
|
@ -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 (
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 (
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
Reference in New Issue
Block a user