diff --git a/.DS_Store b/.DS_Store
index 9d4c9d5..d370773 100644
Binary files a/.DS_Store and b/.DS_Store differ
diff --git a/README.md b/README.md
index 653d718..e609fc7 100755
--- a/README.md
+++ b/README.md
@@ -9,6 +9,14 @@ kindle manager
1. 按书本标题搜索,并输出markdown格式标注
1. 按作者搜索内容,并输出markdown格式标注
+o
+
+
+
+
+
+
+
在`My Clippings.txt`中,有3种类型
### 书签 ###
格式为:
diff --git a/__init__.py b/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/classes.png b/classes.png
new file mode 100644
index 0000000..f79a125
Binary files /dev/null and b/classes.png differ
diff --git a/design/book_info_view.JPG b/design/book_info_view.JPG
new file mode 100644
index 0000000..e7bcefa
Binary files /dev/null and b/design/book_info_view.JPG differ
diff --git a/design/class_map.JPG b/design/class_map.JPG
new file mode 100644
index 0000000..e50b0c3
Binary files /dev/null and b/design/class_map.JPG differ
diff --git a/design/IMG_0543.JPG b/design/config_dialog.JPG
similarity index 100%
rename from design/IMG_0543.JPG
rename to design/config_dialog.JPG
diff --git a/design/IMG_0585.JPG b/design/main_window.JPG
similarity index 100%
rename from design/IMG_0585.JPG
rename to design/main_window.JPG
diff --git a/design/IMG_0586.JPG b/design/main_window_toolbar.JPG
similarity index 100%
rename from design/IMG_0586.JPG
rename to design/main_window_toolbar.JPG
diff --git a/design/IMG_0581.JPG b/design/word_view.JPG
similarity index 100%
rename from design/IMG_0581.JPG
rename to design/word_view.JPG
diff --git a/kmanapp.py b/kmanapp.py
index de8c532..86611bf 100644
--- a/kmanapp.py
+++ b/kmanapp.py
@@ -36,6 +36,13 @@ notes_temp = """
《{bookname}》
{content}
【P{position}】
"""
+infos_temp = """
+ 《{bookname}》
+ {author}
+ ({time})
+ {rate}★ ☆
+ {img}
"""
+
words_temp = """
{usage}
{bookname}
{author}
@@ -200,9 +207,10 @@ class kmanWindow(QMainWindow):
if comp in [1,2]:
if len(self.filter_list)>0:
[stype,sbookname,sauthor,sposition,stime,scontent] = self.filter_list[0]
- self.ui.textEdit.setHtml(notes_temp.format(
- bookname=sbookname, author=sauthor, time=stime,
- note=stype, content=scontent, position=sposition))
+ tt = notes_temp.format( bookname=sbookname, author=sauthor, time=stime,
+ note=stype, content=scontent, position=sposition)
+ print(re.split(r'[\((\-\::_\s]',sbookname.strip())[0])
+ self.ui.textEdit.setHtml(tt)
elif comp in [3,4]:
self.render_textedit_words(self.words_data)
diff --git a/packages.png b/packages.png
new file mode 100644
index 0000000..13afef2
Binary files /dev/null and b/packages.png differ
diff --git a/tparseamazon.py b/tfile/tparseamazon.py
similarity index 100%
rename from tparseamazon.py
rename to tfile/tparseamazon.py
diff --git a/tsqllite.py b/tfile/tsqllite.py
similarity index 100%
rename from tsqllite.py
rename to tfile/tsqllite.py
diff --git a/ttranslator.py b/tfile/ttranslator.py
similarity index 100%
rename from ttranslator.py
rename to tfile/ttranslator.py