Skip to content

Commit

Permalink
Update V1.50
Browse files Browse the repository at this point in the history
Allow new ChatGPT url
  • Loading branch information
woheller69 committed May 4, 2024
1 parent fb865c5 commit cd1c19f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "org.woheller69.gptassist"
minSdk 21
targetSdk 33
versionCode 140
versionName "1.40"
versionCode 150
versionName "1.50"
}

buildTypes {
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/java/org/woheller69/gptassist/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public class MainActivity extends Activity {
private final Context context = this;
private SwipeTouchListener swipeTouchListener;
private String TAG ="gptAssist";
private String urlToLoad = "https://chat.openai.com/";
private String urlToLoad = "https://chatgpt.com/";
private static boolean restricted = true;

private static final ArrayList<String> allowedDomains = new ArrayList<String>();
Expand Down Expand Up @@ -294,6 +294,7 @@ public void resetChat() {
private static void initURLs() {
//Allowed Domains
allowedDomains.add("cdn.auth0.com");
allowedDomains.add("chatgpt.com");
allowedDomains.add("openai.com");
allowedDomains.add("fileserviceuploadsperm.blob.core.windows.net");
allowedDomains.add("cdn.oaistatic.com");
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/150.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Allow new ChatGPT url

0 comments on commit cd1c19f

Please sign in to comment.