Skip to content
This repository was archived by the owner on Nov 13, 2023. It is now read-only.

Tags: miry/medup

Tags

v0.8.0

Toggle v0.8.0's commit message

Verified

This tag was signed with the committer’s verified signature.
miry Michael Nikitochkin
v0.8.0

h3. Changed
- Tags is an array instead of the list of words split with coma. (@miry)

h3. 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)

v0.7.0

Toggle v0.7.0's commit message

Verified

This tag was signed with the committer’s verified signature.
miry Michael Nikitochkin
v0.7.0

h3. Changed
- Introduce a article attribute `canonical_url`. (@miry)
- Markdown header is YAML compatible. (@miry)

h3. Added
- Introduce `--dry-run` argument to test without filesystem modifications. (#53, @miry)

v0.6.0

Toggle v0.6.0's commit message

Verified

This tag was signed with the committer’s verified signature.
miry Michael Nikitochkin
v0.6.0

h3. Added
- Introduce Dev.to integration. (#18, @miry)

h3. Changed
- Use crystal lang 1.5.0 (#56, @miry)

v0.5.0

Toggle v0.5.0's commit message

Verified

This tag was signed with the committer’s verified signature.
miry Michael Nikitochkin
v0.5.0

h3. 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)

v0.4.1

Toggle v0.4.1's commit message

Verified

This tag was signed with the committer’s verified signature.
miry Michael Nikitochkin
v0.4.1

h3. 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)

h3. Added
- Allow to specify `MEDUP_GITHUB_API_TOKEN` environment variable to increase
  number of requests to gist. (#47, @miry)

v0.4.0

Toggle v0.4.0's commit message

Verified

This tag was signed with the committer’s verified signature.
miry Michael Nikitochkin
v0.4.0

h3. 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)

h3. 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
  in `stderr`. (@miry)
- For rich elements with anotations or markups render next to iframe. (@miry)

v0.3.0

Toggle v0.3.0's commit message

Verified

This tag was signed with the committer’s verified signature.
miry Michael Nikitochkin
v0.3.0

Changed
- Update command line argument parse view. During error make sure the exit code is 1 (@miry)
- Use `podman` instead of `docker` (#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
- Add integration tests to test command line output (@miry)
- Extract targets(user, publication, single post) base on pattern. Download articles for different targets in same process. (#36, @miry)

v0.2.1

Toggle v0.2.1's commit message

Verified

This tag was signed with the committer’s verified signature.
miry Michael Nikitochkin
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)

v0.2.0

Toggle v0.2.0's commit message

Verified

This tag was signed with the committer’s verified signature.
miry Michael Nikitochkin
v0.2.0

Changed
- Use crystal lang 1.3.2 (#31, @miry)

Added
- Export posts from a publication (#31, @miry)
- Allow to save images to assets folder with option `--assets-images` (#33, @miry)

v0.1.10

Toggle v0.1.10's commit message

Verified

This commit was signed with the committer’s verified signature.
miry Michael Nikitochkin
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.