Skip to content

Commit

Permalink
Using our own fork of go-qml
Browse files Browse the repository at this point in the history
using github.com/limetext/qml-go instead of gopkg.in/qml.v1 which
it seems its not under development anymore.
also applyed go-qml/qml#140 closes #4
  • Loading branch information
zoli committed Apr 24, 2016
1 parent 8888076 commit 0969848
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ import:
- package: github.com/limetext/util
version: master
- package: gopkg.in/fsnotify.v1
- package: gopkg.in/qml.v1
- package: github.com/limetext/qml-go
2 changes: 1 addition & 1 deletion main/dialog.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"

"github.com/limetext/backend/log"
"gopkg.in/qml.v1"
"github.com/limetext/qml-go"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion main/frontend.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"sync"
"time"

"github.com/limetext/qml-go"
"gopkg.in/fsnotify.v1"
"gopkg.in/qml.v1"

"github.com/limetext/backend"
"github.com/limetext/backend/keys"
Expand Down
3 changes: 1 addition & 2 deletions main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@ import (
"flag"
"runtime"

"gopkg.in/qml.v1"

"github.com/limetext/backend"
"github.com/limetext/backend/log"
_ "github.com/limetext/commands"
"github.com/limetext/gopy/lib"
"github.com/limetext/qml-go"
_ "github.com/limetext/sublime"
)

Expand Down
3 changes: 1 addition & 2 deletions main/view.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ import (
"io"
"strings"

"gopkg.in/qml.v1"

"github.com/limetext/backend"
"github.com/limetext/backend/log"
"github.com/limetext/backend/render"
"github.com/limetext/qml-go"
. "github.com/limetext/text"
"github.com/limetext/util"
)
Expand Down
2 changes: 1 addition & 1 deletion main/window.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"

"github.com/limetext/backend"
"gopkg.in/qml.v1"
"github.com/limetext/qml-go"
)

// A helper glue structure connecting the backend Window with the qml.Window
Expand Down

0 comments on commit 0969848

Please sign in to comment.