qutebrowser profile manager

Compare changes

Choose any two refs to compare.

Changed files
+7 -3
src
qbpm
+5 -1
CHANGELOG.md
··· 1 - # 2.1 1 + # next 2 + - add `--help` flag to `qbpm config` 3 + 4 + # ~2.1~ 2.2 2 5 - `config.toml` supports `application_name` for generated XDG desktop files 3 6 - defaults to `{profile_name} (qutebrowser profile)`, you may want just `{profile_name}` 4 7 - `qbpm desktop` can be used to replace existing desktop files 8 + - bumped to 2.2 because I pushed a 2.1 tag prematurely 5 9 6 10 # 2.0 7 11 ## config
+1 -1
pyproject.toml
··· 1 1 [project] 2 2 name = "qbpm" 3 - version = "2.0" 3 + version = "2.2" 4 4 description = "qutebrowser profile manager" 5 5 license = "GPL-3.0-or-later" 6 6 license-files = ["LICENSE"]
+1 -1
src/qbpm/main.py
··· 290 290 exit_with(exists) 291 291 292 292 293 - @main.group(context_settings={"help_option_names": []}) 293 + @main.group() 294 294 def config() -> None: 295 295 """Commands to create a qbpm config file. 296 296