jdAnimatedImageEditor


NamejdAnimatedImageEditor JSON
Version 1.4 PyPI version JSON
download
home_page
SummaryA simple program for creating animated Images
upload_time2023-05-05 12:50:53
maintainer
docs_urlNone
author
requires_python>=3.9
licenseGPL-3
keywords jakobdev pyqt6
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">jdAnimatedImageEditor</h1>

<h3 align="center">A simple program for creating animated Images</h3>

<p align="center">
    <img alt="jdAnimatedImageEditor" src="screenshots/MainWindow.png"/>
</p>

jdAnimatedImageEditor is a simple Program that lets you create and edit animated Images.
It supports GIF and APNG.
Import and export of Videos is also supported.

## Install

### Flatpak
You can get jdAnimatedImageEditor from [Flathub](https://flathub.org/apps/page.codeberg.JakobDev.jdAnimatedImageEditor)

### AUR
Arch Users can get jdAnimatedImageEditor from the [AUR](https://aur.archlinux.org/packages/jdanimatedimageeditor)

### pip
You can install jdAnimatedImageEditor from [PyPI](https://pypi.org/project/jdAnimatedImageEditor) using `pip`:
```shell
pip install jdAnimatedImageEditor
```
Using this Method, it will not include a Desktop Entry or any other Data file, so you need to run jdAnimatedImageEditor from the Command Line.
Use this only, when nothing else works.

### From source
This is only for experienced Users and someone, who wants to package jdAnimatedImageEditor for a Distro.
jdAnimatedImageEditorshould be installed as a Python package.
You can use `pip` or any other tool that can handle Python packages.
YOu need to have `lrelease` installed to build the Package.
After that, you should run `install-unix-datafiles.py` which wil install things like the Desktop Entry or the Icon in the correct place.
It defaults to `/usr`, but you can change it with the `--prefix` argument.
It also applies the translation to this files.
You need gettext installed to run `install-unix-datafiles.py`.

Here's a example of installing jdAnimatedImageEditor into `/usr/local`:
```shell
sudo pip install --prefix /usr/local .
sudo ./install-unix-datafiles.py --prefix /usr/local
```

## Translate
You can help translating jdAnimatedImageEditor on [Codeberg Translate](https://translate.codeberg.org/projects/jdAnimatedImageEditor)

## Develop
jdAnimatedImageEditoris written in Python and uses PyQt6 as GUI toolkit. You should have some experience in both.
You can run `jdAnimatedImageEditor.py`to start jdAnimatedImageEditor from source and test your local changes.
It ships with a few scripts in the tools directory that you need to develop.

#### CompileUI.py
This is the most important script. It will take all `.ui` files in `jdAnimatedImageEditor/ui` and compiles it to a Python class
and stores it in `jdAnimatedImageEditor/ui_compiled`. Without running this script first, you can't start jdAnimatedImageEditor.
You need to rerun it every time you changed or added a `.ui` file.

#### BuildTranslations.py
This script takes all `.ts` files and compiles it to `.qm` files.
The `.ts` files are containing the translation source and are being used during the translation process.
The `.qm` contains the compiled translation and are being used by the Program.
You need to compile a `.ts` file to a `.qm` file to see the translations in the Program.

#### UpdateTranslations.py
This regenerates the `.ts` files. You need to run it, when you changed something in the source code.
The `.ts` files are contains the line in the source, where the string to translate appears,
so make sure you run it even when you don't changed a translatable string, so the location is correct.

####  UpdateUnixDataTranslations.py
This regenerates the translation files in `deploy/translations`. these files contains the translations for the Desktop Entry and the AppStream File.
It uses gettext, as it is hard to translate this using Qt.
These files just exists to integrate the translation with Weblate, because Weblate can't translate the Desktop Entry and the AppStream file.
Make sure you run this when you edited one of these files.
You need to have gettext installed to use it.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "jdAnimatedImageEditor",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "JakobDev,PyQt6",
    "author": "",
    "author_email": "JakobDev <jakobdev@gmx.de>",
    "download_url": "https://files.pythonhosted.org/packages/03/04/0653f2b890d2df4dbe82fc19efe3b59c27cd4c307f5d83bb372a01009e0d/jdAnimatedImageEditor-1.4.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">jdAnimatedImageEditor</h1>\n\n<h3 align=\"center\">A simple program for creating animated Images</h3>\n\n<p align=\"center\">\n    <img alt=\"jdAnimatedImageEditor\" src=\"screenshots/MainWindow.png\"/>\n</p>\n\njdAnimatedImageEditor is a simple Program that lets you create and edit animated Images.\nIt supports GIF and APNG.\nImport and export of Videos is also supported.\n\n## Install\n\n### Flatpak\nYou can get jdAnimatedImageEditor from [Flathub](https://flathub.org/apps/page.codeberg.JakobDev.jdAnimatedImageEditor)\n\n### AUR\nArch Users can get jdAnimatedImageEditor from the [AUR](https://aur.archlinux.org/packages/jdanimatedimageeditor)\n\n### pip\nYou can install jdAnimatedImageEditor from [PyPI](https://pypi.org/project/jdAnimatedImageEditor) using `pip`:\n```shell\npip install jdAnimatedImageEditor\n```\nUsing this Method, it will not include a Desktop Entry or any other Data file, so you need to run jdAnimatedImageEditor from the Command Line.\nUse this only, when nothing else works.\n\n### From source\nThis is only for experienced Users and someone, who wants to package jdAnimatedImageEditor for a Distro.\njdAnimatedImageEditorshould be installed as a Python package.\nYou can use `pip` or any other tool that can handle Python packages.\nYOu need to have `lrelease` installed to build the Package.\nAfter that, you should run `install-unix-datafiles.py` which wil install things like the Desktop Entry or the Icon in the correct place.\nIt defaults to `/usr`, but you can change it with the `--prefix` argument.\nIt also applies the translation to this files.\nYou need gettext installed to run `install-unix-datafiles.py`.\n\nHere's a example of installing jdAnimatedImageEditor into `/usr/local`:\n```shell\nsudo pip install --prefix /usr/local .\nsudo ./install-unix-datafiles.py --prefix /usr/local\n```\n\n## Translate\nYou can help translating jdAnimatedImageEditor on [Codeberg Translate](https://translate.codeberg.org/projects/jdAnimatedImageEditor)\n\n## Develop\njdAnimatedImageEditoris written in Python and uses PyQt6 as GUI toolkit. You should have some experience in both.\nYou can run `jdAnimatedImageEditor.py`to start jdAnimatedImageEditor from source and test your local changes.\nIt ships with a few scripts in the tools directory that you need to develop.\n\n#### CompileUI.py\nThis is the most important script. It will take all `.ui` files in `jdAnimatedImageEditor/ui` and compiles it to a Python class\nand stores it in `jdAnimatedImageEditor/ui_compiled`. Without running this script first, you can't start jdAnimatedImageEditor.\nYou need to rerun it every time you changed or added a `.ui` file.\n\n#### BuildTranslations.py\nThis script takes all `.ts` files and compiles it to `.qm` files.\nThe `.ts` files are containing the translation source and are being used during the translation process.\nThe `.qm` contains the compiled translation and are being used by the Program.\nYou need to compile a `.ts` file to a `.qm` file to see the translations in the Program.\n\n#### UpdateTranslations.py\nThis regenerates the `.ts` files. You need to run it, when you changed something in the source code.\nThe `.ts` files are contains the line in the source, where the string to translate appears,\nso make sure you run it even when you don't changed a translatable string, so the location is correct.\n\n####  UpdateUnixDataTranslations.py\nThis regenerates the translation files in `deploy/translations`. these files contains the translations for the Desktop Entry and the AppStream File.\nIt uses gettext, as it is hard to translate this using Qt.\nThese files just exists to integrate the translation with Weblate, because Weblate can't translate the Desktop Entry and the AppStream file.\nMake sure you run this when you edited one of these files.\nYou need to have gettext installed to use it.\n",
    "bugtrack_url": null,
    "license": "GPL-3",
    "summary": "A simple program for creating animated Images",
    "version": "1.4",
    "project_urls": {
        "Donation": "https://ko-fi.com/jakobdev",
        "Issues": "https://codeberg.org/JakobDev/jdAnimatedImageEditor/issues",
        "Source": "https://codeberg.org/JakobDev/jdAnimatedImageEditor",
        "Translate": "https://translate.codeberg.org/projects/jdAnimatedImageEditor"
    },
    "split_keywords": [
        "jakobdev",
        "pyqt6"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e3fd4fa543a519d2bbe42ef915338655de1fad181ba001c4b9b7d7f9f793d9c",
                "md5": "1aa2e253077782fa53ce1fef45265a05",
                "sha256": "8eb1c0d0368edc39b5cf9497a36356aa7ef38ecf9d60c42941ff108888339e23"
            },
            "downloads": -1,
            "filename": "jdAnimatedImageEditor-1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1aa2e253077782fa53ce1fef45265a05",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 43271,
            "upload_time": "2023-05-05T12:50:51",
            "upload_time_iso_8601": "2023-05-05T12:50:51.831507Z",
            "url": "https://files.pythonhosted.org/packages/4e/3f/d4fa543a519d2bbe42ef915338655de1fad181ba001c4b9b7d7f9f793d9c/jdAnimatedImageEditor-1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03040653f2b890d2df4dbe82fc19efe3b59c27cd4c307f5d83bb372a01009e0d",
                "md5": "338a50bd9cc37de62fbdac2467340e2f",
                "sha256": "2132e125dd036b3ed9a886b71881fbed1da9f84ed9d11a65d9498851e5c89fac"
            },
            "downloads": -1,
            "filename": "jdAnimatedImageEditor-1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "338a50bd9cc37de62fbdac2467340e2f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 34965,
            "upload_time": "2023-05-05T12:50:53",
            "upload_time_iso_8601": "2023-05-05T12:50:53.783316Z",
            "url": "https://files.pythonhosted.org/packages/03/04/0653f2b890d2df4dbe82fc19efe3b59c27cd4c307f5d83bb372a01009e0d/jdAnimatedImageEditor-1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-05 12:50:53",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": true,
    "codeberg_user": "JakobDev",
    "codeberg_project": "jdAnimatedImageEditor",
    "lcname": "jdanimatedimageeditor"
}
        
Elapsed time: 0.07295s