├── .github └── workflows │ └── ci.yml ├── .gitignore ├── AUTHORS ├── LICENSE ├── README.md ├── data ├── Application.css ├── css.gresource.xml ├── icons │ ├── 128.svg │ ├── 16.svg │ ├── 24.svg │ ├── 32.svg │ ├── 48.svg │ └── 64.svg ├── meson.build ├── screenshot.png ├── taxi.desktop.in ├── taxi.gschema.xml └── taxi.metainfo.xml.in ├── io.github.ellie_commons.taxi.yml ├── meson.build ├── muckups ├── bookmarks.svg └── main.svg ├── po ├── LINGUAS ├── POTFILES ├── af.po ├── am.po ├── ar.po ├── ast.po ├── az.po ├── be.po ├── bg.po ├── bn.po ├── bs.po ├── ca.po ├── ckb.po ├── com.github.Alecaddd.taxi.pot ├── cs.po ├── da.po ├── de.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── extra.pot │ └── meson.build ├── fa.po ├── fi.po ├── fr.po ├── fr_CA.po ├── gl.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── hy.po ├── id.po ├── it.po ├── ja.po ├── ka.po ├── ko.po ├── ky.po ├── lb.po ├── lo.po ├── lt.po ├── lv.po ├── meson.build ├── ml.po ├── mr.po ├── ms.po ├── nb.po ├── nl.po ├── nn.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rue.po ├── si.po ├── sk.po ├── sl.po ├── sma.po ├── sq.po ├── sr.po ├── sv.po ├── sw.po ├── ta.po ├── te.po ├── th.po ├── tr.po ├── uk.po ├── vi.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po └── src ├── API ├── IConnectionSaver.vala ├── IFileAccess.vala ├── IFileOperations.vala └── IOperationInfo.vala ├── Application.vala ├── Backend ├── ConnectionSaver.vala ├── FileAccess.vala ├── FileOperations.vala ├── LocalFileAccess.vala ├── OperationInfo.vala └── RemoteFileAccess.vala ├── Enum ├── ConflictFlag.vala ├── Location.vala └── Protocol.vala ├── Frontend ├── MainWindow.vala └── Widgets │ ├── ConnectBox.vala │ ├── FilePane.vala │ ├── FileRow.vala │ ├── OperationsPopover.vala │ └── PathBar.vala └── meson.build /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/README.md -------------------------------------------------------------------------------- /data/Application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/Application.css -------------------------------------------------------------------------------- /data/css.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/css.gresource.xml -------------------------------------------------------------------------------- /data/icons/128.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/icons/128.svg -------------------------------------------------------------------------------- /data/icons/16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/icons/16.svg -------------------------------------------------------------------------------- /data/icons/24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/icons/24.svg -------------------------------------------------------------------------------- /data/icons/32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/icons/32.svg -------------------------------------------------------------------------------- /data/icons/48.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/icons/48.svg -------------------------------------------------------------------------------- /data/icons/64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/icons/64.svg -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/screenshot.png -------------------------------------------------------------------------------- /data/taxi.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/taxi.desktop.in -------------------------------------------------------------------------------- /data/taxi.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/taxi.gschema.xml -------------------------------------------------------------------------------- /data/taxi.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/data/taxi.metainfo.xml.in -------------------------------------------------------------------------------- /io.github.ellie_commons.taxi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/io.github.ellie_commons.taxi.yml -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/meson.build -------------------------------------------------------------------------------- /muckups/bookmarks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/muckups/bookmarks.svg -------------------------------------------------------------------------------- /muckups/main.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/muckups/main.svg -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/POTFILES -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/af.po -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/am.po -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/be.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ckb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ckb.po -------------------------------------------------------------------------------- /po/com.github.Alecaddd.taxi.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/com.github.Alecaddd.taxi.pot -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en_AU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/en_AU.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/extra/POTFILES -------------------------------------------------------------------------------- /po/extra/extra.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/extra/extra.pot -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/extra/meson.build -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fr_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/fr_CA.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/hy.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/id.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ky.po -------------------------------------------------------------------------------- /po/lb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/lb.po -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/lo.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/rue.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/rue.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sma.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/sma.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/sw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/sw.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /src/API/IConnectionSaver.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/API/IConnectionSaver.vala -------------------------------------------------------------------------------- /src/API/IFileAccess.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/API/IFileAccess.vala -------------------------------------------------------------------------------- /src/API/IFileOperations.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/API/IFileOperations.vala -------------------------------------------------------------------------------- /src/API/IOperationInfo.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/API/IOperationInfo.vala -------------------------------------------------------------------------------- /src/Application.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Application.vala -------------------------------------------------------------------------------- /src/Backend/ConnectionSaver.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Backend/ConnectionSaver.vala -------------------------------------------------------------------------------- /src/Backend/FileAccess.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Backend/FileAccess.vala -------------------------------------------------------------------------------- /src/Backend/FileOperations.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Backend/FileOperations.vala -------------------------------------------------------------------------------- /src/Backend/LocalFileAccess.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Backend/LocalFileAccess.vala -------------------------------------------------------------------------------- /src/Backend/OperationInfo.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Backend/OperationInfo.vala -------------------------------------------------------------------------------- /src/Backend/RemoteFileAccess.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Backend/RemoteFileAccess.vala -------------------------------------------------------------------------------- /src/Enum/ConflictFlag.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Enum/ConflictFlag.vala -------------------------------------------------------------------------------- /src/Enum/Location.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Enum/Location.vala -------------------------------------------------------------------------------- /src/Enum/Protocol.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Enum/Protocol.vala -------------------------------------------------------------------------------- /src/Frontend/MainWindow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Frontend/MainWindow.vala -------------------------------------------------------------------------------- /src/Frontend/Widgets/ConnectBox.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Frontend/Widgets/ConnectBox.vala -------------------------------------------------------------------------------- /src/Frontend/Widgets/FilePane.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Frontend/Widgets/FilePane.vala -------------------------------------------------------------------------------- /src/Frontend/Widgets/FileRow.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Frontend/Widgets/FileRow.vala -------------------------------------------------------------------------------- /src/Frontend/Widgets/OperationsPopover.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Frontend/Widgets/OperationsPopover.vala -------------------------------------------------------------------------------- /src/Frontend/Widgets/PathBar.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/Frontend/Widgets/PathBar.vala -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellie-commons/taxi/HEAD/src/meson.build --------------------------------------------------------------------------------