mkdocs-document-dates 1.0.0__tar.gz → 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/PKG-INFO +6 -1
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/README.md +6 -1
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates.egg-info/PKG-INFO +6 -1
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/setup.py +1 -1
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/LICENSE +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/__init__.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/hooks/pre-commit +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/__init__.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/ar.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/de.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/en.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/es.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/fr.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/ja.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/ko.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/ru.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/zh.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/zh_tw.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/plugin.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/styles.py +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates.egg-info/SOURCES.txt +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates.egg-info/dependency_links.txt +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates.egg-info/entry_points.txt +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates.egg-info/requires.txt +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates.egg-info/top_level.txt +0 -0
- {mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: mkdocs-document-dates
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.1.0
|
4
4
|
Summary: A MkDocs plugin for displaying accurate document creation and last modification dates.
|
5
5
|
Home-page: https://github.com/jaywhj/mkdocs-document-dates
|
6
6
|
Author: Aaron Wang
|
@@ -112,3 +112,8 @@ modified: 2023-12-31
|
|
112
112
|
- Linux: Uses modification time as creation time due to system limitations, if you need the exact creation time, you can manually specify it in Front Matter
|
113
113
|
- It still works when using CI/CD build systems (e.g. Github Actions)
|
114
114
|
- Used a cache file `.dates_cache.json` to solve this problem
|
115
|
+
- You can configure it like this: `pip install --upgrade mkdocs-document-dates` or `pip install mkdocs-document-dates==1.1.0`
|
116
|
+
```
|
117
|
+
- run: pip install --upgrade mkdocs-document-dates
|
118
|
+
- run: mkdocs gh-deploy --force
|
119
|
+
```
|
@@ -89,4 +89,9 @@ modified: 2023-12-31
|
|
89
89
|
- macOS: Uses file creation time (birthtime)
|
90
90
|
- Linux: Uses modification time as creation time due to system limitations, if you need the exact creation time, you can manually specify it in Front Matter
|
91
91
|
- It still works when using CI/CD build systems (e.g. Github Actions)
|
92
|
-
- Used a cache file `.dates_cache.json` to solve this problem
|
92
|
+
- Used a cache file `.dates_cache.json` to solve this problem
|
93
|
+
- You can configure it like this: `pip install --upgrade mkdocs-document-dates` or `pip install mkdocs-document-dates==1.1.0`
|
94
|
+
```
|
95
|
+
- run: pip install --upgrade mkdocs-document-dates
|
96
|
+
- run: mkdocs gh-deploy --force
|
97
|
+
```
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates.egg-info/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: mkdocs-document-dates
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.1.0
|
4
4
|
Summary: A MkDocs plugin for displaying accurate document creation and last modification dates.
|
5
5
|
Home-page: https://github.com/jaywhj/mkdocs-document-dates
|
6
6
|
Author: Aaron Wang
|
@@ -112,3 +112,8 @@ modified: 2023-12-31
|
|
112
112
|
- Linux: Uses modification time as creation time due to system limitations, if you need the exact creation time, you can manually specify it in Front Matter
|
113
113
|
- It still works when using CI/CD build systems (e.g. Github Actions)
|
114
114
|
- Used a cache file `.dates_cache.json` to solve this problem
|
115
|
+
- You can configure it like this: `pip install --upgrade mkdocs-document-dates` or `pip install mkdocs-document-dates==1.1.0`
|
116
|
+
```
|
117
|
+
- run: pip install --upgrade mkdocs-document-dates
|
118
|
+
- run: mkdocs gh-deploy --force
|
119
|
+
```
|
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/__init__.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/hooks/pre-commit
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/__init__.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/ar.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/de.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/en.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/es.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/fr.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/ja.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/ko.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/ru.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/zh.py
RENAMED
File without changes
|
{mkdocs_document_dates-1.0.0 → mkdocs_document_dates-1.1.0}/mkdocs_document_dates/lang/zh_tw.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|