Skip to content

Commit

Permalink
update: directory structure, add: password support (closes #13, #21, #24
Browse files Browse the repository at this point in the history
)
  • Loading branch information
metaist committed Jun 5, 2023
1 parent e3eea02 commit ff2ad07
Show file tree
Hide file tree
Showing 21 changed files with 1,354 additions and 808 deletions.
16 changes: 16 additions & 0 deletions .cspell.json
@@ -0,0 +1,16 @@
{
"version": "0.2",
"language": "en",
"words": [
"attrbox",
"docopt",
"isrange",
"Metaist",
"pdfmerge",
"pdfs",
"pdoc",
"pypdf",
"rangify",
"unrotated"
]
}
12 changes: 12 additions & 0 deletions .editorconfig
@@ -0,0 +1,12 @@
root = true

[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.py]
indent_size = 4
1 change: 1 addition & 0 deletions .gitattributes
@@ -0,0 +1 @@
CHANGELOG.md -text merge=union
32 changes: 29 additions & 3 deletions .gitignore
@@ -1,3 +1,29 @@
*~
*.pyc
.coverage
.env

# general
_ignore*
_seed.py
.venv*
*.db

# editors
.idea
.vim
.vscode
*.code-workspace
.DS_Store

# run
__pycache__

# test
.coverage*
.mypy_cache
.pytest_cache
.ruff_cache
/htmlcov

# build
*.egg-info
/build
/dist
249 changes: 0 additions & 249 deletions .pylint.ini

This file was deleted.

5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

54 changes: 54 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,54 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog] and this project adheres to [Semantic Versioning].

Sections order is: `Fixed`, `Changed`, `Added`, `Deprecated`, `Removed`, `Security`.

[keep a changelog]: http://keepachangelog.com/en/1.0.0/
[semantic versioning]: http://semver.org/spec/v2.0.0.html

---

## [Unreleased]

[unreleased]: https://github.com/metaist/visual-schedule/compare/prod...main

These are changes that are on `main` that are not yet in `prod`.

---

[#12]: https://github.com/metaist/pdfmerge/pull/12
[0.0.7]: https://github.com/metaist/pdfmerge/compare/0.0.6...0.0.7

## [0.0.7] - 2015-01-01T03:28:13Z

**Fixed**

- [#12]: installing `pdfmerge` when `PyPDF2` is not installed

**Added**

- [#12]: decrypting PDFs

---

[0.0.6]: https://github.com/metaist/pdfmerge/compare/0.0.5...0.0.6

## [0.0.6] - 2014-05-02T02:11:13Z

**Removed**

- unnecessary dependencies to make sure `pip install pdfmerge` works correctly

---

[#11]: https://github.com/metaist/pdfmerge/issues/11
[0.0.5]: https://github.com/metaist/pdfmerge/commits/0.0.5

## [0.0.5] - 2014-05-02T01:19:20Z

**Changed**

- [#11]: Upgraded to `PyPDF2`
5 changes: 0 additions & 5 deletions MANIFEST.in

This file was deleted.

0 comments on commit ff2ad07

Please sign in to comment.