qutebrowser profile manager

Compare changes

Choose any two refs to compare.

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