From d6e8b2864ec8f9fd398285283790135b8768668a Mon Sep 17 00:00:00 2001 From: cuu Date: Mon, 3 Dec 2018 14:13:18 +0800 Subject: [PATCH] rename LauncherGo to LauncherGoDev --- Menu/GameShell/10_Settings/About/about.go | 2 +- Menu/GameShell/10_Settings/Brightness/brightness_page.go | 4 ++-- Menu/GameShell/10_Settings/Brightness/plugin_init.go | 4 ++-- Menu/GameShell/10_Settings/Settings.go | 2 +- Menu/GameShell/10_Settings/Sound/plugin_init.go | 4 ++-- Menu/GameShell/10_Settings/Sound/sound_page.go | 2 +- Menu/GameShell/10_Settings/Wifi/net_item.go | 4 ++-- Menu/GameShell/10_Settings/Wifi/plugin_init.go | 4 ++-- Menu/GameShell/10_Settings/Wifi/wifi.go | 6 +++--- Menu/GameShell/HelloWorld/helloworld.go | 2 +- main.go | 2 +- sysgo/UI/UI.go | 2 +- sysgo/UI/keyboard.go | 2 +- sysgo/UI/keys_def.go | 2 +- sysgo/UI/main_screen.go | 2 +- sysgo/UI/page.go | 2 +- sysgo/UI/skin_manager.go | 2 +- sysgo/UI/slider.go | 2 +- sysgo/UI/title_bar.go | 4 ++-- sysgo/UI/util_funcs.go | 2 +- sysgo/wicd/misc/misc.go | 2 +- 21 files changed, 29 insertions(+), 29 deletions(-) diff --git a/Menu/GameShell/10_Settings/About/about.go b/Menu/GameShell/10_Settings/About/about.go index 9d9eeb7..a92431a 100644 --- a/Menu/GameShell/10_Settings/About/about.go +++ b/Menu/GameShell/10_Settings/About/about.go @@ -14,7 +14,7 @@ import ( "github.com/cuu/gogame/rect" "github.com/cuu/gogame/color" - "github.com/cuu/LauncherGo/sysgo/UI" + "github.com/cuu/LauncherGoDev/sysgo/UI" ) diff --git a/Menu/GameShell/10_Settings/Brightness/brightness_page.go b/Menu/GameShell/10_Settings/Brightness/brightness_page.go index cf2e74e..8ef39cc 100644 --- a/Menu/GameShell/10_Settings/Brightness/brightness_page.go +++ b/Menu/GameShell/10_Settings/Brightness/brightness_page.go @@ -5,8 +5,8 @@ import( "strconv" "github.com/cuu/gogame/event" - "github.com/cuu/LauncherGo/sysgo" - "github.com/cuu/LauncherGo/sysgo/UI" + "github.com/cuu/LauncherGoDev/sysgo" + "github.com/cuu/LauncherGoDev/sysgo/UI" ) type OnChangeCB_T func(int) diff --git a/Menu/GameShell/10_Settings/Brightness/plugin_init.go b/Menu/GameShell/10_Settings/Brightness/plugin_init.go index 07131cf..2aef26f 100644 --- a/Menu/GameShell/10_Settings/Brightness/plugin_init.go +++ b/Menu/GameShell/10_Settings/Brightness/plugin_init.go @@ -12,8 +12,8 @@ import ( "github.com/cuu/gogame/rect" "github.com/cuu/gogame/color" */ - "github.com/cuu/LauncherGo/sysgo/UI" - //"github.com/cuu/LauncherGo/sysgo/DBUS" + "github.com/cuu/LauncherGoDev/sysgo/UI" + //"github.com/cuu/LauncherGoDev/sysgo/DBUS" ) /******************************************************************************/ diff --git a/Menu/GameShell/10_Settings/Settings.go b/Menu/GameShell/10_Settings/Settings.go index fddc2ff..29c4e4d 100644 --- a/Menu/GameShell/10_Settings/Settings.go +++ b/Menu/GameShell/10_Settings/Settings.go @@ -9,7 +9,7 @@ import ( "github.com/cuu/gogame/color" "github.com/cuu/gogame/draw" - "github.com/cuu/LauncherGo/sysgo/UI" + "github.com/cuu/LauncherGoDev/sysgo/UI" ) diff --git a/Menu/GameShell/10_Settings/Sound/plugin_init.go b/Menu/GameShell/10_Settings/Sound/plugin_init.go index 0bf0918..4250db1 100644 --- a/Menu/GameShell/10_Settings/Sound/plugin_init.go +++ b/Menu/GameShell/10_Settings/Sound/plugin_init.go @@ -13,8 +13,8 @@ import ( "github.com/cuu/gogame/rect" "github.com/cuu/gogame/color" */ - "github.com/cuu/LauncherGo/sysgo/UI" - //"github.com/cuu/LauncherGo/sysgo/DBUS" + "github.com/cuu/LauncherGoDev/sysgo/UI" + //"github.com/cuu/LauncherGoDev/sysgo/DBUS" ) /******************************************************************************/ diff --git a/Menu/GameShell/10_Settings/Sound/sound_page.go b/Menu/GameShell/10_Settings/Sound/sound_page.go index fd6ac5a..d5176bc 100644 --- a/Menu/GameShell/10_Settings/Sound/sound_page.go +++ b/Menu/GameShell/10_Settings/Sound/sound_page.go @@ -3,7 +3,7 @@ package main import( "fmt" "github.com/cuu/gogame/event" - "github.com/cuu/LauncherGo/sysgo/UI" + "github.com/cuu/LauncherGoDev/sysgo/UI" ) type OnChangeCB_T func(int) diff --git a/Menu/GameShell/10_Settings/Wifi/net_item.go b/Menu/GameShell/10_Settings/Wifi/net_item.go index ba71ec7..12adb41 100644 --- a/Menu/GameShell/10_Settings/Wifi/net_item.go +++ b/Menu/GameShell/10_Settings/Wifi/net_item.go @@ -11,9 +11,9 @@ import ( "github.com/cuu/gogame/draw" "github.com/cuu/gogame/rect" "github.com/cuu/gogame/surface" - "github.com/cuu/LauncherGo/sysgo/UI" + "github.com/cuu/LauncherGoDev/sysgo/UI" - "github.com/cuu/LauncherGo/sysgo/DBUS" + "github.com/cuu/LauncherGoDev/sysgo/DBUS" ) var NetItemDefaultHeight = 30 diff --git a/Menu/GameShell/10_Settings/Wifi/plugin_init.go b/Menu/GameShell/10_Settings/Wifi/plugin_init.go index 668fe58..6d30df6 100644 --- a/Menu/GameShell/10_Settings/Wifi/plugin_init.go +++ b/Menu/GameShell/10_Settings/Wifi/plugin_init.go @@ -9,8 +9,8 @@ import ( "github.com/cuu/gogame/rect" "github.com/cuu/gogame/color" */ - "github.com/cuu/LauncherGo/sysgo/UI" - //"github.com/cuu/LauncherGo/sysgo/DBUS" + "github.com/cuu/LauncherGoDev/sysgo/UI" + //"github.com/cuu/LauncherGoDev/sysgo/DBUS" ) /******************************************************************************/ diff --git a/Menu/GameShell/10_Settings/Wifi/wifi.go b/Menu/GameShell/10_Settings/Wifi/wifi.go index 536d4c8..027bea3 100644 --- a/Menu/GameShell/10_Settings/Wifi/wifi.go +++ b/Menu/GameShell/10_Settings/Wifi/wifi.go @@ -18,11 +18,11 @@ import ( "github.com/cuu/gogame/time" "github.com/cuu/gogame/rect" "github.com/cuu/gogame/draw" - "github.com/cuu/LauncherGo/sysgo/UI" - "github.com/cuu/LauncherGo/sysgo/DBUS" + "github.com/cuu/LauncherGoDev/sysgo/UI" + "github.com/cuu/LauncherGoDev/sysgo/DBUS" - "github.com/cuu/LauncherGo/sysgo/wicd/misc" + "github.com/cuu/LauncherGoDev/sysgo/wicd/misc" ) diff --git a/Menu/GameShell/HelloWorld/helloworld.go b/Menu/GameShell/HelloWorld/helloworld.go index 229e343..8f819e7 100644 --- a/Menu/GameShell/HelloWorld/helloworld.go +++ b/Menu/GameShell/HelloWorld/helloworld.go @@ -8,7 +8,7 @@ import ( "github.com/cuu/gogame/rect" "github.com/cuu/gogame/color" - "github.com/cuu/LauncherGo/sysgo/UI" + "github.com/cuu/LauncherGoDev/sysgo/UI" ) diff --git a/main.go b/main.go index 55557ac..2593a4f 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ import ( "github.com/cuu/gogame/font" "github.com/cuu/gogame/time" - "github.com/cuu/LauncherGo/sysgo/UI" + "github.com/cuu/LauncherGoDev/sysgo/UI" ) diff --git a/sysgo/UI/UI.go b/sysgo/UI/UI.go index 1ae5f8a..d3d3869 100644 --- a/sysgo/UI/UI.go +++ b/sysgo/UI/UI.go @@ -7,7 +7,7 @@ import ( "github.com/veandco/go-sdl2/ttf" "github.com/cuu/gogame/font" - "github.com/cuu/LauncherGo/sysgo" + "github.com/cuu/LauncherGoDev/sysgo" ) type WidgetInterface interface { diff --git a/sysgo/UI/keyboard.go b/sysgo/UI/keyboard.go index 6cda0ac..eae0cb8 100644 --- a/sysgo/UI/keyboard.go +++ b/sysgo/UI/keyboard.go @@ -11,7 +11,7 @@ import ( "github.com/cuu/gogame/event" - "github.com/cuu/LauncherGo/sysgo/easings" + "github.com/cuu/LauncherGoDev/sysgo/easings" ) //sysgo/UI/keyboard_keys.layout diff --git a/sysgo/UI/keys_def.go b/sysgo/UI/keys_def.go index c9e29bd..4632d3a 100644 --- a/sysgo/UI/keys_def.go +++ b/sysgo/UI/keys_def.go @@ -1,7 +1,7 @@ package UI import ( - "github.com/cuu/LauncherGo/sysgo" + "github.com/cuu/LauncherGoDev/sysgo" ) diff --git a/sysgo/UI/main_screen.go b/sysgo/UI/main_screen.go index 8006e2f..a811b9a 100644 --- a/sysgo/UI/main_screen.go +++ b/sysgo/UI/main_screen.go @@ -20,7 +20,7 @@ import ( "github.com/cuu/gogame/event" - "github.com/cuu/LauncherGo/sysgo/DBUS" + "github.com/cuu/LauncherGoDev/sysgo/DBUS" ) var ( diff --git a/sysgo/UI/page.go b/sysgo/UI/page.go index e543cfd..15c2e92 100644 --- a/sysgo/UI/page.go +++ b/sysgo/UI/page.go @@ -15,7 +15,7 @@ import ( "github.com/cuu/gogame/event" "github.com/cuu/gogame/transform" - "github.com/cuu/LauncherGo/sysgo/easings" + "github.com/cuu/LauncherGoDev/sysgo/easings" ) diff --git a/sysgo/UI/skin_manager.go b/sysgo/UI/skin_manager.go index 3609d7b..be525fe 100644 --- a/sysgo/UI/skin_manager.go +++ b/sysgo/UI/skin_manager.go @@ -12,7 +12,7 @@ import ( "github.com/cuu/gogame/color" - "github.com/cuu/LauncherGo/sysgo" + "github.com/cuu/LauncherGoDev/sysgo" ) type SkinManager struct { diff --git a/sysgo/UI/slider.go b/sysgo/UI/slider.go index d9e14e2..58dcffe 100644 --- a/sysgo/UI/slider.go +++ b/sysgo/UI/slider.go @@ -14,7 +14,7 @@ import ( "github.com/cuu/gogame/event" //"github.com/cuu/gogame/transform" - //"github.com/cuu/LauncherGo/sysgo/easings" + //"github.com/cuu/LauncherGoDev/sysgo/easings" ) diff --git a/sysgo/UI/title_bar.go b/sysgo/UI/title_bar.go index 4b7daf7..3a8dbf4 100644 --- a/sysgo/UI/title_bar.go +++ b/sysgo/UI/title_bar.go @@ -20,9 +20,9 @@ import ( "github.com/vjeantet/jodaTime" - "github.com/cuu/LauncherGo/sysgo/DBUS" + "github.com/cuu/LauncherGoDev/sysgo/DBUS" - "github.com/cuu/LauncherGo/sysgo" + "github.com/cuu/LauncherGoDev/sysgo" ) diff --git a/sysgo/UI/util_funcs.go b/sysgo/UI/util_funcs.go index edcf451..001570f 100644 --- a/sysgo/UI/util_funcs.go +++ b/sysgo/UI/util_funcs.go @@ -12,7 +12,7 @@ import ( "github.com/cuu/gogame/display" - "github.com/cuu/LauncherGo/sysgo" + "github.com/cuu/LauncherGoDev/sysgo" ) func ShowErr(e error) { diff --git a/sysgo/wicd/misc/misc.go b/sysgo/wicd/misc/misc.go index f65377a..c4af6b2 100644 --- a/sysgo/wicd/misc/misc.go +++ b/sysgo/wicd/misc/misc.go @@ -3,7 +3,7 @@ package misc import ( "bufio" //"fmt" - "github.com/cuu/LauncherGo/sysgo/UI" + "github.com/cuu/LauncherGoDev/sysgo/UI" "log" "os" "strings"