Skip to content

Commit

Permalink
Move all fonts to separate repos
Browse files Browse the repository at this point in the history
Signed-off-by: Glenn Lewis <6598971+gmlewis@users.noreply.github.com>
  • Loading branch information
gmlewis committed Jun 29, 2024
1 parent 3409c19 commit f33ebf9
Show file tree
Hide file tree
Showing 5,044 changed files with 660 additions and 5,148,054 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1,180 changes: 590 additions & 590 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion cmd/make-puzzle/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"log"
"strings"

_ "github.com/gmlewis/go-fonts-b/fonts/baloo"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/baloo"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/dual-bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"math"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
48 changes: 35 additions & 13 deletions examples/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ go 1.22.4

require (
github.com/fogleman/gg v1.3.0
github.com/gmlewis/go-fonts v0.17.0
github.com/gmlewis/go-fonts/fonts/carrelectronicdingbats v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/freeserif v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/latoregular v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/modak v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/printersornamentsone v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/scriptinapro v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/sofia_regular v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/spirax_regular v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/tangerine_bold v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/topsecret_bold v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts/fonts/typemymusic_notation v0.0.0-20240626194532-dfc547a1f7ce
github.com/gmlewis/go-fonts v0.18.0
github.com/gmlewis/go-fonts-c/fonts/carrelectronicdingbats v0.1.0
github.com/gmlewis/go-fonts-f/fonts/freeserif v0.1.0
github.com/gmlewis/go-fonts-l/fonts/latoregular v0.1.0
github.com/gmlewis/go-fonts-m/fonts/modak v0.1.0
github.com/gmlewis/go-fonts-p/fonts/printersornamentsone v0.1.0
github.com/gmlewis/go-fonts-s/fonts/scriptinapro v0.1.0
github.com/gmlewis/go-fonts-s/fonts/sofia_regular v0.1.0
github.com/gmlewis/go-fonts-s/fonts/spirax_regular v0.1.0
github.com/gmlewis/go-fonts-t/fonts/tangerine_bold v0.1.0
github.com/gmlewis/go-fonts-t/fonts/topsecret_bold v0.1.0
github.com/gmlewis/go-fonts-t/fonts/typemymusic_notation v0.1.0
)

require (
Expand All @@ -27,4 +27,26 @@ require (
google.golang.org/protobuf v1.34.2 // indirect
)

replace github.com/gmlewis/go-fonts v0.17.0 => ../
replace github.com/gmlewis/go-fonts v0.18.0 => ../

replace github.com/gmlewis/go-fonts-c/fonts/carrelectronicdingbats v0.1.0 => ../../go-fonts-c/fonts/carrelectronicdingbats

replace github.com/gmlewis/go-fonts-f/fonts/freeserif v0.1.0 => ../../go-fonts-f/fonts/freeserif

replace github.com/gmlewis/go-fonts-l/fonts/latoregular v0.1.0 => ../../go-fonts-l/fonts/latoregular

replace github.com/gmlewis/go-fonts-m/fonts/modak v0.1.0 => ../../go-fonts-m/fonts/modak

replace github.com/gmlewis/go-fonts-p/fonts/printersornamentsone v0.1.0 => ../../go-fonts-p/fonts/printersornamentsone

replace github.com/gmlewis/go-fonts-s/fonts/scriptinapro v0.1.0 => ../../go-fonts-s/fonts/scriptinapro

replace github.com/gmlewis/go-fonts-s/fonts/sofia_regular v0.1.0 => ../../go-fonts-s/fonts/sofia_regular

replace github.com/gmlewis/go-fonts-s/fonts/spirax_regular v0.1.0 => ../../go-fonts-s/fonts/spirax_regular

replace github.com/gmlewis/go-fonts-t/fonts/tangerine_bold v0.1.0 => ../../go-fonts-t/fonts/tangerine_bold

replace github.com/gmlewis/go-fonts-t/fonts/topsecret_bold v0.1.0 => ../../go-fonts-t/fonts/topsecret_bold

replace github.com/gmlewis/go-fonts-t/fonts/typemymusic_notation v0.1.0 => ../../go-fonts-t/fonts/typemymusic_notation
22 changes: 0 additions & 22 deletions examples/go.sum
Original file line number Diff line number Diff line change
@@ -1,28 +1,6 @@
github.com/ajstarks/deck v0.0.0-20190324184121-6fe4637ccacd/go.mod h1:j3f/59diR4DorW5A78eDYvRkdrkh+nps4p5LA1Tl05U=
github.com/fogleman/gg v1.3.0 h1:/7zJX8F6AaYQc57WQCyN9cAIz+4bCJGO9B+dyW29am8=
github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k=
github.com/gmlewis/go-fonts/fonts/carrelectronicdingbats v0.0.0-20240626194532-dfc547a1f7ce h1:suT7pXOydLX4ynIy/IhUSlyaJ0V4ZY/5lNAJcTobk0Y=
github.com/gmlewis/go-fonts/fonts/carrelectronicdingbats v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:FPLu78toFFp8DU0dWh1nP0/4SohyzMb2xAZgBh7ALeA=
github.com/gmlewis/go-fonts/fonts/freeserif v0.0.0-20240626194532-dfc547a1f7ce h1:IOBvijqFr1b3lTFKmhykznAhYdN/VW/nHgmOcBD/lCU=
github.com/gmlewis/go-fonts/fonts/freeserif v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:H6+QkiDU2ri487UrUfwRwdv7AkQRCy25Lu2voeZR2ok=
github.com/gmlewis/go-fonts/fonts/latoregular v0.0.0-20240626194532-dfc547a1f7ce h1:2i51suSjYl1KpANxgIpR9IS9yftmTxrs00382UWGfTk=
github.com/gmlewis/go-fonts/fonts/latoregular v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:x/eQ4jwEYV8nD0Rb3Ki1aybQH+cu62cBHUIZknlmRGs=
github.com/gmlewis/go-fonts/fonts/modak v0.0.0-20240626194532-dfc547a1f7ce h1:jQ0OU/bgQ82/n7e862gJaH7yXU5RX0P8IGmNsa/Fq10=
github.com/gmlewis/go-fonts/fonts/modak v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:gdoBrcdTsh436Ge9hd0395YI3L9v5gO3MYedLeGssMw=
github.com/gmlewis/go-fonts/fonts/printersornamentsone v0.0.0-20240626194532-dfc547a1f7ce h1:Kj2Ptt171B6XdQeuHflQkaO+aVXnj4ExcdSK8kG+Fe8=
github.com/gmlewis/go-fonts/fonts/printersornamentsone v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:xC/PgVX5kiWKDx7SAJs7QVcezV/626DXBY6W/RTRO0M=
github.com/gmlewis/go-fonts/fonts/scriptinapro v0.0.0-20240626194532-dfc547a1f7ce h1:sW8f8SzGm4idq3JN8/4TA44/z2Bj3eRudhWpbydtLYU=
github.com/gmlewis/go-fonts/fonts/scriptinapro v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:IjlReUANgIX73xDPjJFd6XycYclqztaxCRRISj88h3o=
github.com/gmlewis/go-fonts/fonts/sofia_regular v0.0.0-20240626194532-dfc547a1f7ce h1:6mmDjGzfwtXP75MoN6BljEXfddvkHUbzuSUkB994ioQ=
github.com/gmlewis/go-fonts/fonts/sofia_regular v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:nkwx+Wy3BF/V2mQjanxldstgtWnZT6lptl/TJQNCjnM=
github.com/gmlewis/go-fonts/fonts/spirax_regular v0.0.0-20240626194532-dfc547a1f7ce h1:dnLjZQ9URl6/5WF3AsqgWN11ehk2QgS6aHUdLb3285M=
github.com/gmlewis/go-fonts/fonts/spirax_regular v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:fkh+Bi/67JHj8KVRDvtCi+7L2L32doSKzUz/a00zSLI=
github.com/gmlewis/go-fonts/fonts/tangerine_bold v0.0.0-20240626194532-dfc547a1f7ce h1:gqaygBvCdwrk9kk5pyo4LcEo67eVVE6bYYO8CBPP3IE=
github.com/gmlewis/go-fonts/fonts/tangerine_bold v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:6XiqmoOKaWj3iTeLpAaTmU1t1weexcckaoC95ecr2io=
github.com/gmlewis/go-fonts/fonts/topsecret_bold v0.0.0-20240626194532-dfc547a1f7ce h1:ChO18gubooMCHOpwk/AgKwSG9eZHnPaGFZCqvwsq4wY=
github.com/gmlewis/go-fonts/fonts/topsecret_bold v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:51ZouYQvrsPcdDY8+bGE6wX27Q0J58jo0EhPnFc/aqo=
github.com/gmlewis/go-fonts/fonts/typemymusic_notation v0.0.0-20240626194532-dfc547a1f7ce h1:O+8DvUkOR5GRaiYYU0io4RlWFnZGzvzAx8XtiUpgFLE=
github.com/gmlewis/go-fonts/fonts/typemymusic_notation v0.0.0-20240626194532-dfc547a1f7ce/go.mod h1:k6qr5W8hVrPrEI1M0tsjKn3y/vOoqyFtN6bpt8uxxOA=
github.com/gmlewis/go3d v0.0.4 h1:2ymApzgFXKZJ0nFgItUAAXt2z8n5tPOz5Wtu/SGZ1As=
github.com/gmlewis/go3d v0.0.4/go.mod h1:kmNbdpGuKWLQCUigppF9tBmoHDLrsymSy6se+eBUOVk=
github.com/gmlewis/ponoko2d v0.0.0-20190404133045-d77d370bec9a h1:+f/EwY1eQ5vL78T1LwqOKSGoEGtZ3kkwAvONoJtDay0=
Expand Down
2 changes: 1 addition & 1 deletion examples/hept-bifilar-coil/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"math"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/hex-bifilar-coil-diagram-v2/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"math"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions examples/hex-bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (
"log"
"math"

_ "github.com/gmlewis/go-fonts-c/fonts/carrelectronicdingbats"
_ "github.com/gmlewis/go-fonts-f/fonts/freeserif"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/carrelectronicdingbats"
_ "github.com/gmlewis/go-fonts/fonts/freeserif"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/hexadeca-bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/icosi-bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
16 changes: 8 additions & 8 deletions examples/maryn-letter/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import (
"image/color"
"log"

_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
_ "github.com/gmlewis/go-fonts-p/fonts/printersornamentsone"
_ "github.com/gmlewis/go-fonts-s/fonts/scriptinapro"
_ "github.com/gmlewis/go-fonts-s/fonts/sofia_regular"
_ "github.com/gmlewis/go-fonts-s/fonts/spirax_regular"
_ "github.com/gmlewis/go-fonts-t/fonts/tangerine_bold"
_ "github.com/gmlewis/go-fonts-t/fonts/topsecret_bold"
_ "github.com/gmlewis/go-fonts-t/fonts/typemymusic_notation"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
_ "github.com/gmlewis/go-fonts/fonts/printersornamentsone"
_ "github.com/gmlewis/go-fonts/fonts/scriptinapro"
_ "github.com/gmlewis/go-fonts/fonts/sofia_regular"
_ "github.com/gmlewis/go-fonts/fonts/spirax_regular"
_ "github.com/gmlewis/go-fonts/fonts/tangerine_bold"
_ "github.com/gmlewis/go-fonts/fonts/topsecret_bold"
_ "github.com/gmlewis/go-fonts/fonts/typemymusic_notation"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/maze-word/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"image/color"
"log"

_ "github.com/gmlewis/go-fonts-m/fonts/modak"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/modak"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/n333-bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/n334-bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/n9-bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/oct-bifilar-coil/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/penta-bifilar-coil/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"math"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/quad-bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"math"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion examples/tri-bifilar-coil-diagram/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"math"

"github.com/fogleman/gg"
_ "github.com/gmlewis/go-fonts-l/fonts/latoregular"
. "github.com/gmlewis/go-fonts/fonts"
_ "github.com/gmlewis/go-fonts/fonts/latoregular"
)

var (
Expand Down
Loading

0 comments on commit f33ebf9

Please sign in to comment.