Live data from Hacker News

ChatGPT: An attempt to build URL into cross-platform Desktop APP using Tauri

github.com

1–8 of 8 posts

Re: ChatGPT: An attempt to build URL into cross-platform Desktop APP using Tauri

#2
ChatGPT Desktop Application (Mac, Windows and Linux)

Tauri not only makes native applications with web technologies (html, js, css), but also packages the url into a desktop application that interacts well with the operating system (e.g. file reading and writing, system menus, shortcuts, script injection, etc.). It is easy to extend the limitations of web pages in the operating system.

Re: ChatGPT: An attempt to build URL into cross-platform Desktop APP using Tauri

#3
post #2

ChatGPT Desktop Application (Mac, Windows and Linux) Tauri not only makes native applications with web technologies (html, js, css), but also packages the url into a desktop application that interacts well with the operating system (e.g. file reading and writing, system menus, shortcuts, script injection, etc.). It is easy to extend the limitations of web pages in the operating system.

I was just looking at Tauri yesterday. How do you feel about using native web views? Made me worry about having to deal with subtle incompatibilities ala web design.

Re: ChatGPT: An attempt to build URL into cross-platform Desktop APP using Tauri

#5
Were sharable URLs added by ChatGPT recently or this app? I've wanted that for a while.

I noticed that's an option in the desktop app (for ex: https://chatgpt-static.s3.amazonaws.com/chats/yc98747.html) Sharing screenshots of long outputs was annoying and not mobile friendly. This would help popularize it.

Edit: nm I didnt read the REAME, it uses this:

https://github.com/liady/chatgpt-pdf

Re: ChatGPT: An attempt to build URL into cross-platform Desktop APP using Tauri

#6
post #2

ChatGPT Desktop Application (Mac, Windows and Linux) Tauri not only makes native applications with web technologies (html, js, css), but also packages the url into a desktop application that interacts well with the operating system (e.g. file reading and writing, system menus, shortcuts, script injection, etc.). It is easy to extend the limitations of web pages in the operating system.

I was just looking at Tauri yesterday. How do you feel about using native web views? Made me worry about having to deal with subtle incompatibilities ala web design.

Regarding web compatibility, it's actually ok, you can use front-end packaging tools to output the minimum browser version required. But tauri itself is more demanding on the system, for example in higher versions windows will use edge by default, lower versions need to bootstrap, or package specific browser versions into the application (but it will increase the size of the application significantly).

Re: ChatGPT: An attempt to build URL into cross-platform Desktop APP using Tauri

#8
post #5

Were sharable URLs added by ChatGPT recently or this app? I've wanted that for a while. I noticed that's an option in the desktop app (for ex: https://chatgpt-static.s3.amazonaws.com/chats/yc98747.html ) Sharing screenshots of long outputs was annoying and not mobile friendly. This would help popularize it. Edit: nm I didnt read the REAME, it uses this: https://github.com/liady/chatgpt-pdf

It already supports liady/chatgpt-pdf, in addition, it also supports script injection, and slash command (synchronizing data from f/awesome-chatgpt-prompts and filling it quickly with slash commands).

There are many more features that you can learn about by checking out the readme.