{"id":47183050,"url":"https://github.com/Dushistov/sdcv","last_synced_at":"2026-04-01T07:00:47.279Z","repository":{"id":38486838,"uuid":"60255100","full_name":"Dushistov/sdcv","owner":"Dushistov","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-17T07:55:59.000Z","size":53245,"stargazers_count":347,"open_issues_count":36,"forks_count":48,"subscribers_count":13,"default_branch":"master","last_synced_at":"2026-02-14T05:04:02.315Z","etag":null,"topics":["console","dictionaries","dictionary","utility"],"latest_commit_sha":null,"homepage":"https://dushistov.github.io/sdcv/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Dushistov.png","metadata":{"files":{"readme":"README.org","changelog":"NEWS","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2016-06-02T10:27:41.000Z","updated_at":"2026-01-25T15:33:23.000Z","dependencies_parsed_at":"2024-06-20T00:06:22.746Z","dependency_job_id":"79d29361-9dd6-4a7d-aece-c012d15608a2","html_url":"https://github.com/Dushistov/sdcv","commit_stats":{"total_commits":161,"total_committers":17,"mean_commits":9.470588235294118,"dds":"0.27329192546583847","last_synced_commit":"beebb0faa79bf138c6e3b143d4b43b4bc142d92e"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Dushistov/sdcv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dushistov%2Fsdcv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dushistov%2Fsdcv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dushistov%2Fsdcv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dushistov%2Fsdcv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Dushistov","download_url":"https://codeload.github.com/Dushistov/sdcv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Dushistov%2Fsdcv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31269180,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T06:57:45.811Z","status":"ssl_error","status_checked_at":"2026-04-01T06:57:42.389Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["console","dictionaries","dictionary","utility"],"created_at":"2026-03-13T08:00:38.403Z","updated_at":"2026-04-01T07:00:47.273Z","avatar_url":"https://github.com/Dushistov.png","language":"C++","funding_links":[],"categories":["\u003ca name=\"writing\"\u003e\u003c/a\u003eWriting"],"sub_categories":[],"readme":"#+OPTIONS: ^:nil\n[[https://github.com/Dushistov/sdcv/actions?query=workflow%3ACI+branch%3Amaster][https://github.com/Dushistov/sdcv/workflows/CI/badge.svg]]\n[[https://github.com/Dushistov/sdcv/blob/master/LICENSE][https://img.shields.io/badge/license-GPL%202-brightgreen.svg]]\n\n* sdcv\n*sdcv* is a simple, cross-platform, text-based utility for working with dictionaries in [[http://stardict-4.sourceforge.net/][StarDict]] format.\n* How to compile and install\n#+BEGIN_SRC sh\nmkdir /tmp/build-sdcv\ncd /tmp/build-sdcv\ncmake path/to/source/code/of/sdcv\nmake\n#+END_SRC\nif you enable nls then you should also type\n#+BEGIN_SRC sh\nmake lang\n#+END_SRC\n** to install type\n#+BEGIN_SRC sh\nmake install\n#+END_SRC\nyou can use \"DESTDIR\" variable to change installation path\n\n* Documentation\nSee sdcv man page for usage description.\n\n* Bugs\nTo report bugs use https://github.com/Dushistov/sdcv/issues ,\nif it is not possible you can report it via email to dushistov at mail dot ru.\nBe sure to include the word \"sdcv\" somewhere in the \"Subject:\" field.\n\n* Integration with [[https://github.com/junegunn/fzf][fzf]]\nUseful when you have multiple dictionaries\n#+BEGIN_SRC sh\nfzf --prompt=\"Dict: \" \\\n    --phony \\\n    --bind \"enter:reload(sdcv {q} -n --json | jq '.[].dict' -r)\" \\\n    --preview \"sdcv {q} -en --use-dict={}\" \\\n    --preview-window=right:70%:wrap \\\n   \u003c \u003c(echo)\n#+END_SRC\n\n* Integration with readline\nThis lines can be added to inputrc file (~/.inputrc, /etc/inputrc),\nto abort multiply usage with ESC:\n#+begin_src\n$if sdcv\n    \"\\e\\e\": \"-1\\n\"\n$endif\n#+end_src\n\n* Notes to developer\n** make source code release\n#+BEGIN_SRC sh\nmake package_source\n#+END_SRC\n** update translation\n#+BEGIN_SRC sh\ncd po\nxgettext -k_ ../src/*.cpp -o new.pot\nmsgmerge -U sdcv.pot new.pot\nrm new.pot\nfor i in `ls *.po`; do msgmerge -U $i sdcv.pot; done\n#+END_SRC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDushistov%2Fsdcv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDushistov%2Fsdcv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDushistov%2Fsdcv/lists"}