Open Symmettry opened 8 months ago
also worth a mention here how you have the website version which here it doesn't need admin (and browsers don't need admin) giving no valid reason to require admin in the application itself.
also worth a mention here how you have the website version which here it doesn't need admin (and browsers don't need admin) giving no valid reason to require admin in the application itself.
please use the website, the app is just for people willing to use the website in one click, like I said hundreds of time, the app is the electron app template with one line of coded I added to load the website.
also worth a mention here how you have the website version which here it doesn't need admin (and browsers don't need admin) giving no valid reason to require admin in the application itself.
please use the website, the app is just for people willing to use the website in one click, like I said hundreds of time, the app is the electron app template with one line of coded I added to load the website.
So why does it need admin?
also worth a mention here how you have the website version which here it doesn't need admin (and browsers don't need admin) giving no valid reason to require admin in the application itself.
please use the website, the app is just for people willing to use the website in one click, like I said hundreds of time, the app is the electron app template with one line of coded I added to load the website.
So why does it need admin?
I think its because to install programs in program files it requires admin, I don't even know, it might be the installer I used
It needs admin because the installer wants to install into programm files (x86). Tho this isnt a local model you can run (would have surprised me at only ~80mb), no no. This is much more fucked up. Its a fucking electron client for his shitty website, where he resells ai modells with a huge markup with his prompts infront of your request so it generates in a consistent style.
I mean this isnt even a good implementation of electron, its not even a downloaded pwa. Its truely just his website in electron. And im to 99% sure with these comments on every line, even that isnt written by himself, i would guess ChatGPT?
import { app, BrowserWindow } from 'electron';
// Handle creating/removing shortcuts on Windows when installing/uninstalling.
if (require('electron-squirrel-startup')) { // eslint-disable-line global-require
app.quit();
}
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow;
const createWindow = () => {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 800,
height: 600,
});
// and load the index.html of the app.
mainWindow.loadURL("https://deep-pixels.com/Home");
// Open the DevTools.
//mainWindow.webContents.openDevTools();
// Emitted when the window is closed.
mainWindow.on('closed', () => {
// Dereference the window object, usually you would store windows
// in an array if your app supports multi windows, this is the time
// when you should delete the corresponding element.
mainWindow = null;
});
};
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.on('ready', createWindow);
// Quit when all windows are closed.
app.on('window-all-closed', () => {
// On OS X it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit();
}
});
app.on('activate', () => {
// On OS X it's common to re-create a window in the app when the
// dock icon is clicked and there are no other windows open.
if (mainWindow === null) {
createWindow();
}
});
// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and import them here.
So you're telling me you got an application that is not only closed source, detected by stuff like virustotal (albeit not too suspicious), and also requires admin w/o verification? What part of an ai needs admin? I've worked with using ai in my programs and never have i ever needed admin privileges to do so.