├── .devcontainer └── devcontainer.json ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md ├── assets └── rename_project.png ├── src ├── changes │ ├── append_ini_entry.rs │ ├── change.rs │ ├── mod.rs │ ├── rename_file.rs │ ├── replace_in_file.rs │ └── set_ini_entry.rs ├── cli.rs ├── engine.rs ├── lib.rs ├── main.rs ├── presentation.rs ├── unreal.rs ├── wizard.rs └── workflows │ ├── mod.rs │ ├── rename_module │ ├── changeset.rs │ ├── interactive.rs │ └── mod.rs │ ├── rename_plugin │ ├── changeset.rs │ ├── interactive.rs │ └── mod.rs │ ├── rename_project │ ├── changeset.rs │ ├── interactive.rs │ └── mod.rs │ ├── rename_target │ ├── changeset.rs │ ├── interactive.rs │ └── mod.rs │ └── workflow.rs ├── test └── Code │ ├── .renom │ └── backup │ │ ├── 2b253e8343275b72482b0bb052817104e9e451d520f89cb6d46d875d055b1f92 │ │ ├── 97982eeb225c13a3acc917ff160b52da11d997bef252892dd8ea664b7af9a880 │ │ ├── ae402c8d6c6d3831a2af7c24992eb9b13a3a9defc3991f620fa23f96a69b8e56 │ │ └── b5bcc01f76d27d33012aaad227dbcc03eeeeb456a1c25d2772c62cee8cfe9a54 │ ├── Code.uproject │ ├── Config │ ├── DefaultEditor.ini │ ├── DefaultEngine.ini │ └── DefaultGame.ini │ └── Source │ ├── Code.Target.cs │ ├── Code │ ├── Code.Build.cs │ ├── Code.cpp │ ├── Code.h │ ├── CodeGameModeBase.cpp │ └── CodeGameModeBase.h │ └── CodeEditor.Target.cs └── tests ├── ini.rs └── resources └── ini └── quoted_value.ini /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/README.md -------------------------------------------------------------------------------- /assets/rename_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/assets/rename_project.png -------------------------------------------------------------------------------- /src/changes/append_ini_entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/changes/append_ini_entry.rs -------------------------------------------------------------------------------- /src/changes/change.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/changes/change.rs -------------------------------------------------------------------------------- /src/changes/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/changes/mod.rs -------------------------------------------------------------------------------- /src/changes/rename_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/changes/rename_file.rs -------------------------------------------------------------------------------- /src/changes/replace_in_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/changes/replace_in_file.rs -------------------------------------------------------------------------------- /src/changes/set_ini_entry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/changes/set_ini_entry.rs -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/engine.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/presentation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/presentation.rs -------------------------------------------------------------------------------- /src/unreal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/unreal.rs -------------------------------------------------------------------------------- /src/wizard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/wizard.rs -------------------------------------------------------------------------------- /src/workflows/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/mod.rs -------------------------------------------------------------------------------- /src/workflows/rename_module/changeset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_module/changeset.rs -------------------------------------------------------------------------------- /src/workflows/rename_module/interactive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_module/interactive.rs -------------------------------------------------------------------------------- /src/workflows/rename_module/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_module/mod.rs -------------------------------------------------------------------------------- /src/workflows/rename_plugin/changeset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_plugin/changeset.rs -------------------------------------------------------------------------------- /src/workflows/rename_plugin/interactive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_plugin/interactive.rs -------------------------------------------------------------------------------- /src/workflows/rename_plugin/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_plugin/mod.rs -------------------------------------------------------------------------------- /src/workflows/rename_project/changeset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_project/changeset.rs -------------------------------------------------------------------------------- /src/workflows/rename_project/interactive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_project/interactive.rs -------------------------------------------------------------------------------- /src/workflows/rename_project/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_project/mod.rs -------------------------------------------------------------------------------- /src/workflows/rename_target/changeset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_target/changeset.rs -------------------------------------------------------------------------------- /src/workflows/rename_target/interactive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_target/interactive.rs -------------------------------------------------------------------------------- /src/workflows/rename_target/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/rename_target/mod.rs -------------------------------------------------------------------------------- /src/workflows/workflow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/src/workflows/workflow.rs -------------------------------------------------------------------------------- /test/Code/.renom/backup/2b253e8343275b72482b0bb052817104e9e451d520f89cb6d46d875d055b1f92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/.renom/backup/2b253e8343275b72482b0bb052817104e9e451d520f89cb6d46d875d055b1f92 -------------------------------------------------------------------------------- /test/Code/.renom/backup/97982eeb225c13a3acc917ff160b52da11d997bef252892dd8ea664b7af9a880: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/.renom/backup/97982eeb225c13a3acc917ff160b52da11d997bef252892dd8ea664b7af9a880 -------------------------------------------------------------------------------- /test/Code/.renom/backup/ae402c8d6c6d3831a2af7c24992eb9b13a3a9defc3991f620fa23f96a69b8e56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/.renom/backup/ae402c8d6c6d3831a2af7c24992eb9b13a3a9defc3991f620fa23f96a69b8e56 -------------------------------------------------------------------------------- /test/Code/.renom/backup/b5bcc01f76d27d33012aaad227dbcc03eeeeb456a1c25d2772c62cee8cfe9a54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/.renom/backup/b5bcc01f76d27d33012aaad227dbcc03eeeeb456a1c25d2772c62cee8cfe9a54 -------------------------------------------------------------------------------- /test/Code/Code.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Code.uproject -------------------------------------------------------------------------------- /test/Code/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Code/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /test/Code/Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Config/DefaultGame.ini -------------------------------------------------------------------------------- /test/Code/Source/Code.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Source/Code.Target.cs -------------------------------------------------------------------------------- /test/Code/Source/Code/Code.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Source/Code/Code.Build.cs -------------------------------------------------------------------------------- /test/Code/Source/Code/Code.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Source/Code/Code.cpp -------------------------------------------------------------------------------- /test/Code/Source/Code/Code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Source/Code/Code.h -------------------------------------------------------------------------------- /test/Code/Source/Code/CodeGameModeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Source/Code/CodeGameModeBase.cpp -------------------------------------------------------------------------------- /test/Code/Source/Code/CodeGameModeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Source/Code/CodeGameModeBase.h -------------------------------------------------------------------------------- /test/Code/Source/CodeEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/test/Code/Source/CodeEditor.Target.cs -------------------------------------------------------------------------------- /tests/ini.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UnrealisticDev/Renom/HEAD/tests/ini.rs -------------------------------------------------------------------------------- /tests/resources/ini/quoted_value.ini: -------------------------------------------------------------------------------- 1 | key="value" --------------------------------------------------------------------------------