Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update linked paths #25

Merged
merged 1 commit into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
>
> The primary goal is to **keep the project alive by providing long-term support and fixing bugs**. (Feature improvements are considered secondary.)
>
> Since this is a distributed effort, we highly welcome new contributors! Feel free to browse the issue tracker, and you can find us on [TheMoeWay Discord](https://discord.gg/nhqjydaR8j) at [#colab-tmw-projects](https://discord.com/channels/617136488840429598/1081538711742844980)
> Since this is a distributed effort, we highly welcome new contributors! Feel free to browse the issue tracker, and you can find us on [Yomitan Discord](https://discord.gg/YkQrXW6TXF) at [#colab-tmw-projects](https://discord.com/channels/617136488840429598/1081538711742844980)

Yomitan Import allows users of the [Yomitan](https://github.com/themoeway/yomitan) extension to import custom
Yomitan Import allows users of the [Yomitan](https://github.com/yomidevs/yomitan) extension to import custom
dictionary files. It currently supports the following formats:

- [JMdict XML](http://www.edrdg.org/jmdict/edict_doc.html)
Expand Down Expand Up @@ -35,7 +35,7 @@ contributions are welcome.
Follow the steps outlined below to import your custom dictionary into Yomitan:

1. Download a pre-built binary for Linux or Windows from the [project
page](https://github.com/themoeway/yomitan-import/releases).
page](https://github.com/yomidevs/yomitan-import/releases).
2. Launch the `yomitan-gtk` executable after extracting the entire archive (or `yomitan` from the command line).
3. Specify the source path of the dictionary you wish to convert.
4. Specify the target path of the dictionary ZIP archive that you wish to create.
Expand Down
2 changes: 1 addition & 1 deletion common.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (index *dbIndex) setDefaults() {
index.Author = "yomitan-import"
}
if index.Url == "" {
index.Url = "https://github.com/themoeway/yomitan-import"
index.Url = "https://github.com/yomidevs/yomitan-import"
}
}

Expand Down
2 changes: 1 addition & 1 deletion daijirin.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

zig "github.com/themoeway/zero-epwing-go"
zig "github.com/yomidevs/zero-epwing-go"
)

type daijirinExtractor struct {
Expand Down
2 changes: 1 addition & 1 deletion daijisen.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

zig "github.com/themoeway/zero-epwing-go"
zig "github.com/yomidevs/zero-epwing-go"
)

type daijisenExtractor struct {
Expand Down
2 changes: 1 addition & 1 deletion epwing.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strconv"
"strings"

zig "github.com/themoeway/zero-epwing-go"
zig "github.com/yomidevs/zero-epwing-go"
)

type epwingExtractor interface {
Expand Down
2 changes: 1 addition & 1 deletion gakken.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

zig "github.com/themoeway/zero-epwing-go"
zig "github.com/yomidevs/zero-epwing-go"
)

type gakkenExtractor struct {
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
module github.com/themoeway/yomitan-import
module github.com/yomidevs/yomitan-import

go 1.18

require (
github.com/andlabs/ui v0.0.0-20200610043537-70a69d6ae31e
github.com/mattn/go-sqlite3 v1.14.14
github.com/themoeway/jmdict-go v0.0.0-20230321060422-fa8f5d54f364
github.com/themoeway/zero-epwing-go v0.0.0-20230320143722-0af367763d6c
github.com/yomidevs/jmdict-go v0.0.0-20230321060422-fa8f5d54f364
github.com/yomidevs/zero-epwing-go v0.0.0-20230320143722-0af367763d6c
golang.org/x/exp v0.0.0-20221207211629-99ab8fa1c11f
)

Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ github.com/andlabs/ui v0.0.0-20200610043537-70a69d6ae31e h1:wSQCJiig/QkoUnpvelSP
github.com/andlabs/ui v0.0.0-20200610043537-70a69d6ae31e/go.mod h1:5G2EjwzgZUPnnReoKvPWVneT8APYbyKkihDVAHUi0II=
github.com/mattn/go-sqlite3 v1.14.14 h1:qZgc/Rwetq+MtyE18WhzjokPD93dNqLGNT3QJuLvBGw=
github.com/mattn/go-sqlite3 v1.14.14/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
github.com/themoeway/jmdict-go v0.0.0-20230321060422-fa8f5d54f364 h1:JSSM5osTN5FCoj7uErWoMVY+IbDh+OG0aRJnKsxgngc=
github.com/themoeway/jmdict-go v0.0.0-20230321060422-fa8f5d54f364/go.mod h1:M9O+lJXOwrOqpN4VUv8Qkn1gsZ/SZaSAiF7nj0m1NZk=
github.com/themoeway/zero-epwing-go v0.0.0-20230320143722-0af367763d6c h1:32GHNc47Ff2l+zkixRhK2Q4GqosXI4D5w0PjDNMAo68=
github.com/themoeway/zero-epwing-go v0.0.0-20230320143722-0af367763d6c/go.mod h1:O6+Fn5z4McOG0I8tS1X2HqYx9n0KPW1KQccYyoXzSR4=
github.com/yomidevs/jmdict-go v0.0.0-20230321060422-fa8f5d54f364 h1:JSSM5osTN5FCoj7uErWoMVY+IbDh+OG0aRJnKsxgngc=
github.com/yomidevs/jmdict-go v0.0.0-20230321060422-fa8f5d54f364/go.mod h1:M9O+lJXOwrOqpN4VUv8Qkn1gsZ/SZaSAiF7nj0m1NZk=
github.com/yomidevs/zero-epwing-go v0.0.0-20230320143722-0af367763d6c h1:32GHNc47Ff2l+zkixRhK2Q4GqosXI4D5w0PjDNMAo68=
github.com/yomidevs/zero-epwing-go v0.0.0-20230320143722-0af367763d6c/go.mod h1:O6+Fn5z4McOG0I8tS1X2HqYx9n0KPW1KQccYyoXzSR4=
golang.org/x/exp v0.0.0-20221207211629-99ab8fa1c11f h1:90Jq/vvGVDsqj8QqCynjFw9MCerDguSMODLYII416Y8=
golang.org/x/exp v0.0.0-20221207211629-99ab8fa1c11f/go.mod h1:CxIveKay+FTh1D0yPZemJVgC/95VzuuOLq5Qi4xnoYc=
golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=
Expand Down
2 changes: 1 addition & 1 deletion jmdict.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strconv"
"strings"

jmdict "github.com/themoeway/jmdict-go"
jmdict "github.com/yomidevs/jmdict-go"
"golang.org/x/exp/slices"
)

Expand Down
2 changes: 1 addition & 1 deletion jmdict_forms.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"strings"

jmdict "github.com/themoeway/jmdict-go"
jmdict "github.com/yomidevs/jmdict-go"
"golang.org/x/exp/slices"
)

Expand Down
2 changes: 1 addition & 1 deletion jmdict_glossary.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"strconv"

jmdict "github.com/themoeway/jmdict-go"
jmdict "github.com/yomidevs/jmdict-go"
)

func glossaryContainsLanguage(glossary []jmdict.JmdictGlossary, language string) bool {
Expand Down
2 changes: 1 addition & 1 deletion jmdict_headword.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"regexp"
"strconv"

jmdict "github.com/themoeway/jmdict-go"
jmdict "github.com/yomidevs/jmdict-go"
"golang.org/x/exp/slices"
)

Expand Down
2 changes: 1 addition & 1 deletion jmdict_metadata.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package yomitan
import (
"strings"

jmdict "github.com/themoeway/jmdict-go"
jmdict "github.com/yomidevs/jmdict-go"
"golang.org/x/exp/slices"
)

Expand Down
2 changes: 1 addition & 1 deletion jmnedict.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"regexp"

jmdict "github.com/themoeway/jmdict-go"
jmdict "github.com/yomidevs/jmdict-go"
)

func jmnedictPublicationDate(dictionary jmdict.Jmnedict) string {
Expand Down
2 changes: 1 addition & 1 deletion kanjidic.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"strconv"

jmdict "github.com/themoeway/jmdict-go"
jmdict "github.com/yomidevs/jmdict-go"
)

func kanjidicExtractKanji(entry jmdict.KanjidicCharacter, language string) *dbKanji {
Expand Down
2 changes: 1 addition & 1 deletion kotowaza.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

zig "github.com/themoeway/zero-epwing-go"
zig "github.com/yomidevs/zero-epwing-go"
)

type kotowazaExtractor struct {
Expand Down
2 changes: 1 addition & 1 deletion koujien.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

zig "github.com/themoeway/zero-epwing-go"
zig "github.com/yomidevs/zero-epwing-go"
)

type koujienExtractor struct {
Expand Down
2 changes: 1 addition & 1 deletion meikyou.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

zig "github.com/themoeway/zero-epwing-go"
zig "github.com/yomidevs/zero-epwing-go"
)

type meikyouExtractor struct {
Expand Down
2 changes: 1 addition & 1 deletion scripts/build_dicts.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

go get github.com/themoeway/yomitan-import/tree/master/yomitan
go get github.com/yomidevs/yomitan-import/tree/master/yomitan

mkdir -p src
mkdir -p dst
Expand Down
2 changes: 1 addition & 1 deletion shougakukan2.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

zig "github.com/themoeway/zero-epwing-go"
zig "github.com/yomidevs/zero-epwing-go"
)

type shougakukan2Extractor struct {
Expand Down
2 changes: 1 addition & 1 deletion wadai.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"regexp"
"strings"

zig "github.com/themoeway/zero-epwing-go"
zig "github.com/yomidevs/zero-epwing-go"
)

type wadaiExtractor struct {
Expand Down
2 changes: 1 addition & 1 deletion yomitan-gtk/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/andlabs/ui"
_ "github.com/andlabs/ui/winmanifest"

yomitan "github.com/themoeway/yomitan-import"
yomitan "github.com/yomidevs/yomitan-import"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions yomitan/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import (
"os"
"path"

yomitan "github.com/themoeway/yomitan-import"
yomitan "github.com/yomidevs/yomitan-import"
)

func usage() {
fmt.Fprintf(os.Stderr, "Usage: %s [options] input-path output-path\n", path.Base(os.Args[0]))
fmt.Fprint(os.Stderr, "https://github.com/themoeway/yomitan-import/\n\n")
fmt.Fprint(os.Stderr, "https://github.com/yomidevs/yomitan-import/\n\n")
fmt.Fprint(os.Stderr, "Parameters:\n")
flag.PrintDefaults()
}
Expand Down
Loading