Skip to content

Commit 032f82d

Browse files
committed
v4.0.6 added visible version snippet to plugin
1 parent 4958ad0 commit 032f82d

File tree

6 files changed

+26
-3
lines changed

6 files changed

+26
-3
lines changed

calibreletssharebooks/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class LetsShareBooks(InterfaceActionBase):
1414
description = 'Share your Calibre library at http://www.memoryoftheworld.org'
1515
supported_platforms = ['windows', 'osx', 'linux']
1616
author = 'Marcell Mars'
17-
version = (4, 0, 5)
17+
version = (4, 0, 6)
1818
minimum_calibre_version = (0, 9, 30)
1919
actual_plugin = 'calibre_plugins.letssharebooks.ui:LetsShareBooksUI'
2020

calibreletssharebooks/_version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.5
1+
4.0.6
387 Bytes
Binary file not shown.
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
body {
2+
background-image: url("favicon.svg");
3+
background-size: contain;
4+
background-repeat: no-repeat;
5+
background-color: #ffffff;
6+
background-position: center;
7+
}
8+
9+
.version {
10+
position: fixed;
11+
bottom: 0;
12+
right:0;
13+
color: red;
14+
font-weight: bold;
15+
}
+8-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
1-
<center><img height="90%" src="favicon.svg"/></center>
1+
<html>
2+
<head>
3+
<link rel="stylesheet" type="text/css" href="favicon.css" />
4+
</head>
5+
<body>
6+
<div class="version">[let's share books] v4.0.6</div>
7+
</body>
8+
</html>

calibreletssharebooks/ui.py

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
# css
6161
'portable/bootstrap/css/bootstrap.min.css',
6262
'portable/style.css',
63+
'portable/favicon.css',
6364
# images
6465
'portable/favicon.svg',
6566
'portable/motw.ico',

0 commit comments

Comments
 (0)