Skip to content

Commit

Permalink
Add warning to the standalone code
Browse files Browse the repository at this point in the history
  • Loading branch information
noDRM committed Aug 2, 2023
1 parent 815f880 commit 2a14132
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 0 deletions.
12 changes: 12 additions & 0 deletions DeDRM_plugin/standalone/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@

# Copyright © 2021 NoDRM

"""
NOTE: This code is not functional (yet). I started working on it a while ago
to make a standalone version of the plugins that could work without Calibre,
too, but for now there's only a rough code structure and no working code yet.
Currently, to use these plugins, you will need to use Calibre. Hopwfully that'll
change in the future.
"""


OPT_SHORT_TO_LONG = [
["c", "config"],
["e", "extract"],
Expand Down
11 changes: 11 additions & 0 deletions DeDRM_plugin/standalone/jsonconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@

# Taken from Calibre code - Copyright © 2008, Kovid Goyal [email protected], GPLv3

"""
NOTE: This code is not functional (yet). I started working on it a while ago
to make a standalone version of the plugins that could work without Calibre,
too, but for now there's only a rough code structure and no working code yet.
Currently, to use these plugins, you will need to use Calibre. Hopwfully that'll
change in the future.
"""

#@@CALIBRE_COMPAT_CODE@@

import sys, os, codecs, json
Expand Down
11 changes: 11 additions & 0 deletions DeDRM_plugin/standalone/passhash.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@

# Copyright © 2021 NoDRM

"""
NOTE: This code is not functional (yet). I started working on it a while ago
to make a standalone version of the plugins that could work without Calibre,
too, but for now there's only a rough code structure and no working code yet.
Currently, to use these plugins, you will need to use Calibre. Hopwfully that'll
change in the future.
"""

#@@CALIBRE_COMPAT_CODE@@

import os, sys
Expand Down
11 changes: 11 additions & 0 deletions DeDRM_plugin/standalone/remove_drm.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@

# Copyright © 2021 NoDRM

"""
NOTE: This code is not functional (yet). I started working on it a while ago
to make a standalone version of the plugins that could work without Calibre,
too, but for now there's only a rough code structure and no working code yet.
Currently, to use these plugins, you will need to use Calibre. Hopwfully that'll
change in the future.
"""

#@@CALIBRE_COMPAT_CODE@@

import os, sys
Expand Down

0 comments on commit 2a14132

Please sign in to comment.