From 5b0b548f7f0f5a69e91a616fa3708b27655a18e6 Mon Sep 17 00:00:00 2001
From: sashinator <153520423+sashinator@users.noreply.github.com>
Date: Mon, 11 Dec 2023 07:28:43 -0800
Subject: [PATCH] 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.
---
.idea/.gitignore | 8 ++++++++
.idea/DRPCreative_C4D2023Fix.iml | 11 +++++++++++
.idea/modules.xml | 8 ++++++++
.idea/vcs.xml | 6 ++++++
src/app.rs | 2 +-
5 files changed, 34 insertions(+), 1 deletion(-)
create mode 100644 .idea/.gitignore
create mode 100644 .idea/DRPCreative_C4D2023Fix.iml
create mode 100644 .idea/modules.xml
create mode 100644 .idea/vcs.xml
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..13566b8
--- /dev/null
+++ b/.idea/.gitignore
@@ -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
diff --git a/.idea/DRPCreative_C4D2023Fix.iml b/.idea/DRPCreative_C4D2023Fix.iml
new file mode 100644
index 0000000..cf84ae4
--- /dev/null
+++ b/.idea/DRPCreative_C4D2023Fix.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..d677290
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app.rs b/src/app.rs
index bc27e26..27992a0 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -119,7 +119,7 @@ impl Apps {
C4d: App {
default_project_name: "Cinema 4D Project".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,
},
Maya: App {