Kenivia

Results 11 comments of Kenivia

This should fix #17 and #14

Its supposed to be generated by calibre base class plugin with the `with self:`line, I’m not too sure why it didn’t work for you. I’ll check the pull request later...

Can you try printing sys.path right after `with self:`? Maybe theres a slash on the end of the path?

@DakotaNelson Hey, how did you run the .sh script on Windows? I think the issue is the `__enter__` function defined here: https://github.com/kovidgoyal/calibre/blob/master/src/calibre/customize/__init__.py#:~:text=def%20__enter__(self%2C%20*,append(self.sys_insertion_path) , but I'm struggling to run the script...

@DakotaNelson I see that you're using `calibre-customize.exe -b ./` to install the plugin. This command zips the whole folder - so that the source libraries are in the `target` folder...

Hey guys, I've found a workaround for this. In the `__init__.py` file, around line 32: ```sys.path.append(self.plugin_path)``` What's being added to `sys.path` is the path to the zip file, as [documented...

@atze007 The script `create_plugin_zip.sh` will 1: make a target folder and put the libraries in it and 2: put both the target folder, `__init__.py`, `config.py` and the other files into...

@atze007 It’s in this repository 👍

I had a look in config.json and found that "savedVolume" was set to 93. I deleted the variable and the issue went away, but I've never touched the config file...

After digging around the source code & testing it appears that the plugin will update "savedVolume" in the config file(or add it in if it was deleted before) when using...