mirror of
https://github.com/venthur/blag.git
synced 2025-11-26 13:13:06 +00:00
Compare commits
42 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c45fb44c9f | ||
|
|
f09b30d069 | ||
|
|
d836025594 | ||
|
|
ea345c6464 | ||
|
|
31b2a6d592 | ||
|
|
ad41be706d | ||
|
|
04b022276c | ||
|
|
9c1f93d075 | ||
|
|
0276f6b328 | ||
|
|
a3637621d7 | ||
|
|
392181e728 | ||
|
|
b44c303d7a | ||
|
|
90f8296a62 | ||
|
|
298a828ecd | ||
|
|
9acbc77fea | ||
|
|
90437f05ab | ||
|
|
33ae0e4482 | ||
|
|
37c5a4eca6 | ||
|
|
7b14d7dcbd | ||
|
|
35d5ab93cd | ||
|
|
8ba56b6b27 | ||
|
|
df84fbb96a | ||
|
|
609b49b6f2 | ||
|
|
34d33d380c | ||
|
|
c1b16e9a82 | ||
|
|
db1d81713c | ||
|
|
ee3d289ea0 | ||
|
|
75b926de67 | ||
|
|
0b7e898f3a | ||
|
|
acce7d1c32 | ||
|
|
e4786eca74 | ||
|
|
62f36cdd05 | ||
|
|
111957883e | ||
|
|
a1cfe01373 | ||
|
|
3cfd756ac1 | ||
|
|
32fff6dabb | ||
|
|
86826c0c03 | ||
|
|
f646c89152 | ||
|
|
1db80df0ce | ||
|
|
2c15b2c2dd | ||
|
|
44d5c4d694 | ||
|
|
1ebae15cda |
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,5 +1,17 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [2.1.0] -- 2023-08-27
|
||||||
|
|
||||||
|
* default theme: `img` have now `max-width: 100%` by default to avoid very
|
||||||
|
large images overflowing
|
||||||
|
* packaging: explicitly list `templates`, `static` and `content` as packages
|
||||||
|
instead of relying on package-data for setuptools. additionally, created a
|
||||||
|
MANIFEST.in to add the contents of these directories here as well. the
|
||||||
|
automatic finding of namespace packages and packaga-data, currently does not
|
||||||
|
work as advertised in setuptools' docs
|
||||||
|
* updated dependencies
|
||||||
|
* created debian/watch
|
||||||
|
|
||||||
## [2.0.0] - 2023-06-16
|
## [2.0.0] - 2023-06-16
|
||||||
|
|
||||||
### Breaking
|
### Breaking
|
||||||
|
|||||||
3
MANIFEST.in
Normal file
3
MANIFEST.in
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
recursive-include blag/content *
|
||||||
|
recursive-include blag/static *
|
||||||
|
recursive-include blag/templates *
|
||||||
@@ -16,7 +16,8 @@ blag is named after [the blag of the webcomic xkcd][blagxkcd].
|
|||||||
## Features
|
## Features
|
||||||
|
|
||||||
* Write content in [Markdown][]
|
* Write content in [Markdown][]
|
||||||
* Good looking default theme
|
* Good looking default theme:
|
||||||
|

|
||||||
* Theming support using [Jinja2][] templates
|
* Theming support using [Jinja2][] templates
|
||||||
* Generation of Atom feeds for blog content
|
* Generation of Atom feeds for blog content
|
||||||
* Fenced code blocks and syntax highlighting using [Pygments][]
|
* Fenced code blocks and syntax highlighting using [Pygments][]
|
||||||
|
|||||||
@@ -7,3 +7,5 @@ Tags: blag
|
|||||||
## Second Post
|
## Second Post
|
||||||
|
|
||||||
This page serves no purpose :)
|
This page serves no purpose :)
|
||||||
|
|
||||||
|

|
||||||
|
|||||||
BIN
blag/static/blag.png
Normal file
BIN
blag/static/blag.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 94 KiB |
@@ -48,6 +48,10 @@ aside {
|
|||||||
color: var(--foreground-dim);
|
color: var(--foreground-dim);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__VERSION__ = "2.0.0"
|
__VERSION__ = "2.1.0"
|
||||||
|
|||||||
14
debian/changelog
vendored
14
debian/changelog
vendored
@@ -1,3 +1,17 @@
|
|||||||
|
blag (2.1.0) unstable; urgency=medium
|
||||||
|
|
||||||
|
* default theme: `img` have now `max-width: 100%` by default to avoid very
|
||||||
|
large images overflowing
|
||||||
|
* packaging: explicitly list `templates`, `static` and `content` as packages
|
||||||
|
instead of relying on package-data for setuptools. additionally, created a
|
||||||
|
MANIFEST.in to add the contents of these directories here as well. the
|
||||||
|
automatic finding of namespace packages and packaga-data, currently does
|
||||||
|
not work as advertised in setuptools' docs
|
||||||
|
* updated dependencies
|
||||||
|
* created debian/watch
|
||||||
|
|
||||||
|
-- Bastian Venthur <venthur@debian.org> Sun, 27 Aug 2023 15:27:39 +0200
|
||||||
|
|
||||||
blag (2.0.0) unstable; urgency=medium
|
blag (2.0.0) unstable; urgency=medium
|
||||||
|
|
||||||
* new upstream version
|
* new upstream version
|
||||||
|
|||||||
9
debian/watch
vendored
Normal file
9
debian/watch
vendored
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# You can run the "uscan" command to check for upstream updates and more.
|
||||||
|
# See uscan(1) for format
|
||||||
|
|
||||||
|
# Compulsory line, this is a version 4 file
|
||||||
|
version=4
|
||||||
|
|
||||||
|
# Direct Git
|
||||||
|
opts="mode=git" https://github.com/venthur/blag.git \
|
||||||
|
refs/tags/v([\d\.]+) debian uupdate
|
||||||
BIN
docs/blag.png
Normal file
BIN
docs/blag.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 94 KiB |
@@ -17,6 +17,7 @@ blag is named after [the blag of the webcomic xkcd][blagxkcd].
|
|||||||
|
|
||||||
* Write content in [Markdown][]
|
* Write content in [Markdown][]
|
||||||
* Good looking default theme
|
* Good looking default theme
|
||||||
|

|
||||||
* Theming support using [Jinja2][] templates
|
* Theming support using [Jinja2][] templates
|
||||||
* Generation of Atom feeds for blog content
|
* Generation of Atom feeds for blog content
|
||||||
* Fenced code blocks and syntax highlighting using [Pygments][]
|
* Fenced code blocks and syntax highlighting using [Pygments][]
|
||||||
|
|||||||
@@ -47,16 +47,12 @@ version = {attr = "blag.__VERSION__" }
|
|||||||
[tool.setuptools]
|
[tool.setuptools]
|
||||||
packages = [
|
packages = [
|
||||||
"blag",
|
"blag",
|
||||||
|
"blag.templates",
|
||||||
|
"blag.static",
|
||||||
|
"blag.content",
|
||||||
"tests",
|
"tests",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.setuptools.package-data]
|
|
||||||
blag = [
|
|
||||||
"templates/*",
|
|
||||||
"static/*",
|
|
||||||
"content/*",
|
|
||||||
]
|
|
||||||
|
|
||||||
[tool.pytest.ini_options]
|
[tool.pytest.ini_options]
|
||||||
addopts = """
|
addopts = """
|
||||||
--cov=blag
|
--cov=blag
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
build==0.10.0
|
build==0.10.0
|
||||||
mkdocs==1.4.3
|
mkdocs==1.5.2
|
||||||
mkdocs-material==9.1.15
|
mkdocs-material==9.1.21
|
||||||
mkdocstrings[python]==0.20.0
|
mkdocstrings[python]==0.22.0
|
||||||
twine==4.0.2
|
twine==4.0.2
|
||||||
wheel==0.40.0
|
wheel==0.41.1
|
||||||
pytest==7.3.2
|
pytest==7.4.0
|
||||||
pytest-cov==4.0.0
|
pytest-cov==4.1.0
|
||||||
flake8==6.0.0
|
flake8==6.1.0
|
||||||
mypy==1.2.0
|
mypy==1.5.1
|
||||||
types-markdown==3.4.2.9
|
types-markdown==3.4.2.10
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
markdown==3.4.3
|
markdown==3.4.4
|
||||||
feedgenerator==2.0.0
|
feedgenerator==2.1.0
|
||||||
jinja2==3.1.2
|
jinja2==3.1.2
|
||||||
pygments==2.15.1
|
pygments==2.16.1
|
||||||
|
|||||||
Reference in New Issue
Block a user