Browse Source

rename LauncherGo to LauncherGoDev

cuu 5 years ago
parent
commit
d6e8b2864e

+ 1 - 1
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"
 
 	
 )

+ 2 - 2
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)

+ 2 - 2
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"
 )
 
 /******************************************************************************/

+ 1 - 1
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"
 	
 )
 

+ 2 - 2
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"
 )
 
 /******************************************************************************/

+ 1 - 1
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)

+ 2 - 2
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

+ 2 - 2
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"
 )
 
 /******************************************************************************/

+ 3 - 3
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"
   
 )
 

+ 1 - 1
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"
 	
 )
 

+ 1 - 1
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"
 )
 
 

+ 1 - 1
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 {

+ 1 - 1
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

+ 1 - 1
sysgo/UI/keys_def.go

@@ -1,7 +1,7 @@
 package UI
 
 import (
-	"github.com/cuu/LauncherGo/sysgo"
+	"github.com/cuu/LauncherGoDev/sysgo"
 )
 
 

+ 1 - 1
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 (

+ 1 - 1
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"
 	
 )
 

+ 1 - 1
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 {

+ 1 - 1
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"
 	
 )
 

+ 2 - 2
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"
 
 	
 )

+ 1 - 1
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) {

+ 1 - 1
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"