Value | Color |
---|---|
\e[0;30m | Black |
\e[0;31m | Red |
\e[0;32m | Green |
\e[0;33m | Yellow |
\e[0;34m | Blue |
\e[0;35m | Purple |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info"> | |
<mime-type type="application/vnd.google-apps.document"> | |
<comment>Google Docs</comment> | |
<glob pattern="*.gdoc" /> | |
</mime-type> | |
<mime-type type="application/vnd.google-apps.drawing"> | |
<comment>Google Drawings</comment> | |
<glob pattern="*.gdraw" /> | |
</mime-type> |
The first step to doing anything with Blankstorm is to get a clone of the game locally.
Download and install Git from https://git-scm.com/downloads.
You should enable the "Git GUI here" and "Git Bash here" options if you are using Windows 10 as that will make step 2 easier. You must include support for Git LFS.
Find a folder where you would like to put your local clone, then open Git Bash (either using "Git Bash here" or using Windows terminal) from the right-click or context menu.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Adds some useful git aliases | |
echo "Adding aliases" | |
# Lists changes (i.e. commit messages) | |
# "- " prefixed before each line after any whitespace for easily making a markdown list | |
# You can optionally provide from and to tags. | |
# `git ls-changes` will list changes from the last tag to HEAD | |
# `git ls-changes tag_a` will list changes from tag_a to HEAD |