Skip to content

Commit

Permalink
update namespace of project
Browse files Browse the repository at this point in the history
  • Loading branch information
trembon committed Apr 1, 2024
1 parent b15ab52 commit 6497ec2
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 22 deletions.
6 changes: 3 additions & 3 deletions src/console.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
"path/filepath"
"strings"

"github.com/giwty/switch-library-manager/db"
"github.com/giwty/switch-library-manager/process"
"github.com/giwty/switch-library-manager/settings"
"github.com/jedib0t/go-pretty/table"
"github.com/schollz/progressbar/v3"
"github.com/trembon/switch-library-manager/db"
"github.com/trembon/switch-library-manager/process"
"github.com/trembon/switch-library-manager/settings"
"go.uber.org/zap"
)

Expand Down
6 changes: 3 additions & 3 deletions src/db/localSwitchFilesDB.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"strconv"
"strings"

"github.com/giwty/switch-library-manager/fileio"
"github.com/giwty/switch-library-manager/settings"
"github.com/giwty/switch-library-manager/switchfs"
"github.com/trembon/switch-library-manager/fileio"
"github.com/trembon/switch-library-manager/settings"
"github.com/trembon/switch-library-manager/switchfs"
"go.uber.org/zap"
)

Expand Down
7 changes: 4 additions & 3 deletions src/db/persistentDB.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import (
"bytes"
"encoding/gob"
"fmt"
"github.com/boltdb/bolt"
"github.com/giwty/switch-library-manager/settings"
"go.uber.org/zap"
"log"
"path/filepath"

"github.com/boltdb/bolt"
"github.com/trembon/switch-library-manager/settings"
"go.uber.org/zap"
)

const (
Expand Down
3 changes: 2 additions & 1 deletion src/fileio/splitFileUtil.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ package fileio

import (
"errors"
"github.com/giwty/switch-library-manager/switchfs"
"os"

"github.com/trembon/switch-library-manager/switchfs"
)

func ReadSplitFileMetadata(filePath string) (map[string]*switchfs.ContentMetaAttributes, error) {
Expand Down
2 changes: 1 addition & 1 deletion src/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/giwty/switch-library-manager
module github.com/trembon/switch-library-manager

go 1.20

Expand Down
6 changes: 3 additions & 3 deletions src/gui.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ import (
"github.com/asticode/go-astikit"
"github.com/asticode/go-astilectron"
bootstrap "github.com/asticode/go-astilectron-bootstrap"
"github.com/giwty/switch-library-manager/db"
"github.com/giwty/switch-library-manager/process"
"github.com/giwty/switch-library-manager/settings"
"github.com/trembon/switch-library-manager/db"
"github.com/trembon/switch-library-manager/process"
"github.com/trembon/switch-library-manager/settings"
"go.uber.org/zap"
)

Expand Down
2 changes: 1 addition & 1 deletion src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"runtime"
"strings"

"github.com/giwty/switch-library-manager/settings"
"github.com/trembon/switch-library-manager/settings"
"go.uber.org/zap"
)

Expand Down
4 changes: 2 additions & 2 deletions src/process/incompleteTitleProcessor.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"sort"
"strconv"

"github.com/giwty/switch-library-manager/db"
"github.com/giwty/switch-library-manager/switchfs"
"github.com/trembon/switch-library-manager/db"
"github.com/trembon/switch-library-manager/switchfs"
"go.uber.org/zap"
)

Expand Down
4 changes: 2 additions & 2 deletions src/process/organizefolderStructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strconv"
"strings"

"github.com/giwty/switch-library-manager/db"
"github.com/giwty/switch-library-manager/settings"
"github.com/trembon/switch-library-manager/db"
"github.com/trembon/switch-library-manager/settings"
"go.uber.org/zap"
"robpike.io/nihongo"
)
Expand Down
5 changes: 3 additions & 2 deletions src/switchfs/nca.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ import (
"encoding/hex"
"errors"
"fmt"
"github.com/giwty/switch-library-manager/settings"
"github.com/giwty/switch-library-manager/switchfs/_crypto"
"io"

"github.com/trembon/switch-library-manager/settings"
"github.com/trembon/switch-library-manager/switchfs/_crypto"
)

const (
Expand Down
3 changes: 2 additions & 1 deletion src/switchfs/ncaHeader.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ import (
"crypto/aes"
"encoding/binary"
"encoding/hex"
"github.com/giwty/switch-library-manager/switchfs/_crypto"
"strconv"

"github.com/trembon/switch-library-manager/switchfs/_crypto"
)

//https://switchbrew.org/wiki/NCA_Format
Expand Down

0 comments on commit 6497ec2

Please sign in to comment.