Releases: hacksalot/HackMyResume
v1.5.0
Added
- HackMyResume now supports CLI-based generation of PDF formats across multiple engines (Phantom, wkhtmltopdf, etc). Instead of talking to these engines over a programmatic API, as in prior versions, HackMyResume 1.5+ speaks to them over the same command-line interface (CLI) you'd use if you were using these tools directly.
- HackMyResume will now (attempt to) generate a PDF output for JSON Resume themes (in addition to HTML).
- Minor README and FAQ additions.
Changed
- Cleaner, quicker installs. Installing HackMyResume with
npm install hackmyresume -g
will no longer trigger a lengthy, potentially error-prone install for Phantom.js and/or wkhtmltopdf for PDF support. Instead, users can install these engines externally and HMR will use them when present. - Minor error handling improvements.
Fixed
- Fixed an error with generating specific formats with the
BUILD
command (#97). - Fixed numerous latent/undocumented bugs and glitches.
v1.4.2
v1.4.1
Added
hackmyresume new
now generates a valid starter resume with sample data.
Fixed
- Fixed warning message when
hackmyresume new
is run without a filename.
v1.4.0
Added
- "Projects" support: FRESH resumes and themes can now store and display
open source, commercial, private, personal, and creative projects. - New command: ANALYZE. Inspect your resume for gaps, keyword counts, and other metrics. (Experimental.)
- Side-by-side PDF generation with Phantom and wkhtmltopdf. Use the
--pdf
or-p
flag to pick betweenphantom
andwkhtmltopdf
generation. - Disable PDF generation with the
--pdf none
switch. - Inherit formats between themes. Themes can now inherit formats (Word, HTML, .txt, etc.) from other themes. (FRESH themes only.)
- Rename resume sections to different languages or wordings.
- Specify complex options via external file. Use with the
-o
or--opts
option. - Disable colors with the
--no-color
flag. - Theme messages and usage tips instructions will now appear in the default HackMyResume output for the
build
command. Runhackmyresume build resume.json -t awesome
for an example. Turn off with the--no-tips
flag. - Treat validation errors as warnings with the
--assert
switch (VALIDATE command only).
Fixed
- Fixed a minor glitch in the FRESCA schema.
- Fixed encoding issues in the
Highlights
section of certain resumes. - Fix behavior of
-s
and--silent
flags.
Changed
- PDF generation now defaults to Phantom for all platforms, with
wkhtmltopdf
accessible with--pdf wkhtmltopdf
. - Resumes are now validated, by default, prior to generation. This
behavior can be disabled with the--novalidate
or--force
switch. - Syntax errors in source FRESH and JSON Resumes are now captured for all
commands. - Minor updates to README.
- Most themes now inherit Markdown and Plain Text formats from the Basis
theme.
Internal
- Switched from color to chalk.
- Command invocations now handled through commander.js.
- Improved FRESH theme infrastructure (more partials, more DRY).
v1.3.1
v1.3.0
Added
-
Local generation of JSON Resume themes. To use a JSON Resume theme, first install it with
npm install jsonresume-theme-[blah]
(most JSON Resume themes are on NPM). Then pass it into HackMyResume via the-t
parameter:hackmyresume BUILD resume.json TO out/somefile.all -t node_modules/jsonresume-theme-classy
-
Better Markdown support. HackMyResume will start flowing basic Markdown styles to JSON Resume (HTML) themes. FRESH's existing Markdown support has also been improved.
-
.PNG output formats will start appearing in themes that declare an HTML output.
-
Tweak CSS embedding / linking via the --css option (
<style></style>
vs<link>
). Only works for HTML (or HTML-driven) formats of FRESH themes. Use--css=link
to link in CSS assets and--css=embed
to embed the styles in the HTML document. For examplehackmyresume BUILD resume.json TO out/resume.all --css=link
. -
Improved Handlebars/Underscore helper support for FRESH themes. Handlebars themes can access helpers via
{{helperName}}
. Underscore themes can access helpers via theh
object.
Changed
- Distinguish between validation errors and syntax errors when validating a FRESH or JRS resume with
hackmyresume validate <blah>
. - Emit line and column info for syntax errors during validation of FRESH and JRS resumes.
- FRESH themes now embed CSS into HTML formats by default so that the HTML resume output doesn't have an external CSS file dependency by default. Users can specify normal linked stylesheets by setting
--css=link
. - Renamed fluent-themes repo to fresh-themes in keeping with the other parts of the project.
Fixed
- Fix various encoding errors in MS Word outputs.
- Fix assorted FRESH-to-JRS and JRS-to-FRESH conversion glitches.
- Fix error when running HMR with no parameters.
- Other minor fixes [To be continued]
v1.3.0-beta
[Numerous changes supporting v1.3.0]