commit f1881d4366f44214576cf037b737430393430c5c Author: pyr0ball Date: Mon May 25 19:09:51 2026 -0700 chore: initial repo scaffold diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..15ed321 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +__pycache__/ +*.py[cod] +*.egg-info/ +.pytest_cache/ +.venv/ +*.bak +tests/fixtures/prefs-missing/.keep diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..7d8c972 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Changelog + +All notable changes to Illuscape are documented here. +Format follows [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +Versioning follows [Semantic Versioning](https://semver.org/). + +## [Unreleased] + +### Added +- Initial release: preferences patch, CC and CS6 keyboard presets, + color palettes, document templates, XML merge installer diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..30f9d5b --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Illuscape Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..c62601a --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# Illuscape + +> Inkscape configured for Adobe Illustrator migrants. + +Illuscape patches Inkscape's config to match Illustrator's keyboard shortcuts, +workspace layout, scroll/zoom behavior, color palettes, and document templates — +without modifying Inkscape itself. + +## Install + +```bash +git clone https://github.com/your-org/illuscape +cd illuscape +./install.sh +``` + +Follow the prompt to select your Illustrator era (CC or CS6), then open Inkscape. + +## Uninstall + +```bash +./uninstall.sh +``` + +Your original Inkscape config is restored from backup. + +## License + +MIT