Skip to content

Commit 5891f37

Browse files
authored
0.6.1 (#122)
* bumpy for rect * 0.6.1 update dep versions
1 parent df2bb57 commit 5891f37

File tree

8 files changed

+12
-11
lines changed

8 files changed

+12
-11
lines changed

fidget.nimble

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package
22

3-
version = "0.6.0"
3+
version = "0.6.1"
44
author = "treeform"
55
description = "Fidget - UI Library"
66
license = "MIT"
@@ -10,12 +10,13 @@ srcDir = "src"
1010

1111
requires "nim >= 1.0.0"
1212
requires "chroma >= 0.1.3"
13-
requires "typography >= 0.7.0"
14-
requires "pixie >= 0.0.2"
15-
requires "vmath >= 0.3.1"
13+
requires "typography >= 0.7.1"
14+
requires "pixie >= 0.0.6"
15+
requires "vmath >= 0.4.0"
1616
requires "print >= 0.1.0"
1717
requires "opengl >= 1.2.3"
1818
requires "html5_canvas >= 1.3"
1919
requires "staticglfw >= 4.1.2"
2020
requires "cligen >= 1.0.0"
2121
requires "supersnappy >= 1.0.0"
22+
requires "bumpy >= 0.2.0"

src/fidget.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import algorithm, chroma, fidget/common, fidget/input, json, macros, strutils,
2-
tables, vmath
2+
tables, vmath, bumpy
33

44
export chroma, common, input
55

src/fidget/common.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chroma, input, sequtils, tables, vmath, json
1+
import chroma, input, sequtils, tables, vmath, json, bumpy
22

33
when defined(js):
44
import dom2, html/ajax

src/fidget/opengl/base.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import ../common, ../input, ../internal, chroma, pixie, opengl, os, perf,
2-
staticglfw, times, typography/textboxes, unicode, vmath, strformat
2+
staticglfw, times, typography/textboxes, unicode, vmath, strformat, bumpy
33

44
when defined(glDebugMessageCallback):
55
import strformat, strutils

src/fidget/opengl/context.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import buffers, chroma, pixie, hashes, opengl, os, shaders, strformat,
2-
strutils, tables, textures, times, vmath, formatflippy
2+
strutils, tables, textures, times, vmath, formatflippy, bumpy
33

44
const
55
quadLimit = 10_921

src/fidget/opengl/formatflippy.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import pixie, streams, supersnappy, chroma, strformat, vmath
1+
import pixie, streams, supersnappy, chroma, strformat, vmath, bumpy
22

33
const version = 1
44

src/fidget/openglbackend.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import chroma, common, hashes, input, internal, opengl/base,
22
opengl/context, os, strformat, strutils, tables, times, typography,
3-
typography/textboxes, unicode, vmath, opengl/formatflippy
3+
typography/textboxes, unicode, vmath, opengl/formatflippy, bumpy
44

55
when not defined(emscripten) and not defined(fidgetNoAsync):
66
import httpClient, asyncdispatch, asyncfutures, json

tests/bars/bars.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fidget, math, random, vmath
1+
import bumpy, fidget, math, random
22

33
# Create an array of 30 bars.
44
var bars = newSeq[float](30)

0 commit comments

Comments
 (0)