summaryrefslogtreecommitdiff
path: root/bin
AgeCommit message (Collapse)Author
2024-01-16Drop MOBI support (#458)Marat Radchenko
Amazon is slowly killing it, it's just a question of time when it fully dies. References: * https://kdp.amazon.com/en_US/help/topic/GULSQMHU5MNH4EZM > Starting August 1, 2021, we will no longer support MOBI files for reflowable eBooks. Use EPUB, DOCX or KPF to publish new or update reflowable eBooks. * https://www.amazon.com/gp/help/customer/display.html?nodeId=G5WYD9SAF7PGXRNA > Beginning in late 2022, you'll no longer be able to send MOBI (.AZW, .MOBI) files to your Kindle library using Send to Kindle. This change won't affect any MOBI files already in your Kindle library. You can still read them with Kindle. MOBI is an older file format and won't support the newest Kindle features for documents. * https://www.reddit.com/r/kindle/comments/16rw6e3/amazon_announcement_about_mobi_support_timeline/ > We will end all Send to Kindle support for MOBI files by December 20, 2023. * https://www.mobileread.com/forums/showthread.php?t=336365 > Does anyone still have Kindle Previewer installer older than 3.49 that you could share? The reason I am looking for it is because newer versions no longer open .mobi files.
2024-01-07Update rubocop requirement from ~> 1.28.2 to ~> 1.50.2 (#454)dependabot[bot]
Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.28.2...v1.50.2) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-01-23resolves #245 drop leftover Asciidoctor <1.5.3 compatibility code (PR #246)Marat Radchenko
2020-01-20resolves #223 set up Rubocop linter (PR #226)Marat Radchenko
resolves #223 Rubocop config was takes as-is from https://github.com/asciidoctor/asciidoctor-pdf/blob/e80edba41fa724bef5f43ca30028afd873e07317/.rubocop.yml * Apply rubocop auto-fix Manual adjustments: 1. Changed parentheses in nested assignments in packager.rb Old: if ::File.readable?(resolved_avatar = ::File.join workdir, avatar) New: if ::File.readable? resolved_avatar = (::File.join workdir, avatar) 2. Dropped pre-ruby-2.0 support from Gemfile 3. Joined nested if's starting with `if doc.attr? 'publisher'` into if/elsif chain in packager.rb It was triggering 'Bundler/DuplicatedGem: Gem kindlegen requirements already given on line 12 of the Gemfile.'. But since oldest supported is 2.3, this should be ok.
2017-03-25update adb-push-book to honor file extension if specifiedDan Allen
2016-01-05use failproof relative require logic in bin scriptDan Allen
2015-10-01resolves #32 cli should identify as asciidoctor-epub3, report versionDan Allen
2014-07-29use relative require for asciidoctor-epub3 in cliDan Allen
2014-07-29rewrite converter as set of Asciidoctor extensionsDan Allen
- introduce converter to control Packager - remap existing converter to convert only content documents - delegate to asciidoctor cli in asciidoctor-epub3 cli
2014-07-29rewrite adb-push-ebook as Ruby scriptDan Allen
2014-04-16make it soDan Allen