This repository has been archived by the owner on Nov 13, 2023. It is now read-only.
Releases: miry/medup
Releases · miry/medup
v0.8.0
Changed
- Tags is an array instead of the list of words split with coma. (@miry)
Fixed
- Overlapping style and link tags could produce an incredible Markdown.
Because of WYSIWYG, plenty of hidden things that could destroy Markdown.
Introduce a workaround to have swap places last space and closing elements.
Ignore links without anchor text.
There are still more possibilities to break Markdown. (#59, @miry)
Full Changelog: v0.7.0...v0.8.0
Install
MacOS
$ brew tap miry/medup
$ brew install medup
$ medup --help
$ medup -u <user>
$ medup -p <publisher>
$ medup --platform=devto -u <user>
Docker
$ docker run --rm -v <path to local articles folder>:/posts -it miry/medup:0.8.0 -u <user> -v7
v0.7.0
Changed
Added
Full Changelog: v0.6.0...v0.7.0
Install
MacOS
$ brew tap miry/medup
$ brew install medup
$ medup --help
$ medup -u <user>
$ medup -p <publisher>
$ medup --platform=devto -u <user>
Docker
$ docker run --rm -v <path to local articles folder>:/posts -it miry/medup:0.7.0 -u <user> -v4
v0.6.0
Added
Changed
Full Changelog: v0.5.0...v0.6.0
Install
MacOS
$ brew tap miry/medup
$ brew install medup
$ medup --help
$ medup -u <user>
$ medup -p <publisher>
$ medup --platform=devto -u <user>
Docker
$ docker run --rm -v <path to local articles folder>:/posts -it miry/medup:0.6.0 -u <user> -v4
v0.5.0
Added
- Allow to change the download distination for assets with flag
--assets-dir=<DIR>
. (#40, @miry) - Allow to change the uri path for assets inside document with
--assets-base-path=<BASE_PATH>
.
It help to access assets in case the global assets path or custom directory. (#40, @miry) - Support Demo with Bridgetown via command
rake demo:bridgetown:serve
. (@miry)
Full Changelog: v0.4.1...v0.5.0
Install
MacOS
$ brew tap miry/medup
$ brew install medup
$ medup --help
$ medup -u <user>
$ medup -p <publisher>
Docker
$ docker run --rm -v <path to local articles folder>:/posts -it miry/medup:0.5.0 -u <user> -v4
v0.4.1
Changed
- Update article' url tag to get value from response, instead of from commandline
arguments (@miry) - Update the code to use Context pattern. Combine in it options, logger and
settings. (#47, @miry)
Added
- Allow to specify
MEDUP_GITHUB_API_TOKEN
environment variable to increase
number of requests to gist. (#47, @miry)
Full Changelog: v0.4.0...v0.4.1
Install
MacOS
$ brew tap miry/medup
$ brew install medup
$ medup --help
$ medup -u <user>
$ medup -p <publisher>
Docker
$ docker run --rm -v <path to local articles folder>:/posts -it miry/medup:0.4.1 -u <user> -v4
v0.4.0
Changed
- Inline gist media as code block inside a result markdown file. (#39, @miry)
- Inline youtube media as link instead of iframe. (#42, @miry)
- Inline twitter media as blockquote instead of iframe. (#44, @miry)
- Inline general embedy media as link with thumbnail image instead of iframe. (#45, @miry)
Added
- Move most of debug output to logger. Allow to specify the verbosity of output
with parameter-v[NUM]
. Previous messages debug messages are appeared
instderr
. (@miry) - For rich elements with anotations or markups render next to iframe. (@miry)
Full Changelog: v0.3.0...v0.4.0
Install
MacOS
$ brew tap miry/medup
$ brew install medup
$ medup --help
$ medup -u <user>
$ medup -p <publisher>
Docker
$ docker run --rm -v <path to local articles folder>:/posts -it miry/medup:0.4.0 -u <user> -v4
v0.3.0
Changed
- Update command line argument parse view. During error make sure the exit code is 1 (@miry)
- Use
podman
instead ofdocker
(#35, @miry) - Use crystal lang 1.4.0 (@miry)
Fixed
- Custom domain posts returns excpetions, fixed the problem (@miry)
- Detect downloaded assets' type and add missing extension (#37, @miry)
Added
v0.2.1
Changed
- Use crystal version from shard for Dockerfile (@miry)
Fixed
- Skip download assets images without option
--assets-images
(@miry) - Emoji breaks markdown rendering (#34, @miry, @clawfire)
Install
MacOS
$ brew tap miry/medup
$ brew install medup
$ medup --help
$ medup -u <user>
Docker
$ docker run --rm -v <path to local articles folder>:/posts -it miry/medup:0.2.1 -u <user>
v0.2.0
v0.1.10
Support crystal v1.0.0 Update the libraries and crystal version to 1.0.0 Switched to alpine version of crystal to build a static linking build in Dockerfile. It helps to decrease the size of docker image from 200MB to 20MB. Reason to use Alpine: Static linking is not working properly with glibc.