├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── README_EN.md ├── aboutunit.frm ├── aboutunit.pas ├── giteapanel.ctpr ├── giteapanel.ctps ├── giteapanel.ico ├── giteapanel.ppr ├── giteapanel.res ├── locale ├── giteapanel.be.po ├── giteapanel.de.po ├── giteapanel.en.po ├── giteapanel.pl.po ├── giteapanel.pot ├── giteapanel.ru.po ├── giteapanel.uk.po └── lang.list ├── mainunit.frm ├── mainunit.pas ├── resource ├── About_16x16.png ├── Close_16x16.png ├── Configure_16x16.png ├── GiteaGreen.ico ├── GiteaRed.ico ├── Gitea_green_16x16.png ├── Gitea_red_16x16.png ├── Internet_16x16.png ├── Link_16x16.png ├── Network_16.png ├── ScreenAbout.png ├── ScreenMenu.png ├── ScreenMenu2.png ├── ScreenSeting.png ├── check.png ├── download.png ├── download_16x16.png ├── error.png ├── giteapanel.svg ├── lamp.png └── ok.png ├── resstr.pas ├── updategitea.frm ├── updategitea.pas ├── updatesetting.frm └── updatesetting.pas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/README_EN.md -------------------------------------------------------------------------------- /aboutunit.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/aboutunit.frm -------------------------------------------------------------------------------- /aboutunit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/aboutunit.pas -------------------------------------------------------------------------------- /giteapanel.ctpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/giteapanel.ctpr -------------------------------------------------------------------------------- /giteapanel.ctps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/giteapanel.ctps -------------------------------------------------------------------------------- /giteapanel.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/giteapanel.ico -------------------------------------------------------------------------------- /giteapanel.ppr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/giteapanel.ppr -------------------------------------------------------------------------------- /giteapanel.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/giteapanel.res -------------------------------------------------------------------------------- /locale/giteapanel.be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/locale/giteapanel.be.po -------------------------------------------------------------------------------- /locale/giteapanel.de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/locale/giteapanel.de.po -------------------------------------------------------------------------------- /locale/giteapanel.en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/locale/giteapanel.en.po -------------------------------------------------------------------------------- /locale/giteapanel.pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/locale/giteapanel.pl.po -------------------------------------------------------------------------------- /locale/giteapanel.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/locale/giteapanel.pot -------------------------------------------------------------------------------- /locale/giteapanel.ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/locale/giteapanel.ru.po -------------------------------------------------------------------------------- /locale/giteapanel.uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/locale/giteapanel.uk.po -------------------------------------------------------------------------------- /locale/lang.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/locale/lang.list -------------------------------------------------------------------------------- /mainunit.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/mainunit.frm -------------------------------------------------------------------------------- /mainunit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/mainunit.pas -------------------------------------------------------------------------------- /resource/About_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/About_16x16.png -------------------------------------------------------------------------------- /resource/Close_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/Close_16x16.png -------------------------------------------------------------------------------- /resource/Configure_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/Configure_16x16.png -------------------------------------------------------------------------------- /resource/GiteaGreen.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/GiteaGreen.ico -------------------------------------------------------------------------------- /resource/GiteaRed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/GiteaRed.ico -------------------------------------------------------------------------------- /resource/Gitea_green_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/Gitea_green_16x16.png -------------------------------------------------------------------------------- /resource/Gitea_red_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/Gitea_red_16x16.png -------------------------------------------------------------------------------- /resource/Internet_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/Internet_16x16.png -------------------------------------------------------------------------------- /resource/Link_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/Link_16x16.png -------------------------------------------------------------------------------- /resource/Network_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/Network_16.png -------------------------------------------------------------------------------- /resource/ScreenAbout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/ScreenAbout.png -------------------------------------------------------------------------------- /resource/ScreenMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/ScreenMenu.png -------------------------------------------------------------------------------- /resource/ScreenMenu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/ScreenMenu2.png -------------------------------------------------------------------------------- /resource/ScreenSeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/ScreenSeting.png -------------------------------------------------------------------------------- /resource/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/check.png -------------------------------------------------------------------------------- /resource/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/download.png -------------------------------------------------------------------------------- /resource/download_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/download_16x16.png -------------------------------------------------------------------------------- /resource/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/error.png -------------------------------------------------------------------------------- /resource/giteapanel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/giteapanel.svg -------------------------------------------------------------------------------- /resource/lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/lamp.png -------------------------------------------------------------------------------- /resource/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resource/ok.png -------------------------------------------------------------------------------- /resstr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/resstr.pas -------------------------------------------------------------------------------- /updategitea.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/updategitea.frm -------------------------------------------------------------------------------- /updategitea.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/updategitea.pas -------------------------------------------------------------------------------- /updatesetting.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/updatesetting.frm -------------------------------------------------------------------------------- /updatesetting.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sashaoli/GiteaPanel/HEAD/updatesetting.pas --------------------------------------------------------------------------------