Skip to content

Commit

Permalink
Merge branch 'master' into clean_non_poetry_files
Browse files Browse the repository at this point in the history
  • Loading branch information
lra authored Nov 4, 2023
2 parents cfbb913 + a60d177 commit c84fb36
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 21 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## WIP

- Removed support for kindaVim (via @godbout)
- Removed support for Wooshy (via @godbout)
- Removed support for Scrolla (via @godbout)
- fix: Deprecated SafeConfigParser resolved
- bugfix: added Brewfile

## Mackup 0.8.38

- Build and release with poetry
Expand Down
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,6 @@ See the [README](doc/README.md) file in the doc directory for more info.
- [Keymo](http://manytricks.com/keymo/)
- [KeyRemap4MacBook](https://pqrs.org/osx/karabiner/)
- [Khd](https://github.com/koekeishiya/khd/)
- [kindaVim](https://kindavim.app)
- [kitty](https://sw.kovidgoyal.net/kitty/)
- [Krew](https://github.com/kubernetes-sigs/krew)
- [Kubectl](https://kubernetes.io/docs/reference/kubectl/overview/)
Expand Down Expand Up @@ -597,7 +596,6 @@ See the [README](doc/README.md) file in the doc directory for more info.
- [Screenhero](https://screenhero.com)
- [Scrivener](http://www.literatureandlatte.com/scrivener.php)
- [Scroll Reverser](https://pilotmoon.com/scrollreverser/)
- [Scrolla](https://scrolla.app)
- [SecureCRT](https://www.vandyke.com/products/securecrt/)
- [Secure Pipes](http://www.opoet.com/)
- [Seil](https://pqrs.org/osx/karabiner/seil.html.en)
Expand Down Expand Up @@ -702,7 +700,6 @@ See the [README](doc/README.md) file in the doc directory for more info.
- [WhatsApp Web](https://web.whatsapp.com/)
- [Wireshark 2](https://www.wireshark.org)
- [Witch](http://manytricks.com/witch/)
- [Wooshy](https://wooshy.app)
- [WordGrinder](https://cowlark.com/wordgrinder/)
- [WordPress WP-CLI](http://wp-cli.org/)
- [Workrave](http://www.workrave.org/)
Expand Down
1 change: 1 addition & 0 deletions mackup/applications/homebrew.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ name = Homebrew

[configuration_files]
.Brewfile
Brewfile
5 changes: 0 additions & 5 deletions mackup/applications/kindavim.cfg

This file was deleted.

5 changes: 0 additions & 5 deletions mackup/applications/scrolla.cfg

This file was deleted.

5 changes: 0 additions & 5 deletions mackup/applications/wooshy.cfg

This file was deleted.

2 changes: 1 addition & 1 deletion mackup/appsdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(self):
self.apps = dict()

for config_file in ApplicationsDatabase.get_config_files():
config = configparser.SafeConfigParser(allow_no_value=True)
config = configparser.ConfigParser(allow_no_value=True)

# Needed to not lowercase the configuration_files in the ini files
config.optionxform = str
Expand Down
4 changes: 2 additions & 2 deletions mackup/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,15 +139,15 @@ def _setup_parser(self, filename=None):
filename (str) or None
Returns:
SafeConfigParser
ConfigParser
"""
assert isinstance(filename, str) or filename is None

# If we are not overriding the config filename
if not filename:
filename = MACKUP_CONFIG_FILE

parser = configparser.SafeConfigParser(
parser = configparser.ConfigParser(
allow_no_value=True, inline_comment_prefixes=(";", "#")
)
parser.read(os.path.join(os.path.join(os.environ["HOME"], filename)))
Expand Down

0 comments on commit c84fb36

Please sign in to comment.