From 35c6c48b2ea707f29a5ca9d98bb060c57883719a Mon Sep 17 00:00:00 2001 From: tqcq <99722391+tqcq@users.noreply.github.com> Date: Tue, 18 Mar 2025 03:34:15 +0000 Subject: [PATCH] feat support db_url --- lua/Trans/core/conf.lua | 9 +++++---- lua/Trans/core/install.lua | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/lua/Trans/core/conf.lua b/lua/Trans/core/conf.lua index 36f03f3..eafa270 100644 --- a/lua/Trans/core/conf.lua +++ b/lua/Trans/core/conf.lua @@ -6,6 +6,7 @@ return { ---@type string the directory for database file and password file dir = require 'Trans'.plugin_dir, + db_url = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip', debug = true, ---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua] theme = 'default', -- default | tokyonight | dracula @@ -24,10 +25,10 @@ return { query = 'fallback', border = 'rounded', title = vim.fn.has 'nvim-0.9' == 1 and { - { '', 'TransTitleRound' }, - { '󰊿 Trans', 'TransTitle' }, - { '', 'TransTitleRound' }, - } or nil, -- need nvim-0.9+ + { '', 'TransTitleRound' }, + { '󰊿 Trans', 'TransTitle' }, + { '', 'TransTitleRound' }, + } or nil, -- need nvim-0.9+ auto_play = true, ---@type {open: string | boolean, close: string | boolean, interval: integer} Hover Window Animation animation = { diff --git a/lua/Trans/core/install.lua b/lua/Trans/core/install.lua index 9de9216..08a9a1b 100644 --- a/lua/Trans/core/install.lua +++ b/lua/Trans/core/install.lua @@ -17,7 +17,7 @@ return function() end -- INFO :Download ultimate.db - local uri = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip' + local uri = Trans.conf.db_url local zip = dir .. '/ultimate.zip' local continue = fn.filereadable(zip) == 1 local handle = function(output)