Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
cc36281
Ignore env directory
Tahvohck Nov 29, 2020
6844c6e
Add vscode launch configuration
Tahvohck Nov 29, 2020
da8f056
Break reused code into function
Tahvohck Nov 29, 2020
88881d8
Documentation
Tahvohck Nov 29, 2020
ce66c43
Prevent indetation error down the line
Tahvohck Nov 29, 2020
b325418
Sort LUT to make it easier on coders
Tahvohck Nov 29, 2020
752700f
Remove blank whitespace
Tahvohck Nov 29, 2020
8a18710
Ignore rope metafiles
Tahvohck Nov 29, 2020
73c2432
Put modLibrary code into a function
Tahvohck Nov 29, 2020
7a6796a
Reduce log spam
Tahvohck Nov 29, 2020
76e6793
Create patch loop
Tahvohck Nov 29, 2020
58220f4
First framework for XPath-patching
Tahvohck Nov 30, 2020
5ec1b07
Add the remaining Attribute path operations
Tahvohck Nov 30, 2020
da51aa6
Cleanly handle failing patch
Tahvohck Nov 30, 2020
e0b9b26
Add editor typing
Tahvohck Nov 30, 2020
2f28a15
Add per-patch logging
Tahvohck Nov 30, 2020
dd85011
Implement XPath node replace
Tahvohck Nov 30, 2020
1aad8d5
Change Set operation to Insert, Change pass to NotImplemented
Tahvohck Nov 30, 2020
61ad411
Add documentation
Tahvohck Nov 30, 2020
16dac59
Update documentation
Tahvohck Nov 30, 2020
27459d0
Update AttributeAdd to match PatchOperation spec
Tahvohck Nov 30, 2020
0bcb097
Increase indent level
Tahvohck Nov 30, 2020
0fe9dac
Implement PatchOperationRemove
Tahvohck Nov 30, 2020
177d4c1
Implement PatchOperationInsert
Tahvohck Nov 30, 2020
f8cb321
Implement PatchOperationAdd
Tahvohck Nov 30, 2020
50c82ee
Bump version number
Tahvohck Nov 30, 2020
99927bc
Merge branch 'feat-xpath-patching' into develop
Tahvohck Nov 30, 2020
d670ea1
Move PatchOperation functions and switchDict into main scope
Tahvohck Nov 30, 2020
f33a0ea
Simplify PatchOperation function call at cost of extended setup in fu…
Tahvohck Nov 30, 2020
e0da882
Cherry-pick fix from bfb4fce5d1f63b4a82878c1ef704488ecf7aa23d
Tahvohck Dec 9, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ previous_spacehaven_path.txt
quicklaunch_*.jar
quicklaunch_*/
extra_mods_path.txt
env/
.vscode/.ropeproject/
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Startup file",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/spacehaven-modloader.py",
"console": "integratedTerminal"
}
]
}
Loading