├── .gitignore ├── LICENSE ├── README.md ├── assets ├── icons │ ├── io.github.Q1CHENL.fig-symbolic.svg │ └── io.github.Q1CHENL.fig.svg └── screenshots │ ├── screenshot-editor-dark-1.0.4.png │ ├── screenshot-editor-light-v1.0.4.png │ ├── screenshot-editor-split-latest.png │ ├── screenshot-editor-split-v1.0.4.png │ ├── screenshot-editor-split-v1.0.5.png │ ├── screenshot-editor-split-v1.0.7.png │ ├── screenshot-home-dark-latest.png │ ├── screenshot-home-light-latest.png │ └── screenshot-home-split-latest.png ├── bin └── fig.in ├── fig ├── __init__.py ├── __main__.py ├── editor.py ├── frameline.py ├── home.py ├── main.py ├── overlay.py └── utils.py ├── flathub.txt ├── io.github.Q1CHENL.fig.desktop ├── io.github.Q1CHENL.fig.json ├── io.github.Q1CHENL.fig.metainfo.xml ├── meson.build ├── requirements.txt ├── setup.py ├── split-theme.txt ├── style ├── about-fig-button.css ├── action-bar.css ├── action-button.css ├── color-button.css ├── controls-box.css ├── drag-and-drop.css ├── headerbar.css ├── info-label.css ├── loop-button.css ├── menu-item.css ├── play-button.css ├── save-button.css ├── select-gif-button.css └── text-entry.css ├── test ├── __init__.py └── test.py └── vbump.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/README.md -------------------------------------------------------------------------------- /assets/icons/io.github.Q1CHENL.fig-symbolic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/icons/io.github.Q1CHENL.fig-symbolic.svg -------------------------------------------------------------------------------- /assets/icons/io.github.Q1CHENL.fig.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/icons/io.github.Q1CHENL.fig.svg -------------------------------------------------------------------------------- /assets/screenshots/screenshot-editor-dark-1.0.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/screenshots/screenshot-editor-dark-1.0.4.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-editor-light-v1.0.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/screenshots/screenshot-editor-light-v1.0.4.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-editor-split-latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/screenshots/screenshot-editor-split-latest.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-editor-split-v1.0.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/screenshots/screenshot-editor-split-v1.0.4.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-editor-split-v1.0.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/screenshots/screenshot-editor-split-v1.0.5.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-editor-split-v1.0.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/screenshots/screenshot-editor-split-v1.0.7.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-home-dark-latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/screenshots/screenshot-home-dark-latest.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-home-light-latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/screenshots/screenshot-home-light-latest.png -------------------------------------------------------------------------------- /assets/screenshots/screenshot-home-split-latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/assets/screenshots/screenshot-home-split-latest.png -------------------------------------------------------------------------------- /bin/fig.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | @PYTHON@ -m @PKGNAME@ "$@" -------------------------------------------------------------------------------- /fig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fig/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/fig/__main__.py -------------------------------------------------------------------------------- /fig/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/fig/editor.py -------------------------------------------------------------------------------- /fig/frameline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/fig/frameline.py -------------------------------------------------------------------------------- /fig/home.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/fig/home.py -------------------------------------------------------------------------------- /fig/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/fig/main.py -------------------------------------------------------------------------------- /fig/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/fig/overlay.py -------------------------------------------------------------------------------- /fig/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/fig/utils.py -------------------------------------------------------------------------------- /flathub.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/flathub.txt -------------------------------------------------------------------------------- /io.github.Q1CHENL.fig.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/io.github.Q1CHENL.fig.desktop -------------------------------------------------------------------------------- /io.github.Q1CHENL.fig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/io.github.Q1CHENL.fig.json -------------------------------------------------------------------------------- /io.github.Q1CHENL.fig.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/io.github.Q1CHENL.fig.metainfo.xml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/meson.build -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyGObject>=3.42.0 2 | Pillow>=8.0.0 3 | MoviePy>=2.1.1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/setup.py -------------------------------------------------------------------------------- /split-theme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/split-theme.txt -------------------------------------------------------------------------------- /style/about-fig-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/about-fig-button.css -------------------------------------------------------------------------------- /style/action-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/action-bar.css -------------------------------------------------------------------------------- /style/action-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/action-button.css -------------------------------------------------------------------------------- /style/color-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/color-button.css -------------------------------------------------------------------------------- /style/controls-box.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/controls-box.css -------------------------------------------------------------------------------- /style/drag-and-drop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/drag-and-drop.css -------------------------------------------------------------------------------- /style/headerbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/headerbar.css -------------------------------------------------------------------------------- /style/info-label.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/info-label.css -------------------------------------------------------------------------------- /style/loop-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/loop-button.css -------------------------------------------------------------------------------- /style/menu-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/menu-item.css -------------------------------------------------------------------------------- /style/play-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/play-button.css -------------------------------------------------------------------------------- /style/save-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/save-button.css -------------------------------------------------------------------------------- /style/select-gif-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/select-gif-button.css -------------------------------------------------------------------------------- /style/text-entry.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/style/text-entry.css -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/test/test.py -------------------------------------------------------------------------------- /vbump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Q1CHENL/fig/HEAD/vbump.py --------------------------------------------------------------------------------