Investigamer / Proxyshop

A Photoshop automation tool for generating high quality Magic the Gathering card renders.
Mozilla Public License 2.0
98 stars 21 forks source link

Only italicize reminder text. #84

Closed lmancini closed 8 months ago

lmancini commented 8 months ago

Changes generate_italics to only process reminder text.

Investigamer commented 8 months ago

@lmancini PR merged! 🚀 In the future, make sure to send in commits using commitizen (one of the dependencies of the project installed by poetry) so commit messages are standardized and are automatically added to future changelogs 👍 Short little explanation how:

# Stage files for commit
git add .

# Commit with commitizen
cz commit

# Send a signed commit with commitizen (preferred but not required)
cz commit -- -s

# Send a signed commit on older versions of commitizen
cz commit -s

It'll ask you a few questions before sending the commit but it is pretty straightforward! In this case it would probly be:

  1. type of change: fix
  2. scope of change: cards or generate_italics, can be a module, or a function, or a class, or a feature name, however specific you wanna make it!
  3. summary of change: Only italicize reminder text.
  4. additional notes: Maybe list other minor fixes or changes that occurred in this commit, or reference a related issue, or leave blank.

The next couple prompts you can just hit enter, and then you're good! Will produce a commit message like this:

fix(generate_italics): Only italicize reminder text.