Skip to content

Commit c4131d3

Browse files
committed
Updated to use DOtherSide 0.7.X. Closes #27
1 parent 5c42890 commit c4131d3

File tree

12 files changed

+14
-14
lines changed

12 files changed

+14
-14
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
QML binding for the Nim programming language
44

55
## Requirements
6-
* [DOtherside](https://github.com/filcuc/DOtherSide) 0.6.3 or higher
7-
* [Nim](http://nim-lang.org/) 1.0.0 or higher
6+
* [DOtherside](https://github.com/filcuc/DOtherSide) 0.7.X
7+
* [Nim](http://nim-lang.org/) 1.4.0 or higher
88

99
## Build instructions
1010
* Compile and Install [DOtherside](https://github.com/filcuc/DOtherSide) in your system PATH (i.e. /usr/lib)

doc/nimqml.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Filippo Cucchetto <filippocucchetto@gmail.com>
33

44
Will Szumski <will@cowboycoders.org>
5-
:Version: 0.7.7
6-
:Date: 2019/10/01
5+
:Version: 0.8.0
6+
:Date: 2021/01/05
77

88

99
Introduction

examples/abstractitemmodel/abstractitemmodel.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ description = "abstractitemmodel"
77
license = "MIT"
88

99
[Deps]
10-
Requires: "nim >= 1.0.0, nimqml >= 0.7.7"
10+
Requires: "nim >= 1.0.0, nimqml >= 0.8.0"

examples/charts/charts.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ description = "charts"
77
license = "MIT"
88

99
[Deps]
10-
Requires: "nim >= 1.0.0, nimqml >= 0.7.7"
10+
Requires: "nim >= 1.0.0, nimqml >= 0.8.0"
1111

examples/contactapp/contactapp.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ description = "contactapp"
77
license = "MIT"
88

99
[Deps]
10-
Requires: "nim >= 1.0.0, nimqml >= 0.7.7"
10+
Requires: "nim >= 1.0.0, nimqml >= 0.8.0"

examples/helloworld/helloworld.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ description = "helloworld"
77
license = "MIT"
88

99
[Deps]
10-
Requires: "nim >= 1.0.0, nimqml >= 0.7.7"
10+
Requires: "nim >= 1.0.0, nimqml >= 0.8.0"

examples/qmlregistertype/qmlregistertype.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ description = "qmlregistertype"
77
license = "MIT"
88

99
[Deps]
10-
Requires: "nim >= 1.0.0, nimqml >= 0.7.7"
10+
Requires: "nim >= 1.0.0, nimqml >= 0.8.0"

examples/resourcebundling/resourcebundling.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ bin = @["main"]
99

1010
# Dependencies
1111

12-
requires @["nim >= 1.0.0", "nimqml >= 0.7.7"]
12+
requires @["nim >= 1.0.0", "nimqml >= 0.8.0"]
1313

1414
task build, "Compile the binary":
1515
exec ("nim c main")

examples/simpledata/simpledata.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ description = "simpledata"
77
license = "MIT"
88

99
[Deps]
10-
Requires: "nim >= 1.0.0, nimqml >= 0.7.7"
10+
Requires: "nim >= 1.0.0, nimqml >= 0.8.0"
1111

examples/slotsandproperties/slotsandproperties.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ description = "slotsandproperties"
77
license = "MIT"
88

99
[Deps]
10-
Requires: "nim >= 1.0.0, nimqml >= 0.7.7"
10+
Requires: "nim >= 1.0.0, nimqml >= 0.8.0"

nimqml.nimble

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Package]
22
name = "nimqml"
3-
version = "0.7.7"
3+
version = "0.8.0"
44
author = "Filippo Cucchetto"
55
description = "QML bindings for Nim"
66
license = "LGPLv3"

src/nimqml/private/dotherside.nim

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const dynLibName =
77
of "macosx":
88
"libDOtherSide.dylib"
99
else:
10-
"libDOtherSide.so.0.6"
10+
"libDOtherSide.so.0.7"
1111

1212
type
1313
NimQObject = pointer

0 commit comments

Comments
 (0)