From 24e9bdb81311a4e0d8956906ca6f7bc80f7c2111 Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Tue, 16 Aug 2016 08:07:31 +0200 Subject: rename github account --- LICENSE | 2 +- README.markdown | 8 ++++---- biome_info_editor.go | 2 +- biome_infos.go | 2 +- block_infos.go | 2 +- leveldat.go | 2 +- main.go | 8 ++++---- mapwidget.go | 2 +- region_cached.go | 2 +- region_wrapper.go | 2 +- tools.go | 2 +- 11 files changed, 17 insertions(+), 17 deletions(-) diff --git a/LICENSE b/LICENSE index c11fdc0..4320247 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2013 Kevin Chabowski +Copyright (c) 2013 Laria Carolin Chabowski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.markdown b/README.markdown index 956e079..3e43838 100644 --- a/README.markdown +++ b/README.markdown @@ -22,8 +22,8 @@ Although everything seems to work, please make a backup of your maps, just in ca ## Precompiled versions -* Linux (64bit): [biomed-linux64.tar.bz2](http://kch42.de/progs/biomed/biomed-linux64.tar.bz2) -* Windows (32bit, tested with Win8): [biomed-win32.zip](http://kch42.de/progs/biomed/biomed-win32.zip) +* Linux (64bit): [biomed-linux64.tar.bz2](http://hi-im.laria.me/progs/biomed/biomed-linux64.tar.bz2) +* Windows (32bit, tested with Win8): [biomed-win32.zip](http://hi-im.laria.me/progs/biomed/biomed-win32.zip) ## Dependencies / System Requirements @@ -39,7 +39,7 @@ You will need Go (1.1 or greater) and the development files for GTK 2.x. Both sh Create a directory that contains the directories `bin`, `src` and `pkg` and set the `GOPATH` environment variable to that directory. -Then compiling is done by running: `go get github.com/kch42/biomed` +Then compiling is done by running: `go get github.com/silvasur/biomed` ### Windows @@ -49,4 +49,4 @@ Create a directory that contains the directories `bin`, `src` and `pkg` and set Follow these instructions for installing go-gtk: [http://stackoverflow.com/questions/16999498/how-to-set-up-gtk-for-go/17042596#17042596](http://stackoverflow.com/questions/16999498/how-to-set-up-gtk-for-go/17042596#17042596) -Then compiling is done by running: `go get github.com/kch42/biomed` +Then compiling is done by running: `go get github.com/silvasur/biomed` diff --git a/biome_info_editor.go b/biome_info_editor.go index 61a1d7e..2152a29 100644 --- a/biome_info_editor.go +++ b/biome_info_editor.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "github.com/kch42/gomcmap/mcmap" + "github.com/silvasur/gomcmap/mcmap" "github.com/mattn/go-gtk/gdk" "github.com/mattn/go-gtk/glib" "github.com/mattn/go-gtk/gtk" diff --git a/biome_infos.go b/biome_infos.go index e91ed2d..7cc2dab 100644 --- a/biome_infos.go +++ b/biome_infos.go @@ -3,7 +3,7 @@ package main import ( "bufio" "fmt" - "github.com/kch42/gomcmap/mcmap" + "github.com/silvasur/gomcmap/mcmap" "github.com/mattn/go-gtk/gdk" "io" "strconv" diff --git a/block_infos.go b/block_infos.go index 0c1c34b..92b9882 100644 --- a/block_infos.go +++ b/block_infos.go @@ -1,7 +1,7 @@ package main import ( - "github.com/kch42/gomcmap/mcmap" + "github.com/silvasur/gomcmap/mcmap" "github.com/mattn/go-gtk/gdk" ) diff --git a/leveldat.go b/leveldat.go index 51344a8..520a107 100644 --- a/leveldat.go +++ b/leveldat.go @@ -3,7 +3,7 @@ package main import ( "errors" "fmt" - "github.com/kch42/gonbt/nbt" + "github.com/silvasur/gonbt/nbt" "io" ) diff --git a/main.go b/main.go index 37f1a1e..5c12809 100644 --- a/main.go +++ b/main.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "github.com/kch42/gomcmap/mcmap" + "github.com/silvasur/gomcmap/mcmap" "github.com/mattn/go-gtk/gdk" "github.com/mattn/go-gtk/glib" "github.com/mattn/go-gtk/gtk" @@ -79,9 +79,9 @@ func (g *GUI) aboutDlg() { dlg.SetProgramName("biomed") dlg.SetComments("A Minecraft Biome Editor") dlg.SetVersion("β") - dlg.SetCopyright("© 2013 by Kevin Chabowski") - dlg.SetAuthors([]string{"Kevin Chabowski "}) - dlg.SetLicense(`Copyright (c) 2013 Kevin Chabowski + dlg.SetCopyright("© 2013 by Laria Carolin Chabowski") + dlg.SetAuthors([]string{"Laria Carolin Chabowski "}) + dlg.SetLicense(`Copyright (c) 2013 Laria Carolin Chabowski Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/mapwidget.go b/mapwidget.go index 8fc2b71..454af85 100644 --- a/mapwidget.go +++ b/mapwidget.go @@ -1,7 +1,7 @@ package main import ( - "github.com/kch42/gomcmap/mcmap" + "github.com/silvasur/gomcmap/mcmap" "github.com/mattn/go-gtk/gdk" "github.com/mattn/go-gtk/glib" "github.com/mattn/go-gtk/gtk" diff --git a/region_cached.go b/region_cached.go index 2d04c93..09ee0e5 100644 --- a/region_cached.go +++ b/region_cached.go @@ -3,7 +3,7 @@ package main import ( "errors" "fmt" - "github.com/kch42/gomcmap/mcmap" + "github.com/silvasur/gomcmap/mcmap" ) type CachedRegion struct { diff --git a/region_wrapper.go b/region_wrapper.go index d27d1ad..5e737c2 100644 --- a/region_wrapper.go +++ b/region_wrapper.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "github.com/kch42/gomcmap/mcmap" + "github.com/silvasur/gomcmap/mcmap" "github.com/mattn/go-gtk/gdk" ) diff --git a/tools.go b/tools.go index a24d696..fa14db2 100644 --- a/tools.go +++ b/tools.go @@ -1,7 +1,7 @@ package main import ( - "github.com/kch42/gomcmap/mcmap" + "github.com/silvasur/gomcmap/mcmap" ) type BiomeGetSetter interface { -- cgit v1.2.3