├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── cd.yml │ ├── ci.yml │ ├── cr.yml │ └── scan.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── LICENSES ├── CC0-1.0.txt ├── GPL-3.0-or-later.txt └── LGPL-2.1-or-later.txt ├── README.md ├── REUSE.toml ├── action.yml ├── dist ├── index.js └── package.json ├── eslint.config.js ├── package.json ├── src ├── flatter.js ├── main.js └── utils.js └── tests ├── default.css ├── flatpak ├── ca.andyholmes.Flatter.Failure.yml ├── ca.andyholmes.Flatter.json ├── main.c └── meson.build └── index.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/cr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/.github/workflows/cr.yml -------------------------------------------------------------------------------- /.github/workflows/scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/.github/workflows/scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/GPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/LICENSES/GPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/LICENSES/LGPL-2.1-or-later.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/REUSE.toml -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/package.json -------------------------------------------------------------------------------- /src/flatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/src/flatter.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/src/main.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/src/utils.js -------------------------------------------------------------------------------- /tests/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/tests/default.css -------------------------------------------------------------------------------- /tests/flatpak/ca.andyholmes.Flatter.Failure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/tests/flatpak/ca.andyholmes.Flatter.Failure.yml -------------------------------------------------------------------------------- /tests/flatpak/ca.andyholmes.Flatter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/tests/flatpak/ca.andyholmes.Flatter.json -------------------------------------------------------------------------------- /tests/flatpak/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/tests/flatpak/main.c -------------------------------------------------------------------------------- /tests/flatpak/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/tests/flatpak/meson.build -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyholmes/flatter/HEAD/tests/index.html --------------------------------------------------------------------------------