Changed line 122 of app.rs to look for "Cinema 4D" rather than "Cinema 4D R" for support of Cinema 4D 2023.0.1. May also support earlier and later versions - will test a few and add to issue.
This commit is contained in:
parent
bd015a83f6
commit
5b0b548f7f
5 changed files with 34 additions and 1 deletions
8
.idea/.gitignore
vendored
Normal file
8
.idea/.gitignore
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
11
.idea/DRPCreative_C4D2023Fix.iml
Normal file
11
.idea/DRPCreative_C4D2023Fix.iml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<module type="EMPTY_MODULE" version="4">
|
||||||
|
<component name="NewModuleRootManager">
|
||||||
|
<content url="file://$MODULE_DIR$">
|
||||||
|
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||||
|
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||||
|
</content>
|
||||||
|
<orderEntry type="inheritedJdk" />
|
||||||
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
|
</component>
|
||||||
|
</module>
|
8
.idea/modules.xml
Normal file
8
.idea/modules.xml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectModuleManager">
|
||||||
|
<modules>
|
||||||
|
<module fileurl="file://$PROJECT_DIR$/.idea/DRPCreative_C4D2023Fix.iml" filepath="$PROJECT_DIR$/.idea/DRPCreative_C4D2023Fix.iml" />
|
||||||
|
</modules>
|
||||||
|
</component>
|
||||||
|
</project>
|
6
.idea/vcs.xml
Normal file
6
.idea/vcs.xml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -119,7 +119,7 @@ impl Apps {
|
||||||
C4d: App {
|
C4d: App {
|
||||||
default_project_name: "Cinema 4D Project".to_string(),
|
default_project_name: "Cinema 4D Project".to_string(),
|
||||||
drp_client_id: "936296341250904065".to_string(),
|
drp_client_id: "936296341250904065".to_string(),
|
||||||
process_search_string: "Cinema 4D R".to_string(),
|
process_search_string: "Cinema 4D".to_string(),
|
||||||
kind: AppKind::C4d,
|
kind: AppKind::C4d,
|
||||||
},
|
},
|
||||||
Maya: App {
|
Maya: App {
|
||||||
|
|
Loading…
Reference in a new issue