@@ -19,8 +19,8 @@ A Desktop-Like Experience
-# New name here soon :^)
-NEW_NAME_HERE delivers a desktop-like experience for Penpot users with the additional of integrating tabs to conveniently traverse back and forth between projects. Offline support is available through the select your own instance option in settings, as well as the theme settings that may be applied to either the entire desktop app or simply the Penpot dashboard.
+# Devojo
+Devojo delivers a desktop-like experience for Penpot users with the additional of integrating tabs to conveniently traverse back and forth between projects. Offline support is available through the select your own instance option in settings, as well as the theme settings that may be applied to either the entire desktop app or simply the Penpot dashboard.
## Building
### Requirements
@@ -48,7 +48,7 @@ yarn run build
## License
```
-Copyright (C) 2023 - 2025 MinPluto
+Copyright (C) 2022 - 2025 SudoVanilla
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
@@ -65,4 +65,4 @@ along with this program. If not, see https://www.gnu.org/licenses/.
```
___
-> Forking Penpot Desktop to GitHub will not be tolerated by SudoVanilla
\ No newline at end of file
+> Forking Devojo to GitHub will not be tolerated by SudoVanilla
\ No newline at end of file
diff --git a/build/electron-builder.yml b/build/electron-builder.yml
index 7e06ecb..e9bd3a2 100644
--- a/build/electron-builder.yml
+++ b/build/electron-builder.yml
@@ -1,11 +1,11 @@
-productName: "Penpot Desktop"
+productName: "Devojo"
appId: "org.sudovanilla.penpot"
asar: true
# Update Server
# publish:
# provider: "generic"
-# url: "https://sudovanilla.org/distribute/applications/penpot-desktop/latest/"
+# url: "https://sudovanilla.org/distribute/applications/devojo/latest/"
# macOS
mac:
@@ -25,8 +25,8 @@ win:
- "nsis" # Installer
nsis:
- shortcutName: "Penpot Desktop"
- artifactName: "Penpot Desktop - Setup.exe"
+ shortcutName: "Devojo"
+ artifactName: "Devojo - Setup.exe"
oneClick: false
displayLanguageSelector: true
allowElevation: false
@@ -42,11 +42,11 @@ linux:
description: "A Desktop-Like Experience"
icon: "build/icon.png"
target:
- - deb # Debian/Ubuntu
- - rpm # RHEL/Fedora
- - freebsd # BSD
- - pacman # For Arch
- - AppImage # Universal
+ # - deb # Debian/Ubuntu
+ # - rpm # RHEL/Fedora
+ # - freebsd # BSD
+ # # - pacman # For Arch
+ # - AppImage # Universal
- snap # Snapcraft Store - Can't build arm version on amd64 machines(comment Snap out if you plan to)
snap:
diff --git a/build/extra/penpot-desktop.desktop b/build/extra/penpot-desktop.desktop
index 918b7be..1c7bed9 100644
--- a/build/extra/penpot-desktop.desktop
+++ b/build/extra/penpot-desktop.desktop
@@ -1,9 +1,9 @@
[Desktop Entry]
-Name=Penpot Desktop
+Name=Devojo
Exec=/usr/local/bin/penpot-desktop.AppImage %U
Terminal=false
Type=Application
Icon=penpot-desktop
-StartupWMClass=Penpot Desktop
+StartupWMClass=Devojo
Comment=A Desktop-Like Experience
Categories=Graphics;
diff --git a/package.json b/package.json
index 2a4aa08..d4eed9b 100644
--- a/package.json
+++ b/package.json
@@ -1,13 +1,13 @@
{
- "name": "penpot-desktop",
- "version": "0.3.1",
+ "name": "devojo",
+ "version": "0.4.0",
"author": "SudoVanilla",
"license": "AGPL-3.0-or-later",
"trustedDependencies": [
"electron"
],
"main": "src/process/index.js",
- "homepage": "https://ark.sudovanilla.org/Korbs/Penpot-Desktop/",
+ "homepage": "https://ark.sudovanilla.org/Korbs/Devojo/",
"keywords": [
"design",
"prototyping",
@@ -15,7 +15,7 @@
"graphics"
],
"bugs": {
- "url": "https://ark.sudovanilla.org/Korbs/Penpot-Desktop/issues",
+ "url": "https://ark.sudovanilla.org/Korbs/Devojo/issues",
"email": "korbs@sudovanilla.org"
},
"funding": [
diff --git a/src/base/index.html b/src/base/index.html
index 71dbae0..1a4acf4 100644
--- a/src/base/index.html
+++ b/src/base/index.html
@@ -1,6 +1,6 @@
- Penpot Desktop
+ Devojo
diff --git a/src/process/menu.js b/src/process/menu.js
index 5ef7d34..daf7810 100644
--- a/src/process/menu.js
+++ b/src/process/menu.js
@@ -161,7 +161,7 @@ module.exports = {
label: 'Source Code',
click: async () => {
const { shell } = require('electron')
- await shell.openExternal('https://sudovanilla.com/code/Korbs/Penpot-Desktop/-/tree/main')
+ await shell.openExternal('https://ark.sudovanilla.org/Korbs/Devojo/-/tree/main')
}
}
]
diff --git a/src/process/window.js b/src/process/window.js
index d72d445..0af95c9 100644
--- a/src/process/window.js
+++ b/src/process/window.js
@@ -48,9 +48,9 @@ module.exports = {
ipcMain.on('MaximizeWindow', () => {mainWindow.maximize()})
ipcMain.on('UnmaximizeWindow', () => {mainWindow.restore()})
ipcMain.on('MinimizeWindow', () => {mainWindow.minimize()})
- // ipcMain.on('OpenHelp', () => {shell.openExternal('https://unrevealed-title.docs.sudovanilla.org/penpot-desktop/')})
+ ipcMain.on('OpenHelp', () => {shell.openExternal('https://devojo.docs.sudovanilla.org/')})
ipcMain.on('OpenCommunity', () => {shell.openExternal('https://community.penpot.app/')})
- // ipcMain.on('OpenOffline', () => {shell.openExternal('https://unrevealed-title.docs.sudovanilla.org/penpot-desktop/features/offline-use/')})
+ ipcMain.on('OpenOffline', () => {shell.openExternal('https://devojo.docs.sudovanilla.org/')})
if (process.platform === 'darwin') {
// Move Tabs when entering or existing fullscreen on macOS