mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2025-01-13 07:33:53 +08:00
.
This commit is contained in:
parent
63e5dfd27b
commit
c46b9e05b1
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
set(VERSION_MAJOR 6)
|
set(VERSION_MAJOR 6)
|
||||||
set(VERSION_MINOR 19)
|
set(VERSION_MINOR 19)
|
||||||
set(VERSION_PATCH 0)
|
set(VERSION_PATCH 1)
|
||||||
set(VERSION_REVISION 0)
|
set(VERSION_REVISION 0)
|
||||||
set(LUNA_VERSION "{${VERSION_MAJOR},${VERSION_MINOR},${VERSION_PATCH},${VERSION_REVISION}}")
|
set(LUNA_VERSION "{${VERSION_MAJOR},${VERSION_MINOR},${VERSION_PATCH},${VERSION_REVISION}}")
|
||||||
add_library(VERSION_DEF ${CMAKE_CURRENT_LIST_DIR}/version_def.cpp)
|
add_library(VERSION_DEF ${CMAKE_CURRENT_LIST_DIR}/version_def.cpp)
|
||||||
|
@ -62,7 +62,7 @@ function safe_weblio_search_word(word){
|
|||||||
}</script>
|
}</script>
|
||||||
"""
|
"""
|
||||||
links = []
|
links = []
|
||||||
style = simplehtmlparser(html, "style", "<style>")[7:-8]
|
style = self.parse_stylesheet(simplehtmlparser(html, "style", "<style>")[7:-8], self.klass)
|
||||||
for link in simplehtmlparser_all(html, "link", '<link rel="stylesheet"'):
|
for link in simplehtmlparser_all(html, "link", '<link rel="stylesheet"'):
|
||||||
for _ in re.findall('href="(.*?)"', link):
|
for _ in re.findall('href="(.*?)"', link):
|
||||||
links.append("https:" + _)
|
links.append("https:" + _)
|
||||||
|
@ -813,11 +813,13 @@ class AnkiWindow(QWidget):
|
|||||||
("screenshot", self.editpath.text()),
|
("screenshot", self.editpath.text()),
|
||||||
]:
|
]:
|
||||||
if len(_):
|
if len(_):
|
||||||
|
with open(_, "rb") as ff:
|
||||||
|
b64 = base64.b64encode(ff.read()).decode()
|
||||||
media.append(
|
media.append(
|
||||||
[
|
[
|
||||||
{
|
{
|
||||||
"path": _,
|
"data": b64,
|
||||||
"filename": str(uuid.uuid4()) + os.path.basename(_),
|
"filename": str(uuid.uuid4()) + os.path.splitext(_)[1],
|
||||||
"fields": [k],
|
"fields": [k],
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -57,6 +57,9 @@
|
|||||||
var htmlcontents = ''
|
var htmlcontents = ''
|
||||||
var scriptElementss = []
|
var scriptElementss = []
|
||||||
var scriptElementsssrc = []
|
var scriptElementsssrc = []
|
||||||
|
if (dictionaryInfo.length == 1) {
|
||||||
|
document.getElementById('tab_buttons').style.display = 'none'
|
||||||
|
}
|
||||||
for (var iiii = 0; iiii < dictionaryInfo.length; iiii++) {
|
for (var iiii = 0; iiii < dictionaryInfo.length; iiii++) {
|
||||||
htmltabbuttons += '<button type="button" onclick="onclickbtn(\'' + dictionaryInfo[iiii]['dict'] + '\')" id="luna_dict_btn_' + dictionaryInfo[iiii]['dict'] + '" class="tab-button' + (iiii == 0 ? ' active' : '') + '">' + dictionaryInfo[iiii]['name'] + '</button>'
|
htmltabbuttons += '<button type="button" onclick="onclickbtn(\'' + dictionaryInfo[iiii]['dict'] + '\')" id="luna_dict_btn_' + dictionaryInfo[iiii]['dict'] + '" class="tab-button' + (iiii == 0 ? ' active' : '') + '">' + dictionaryInfo[iiii]['name'] + '</button>'
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user