-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0f45c30
Showing
14 changed files
with
4,397 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
app-id: com.maxizamorano.photoweb | ||
runtime: org.freedesktop.Platform | ||
runtime-version: '23.08' | ||
sdk: org.freedesktop.Sdk | ||
base: org.electronjs.Electron2.BaseApp | ||
base-version: "23.08" | ||
command: photoweb.sh | ||
sdk-extensions: | ||
- org.freedesktop.Sdk.Extension.node20 | ||
finish-args: | ||
- --socket=x11 | ||
- --share=network | ||
- --filesystem=xdg-download | ||
- --device=dri | ||
build-options: | ||
append-path: /usr/lib/sdk/node20/bin | ||
env: | ||
NPM_CONFIG_LOGLEVEL: info | ||
modules: | ||
- name: photoweb | ||
buildsystem: simple | ||
build-options: | ||
env: | ||
XDG_CACHE_HOME: /run/build/photoweb/cache | ||
build-commands: | ||
- npm install | ||
- npm run dist | ||
- > | ||
if [ "$FLATPAK_ARCH" = "x86_64" ]; then | ||
cp -r dist/linux-unpacked/* /app/main/; | ||
elif [ "$FLATPAK_ARCH" = "aarch64" ]; then | ||
cp -r dist/linux-arm64-unpacked/* /app/main/; | ||
fi | ||
- install -D -t /app/bin photoweb.sh | ||
- mkdir -p /app/main | ||
- install -Dm755 /app/main/resources/data/com.maxizamorano.photoweb.desktop -t /app/share/applications | ||
- install -Dm644 /app/main/resources/data/com.maxizamorano.photoweb.metainfo.xml -t /app/share/metainfo | ||
- install -Dm644 /app/main/resources/icons/photoweb.png /app/share/icons/hicolor/512x512/apps/com.maxizamorano.photoweb.png | ||
sources: | ||
- type: file | ||
url: '#' | ||
- type: script | ||
dest-filename: photoweb.sh | ||
commands: | ||
- zypak-wrapper.sh /app/main/photoweb "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[Desktop Entry] | ||
Name=Photoweb | ||
Comment=Advanced Photo Editor | ||
Comment[es]=Editor de fotos avanzado | ||
Exec=/app/bin/photoweb.sh | ||
Icon=com.maxizamorano.photoweb | ||
Terminal=false | ||
Type=Application | ||
Categories=Graphics;Photography; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop"> | ||
<id>com.maxizamorano.photoweb</id> | ||
<launchable type="desktop-id">com.maxizamorano.photoweb.desktop</launchable> | ||
<name>Photoweb</name> | ||
<summary>Advanced Photo Editor</summary> | ||
<summary xml:lang="es">Editor de fotos avanzado</summary> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-3.0-or-later</project_license> | ||
<developer_name>Maxi Zamorano</developer_name> | ||
|
||
<description> | ||
<p lang="en">Photoweb is a web-based photo and graphics editor. It is used for image editing, illustration making, web design or converting between different image formats. It is the best alternative to Adobe Photoshop with support for multiple formats: SD, AI, INDD, XCF, Sketch, XD, FIG, KRI, CLIP, PXD, PXZ, CDR, UFO, Fireworks PNG, AFPHOTO, SVG, EPS, PDF, PDN, WMF, EMF. PNG (APNG), JPG, GIF, WebP, ICO, ICNS, BMP, AVIF, HEIC, JXL, PPM/PGM/PBM, TIFF, DDS, IFF, ANIM, TGA. DNG, NEF, CR2, CR3, ARW, RW2, RAF, ORF, GPR, 3FR, FFF. GIF, APNG, MP4, WEBM, MKV.</p> | ||
<p lang="es">Photoweb es un editor de fotos y gráficos basado en la web. Se utiliza para la edición de imágenes, la realización de ilustraciones, el diseño web o la conversión entre diferentes formatos de imagen. Es la mejor alternativa a Adobe Photoshop con soporte para múltiples formatos: PSD, AI, INDD, XCF, Sketch, XD, FIG, KRI, CLIP, PXD, PXZ, CDR, UFO, Fireworks PNG, AFPHOTO, SVG, EPS, PDF, PDN, WMF, EMF. PNG (APNG), JPG, GIF, WebP, ICO, ICNS, BMP, AVIF, HEIC, JXL, PPM/PGM/PBM, TIFF, DDS, IFF, ANIM, TGA. DNG, NEF, CR2, CR3, ARW, RW2, RAF, ORF, GPR, 3FR, FFF. GIF, APNG, MP4, WEBM, MKV.</p> | ||
</description> | ||
|
||
<screenshots> | ||
<screenshot type="default"> | ||
<image>https://raw.githubusercontent.com/MaxiZamorano/photoweb/main/screenshots/photoweb-1.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/MaxiZamorano/photoweb/main/screenshots/photoweb-2.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/MaxiZamorano/photoweb/main/screenshots/photoweb-3.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/MaxiZamorano/photoweb/main/screenshots/photoweb-4.png</image> | ||
</screenshot> | ||
<screenshot> | ||
<image>https://raw.githubusercontent.com/MaxiZamorano/photoweb/main/screenshots/photoweb-5.png</image> | ||
</screenshot> | ||
</screenshots> | ||
|
||
<content_rating type="oars-1.1"/> | ||
|
||
<categories> | ||
<category>Graphics</category> | ||
<category>Photography</category> | ||
</categories> | ||
|
||
<releases> | ||
<release version="1.0.0" date="2024-06-17"> | ||
<description> | ||
<p lang="en">Initial release of Photoweb.</p> | ||
<p lang="es">Lanzamiento inicial de Photoweb.</p> | ||
</description> | ||
</release> | ||
</releases> | ||
</component> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.