├── .gitignore ├── AUTHORS ├── BuildGuide.md ├── ChangeLog ├── CocoaMento-Src ├── CocoaMento.pro ├── CocoaMento.pro.user ├── README ├── StatusIcon.h ├── StatusIconBase.h ├── accountform.cpp ├── accountform.h ├── accountform.ui ├── cocoaappinitlizer.h ├── cocoaappinitlizer.mm ├── cocoamenuitemvirtual.h ├── cocoamenuitemvirtual.mm ├── configview.cpp ├── configview.h ├── configview.ui ├── guite.cpp ├── guite.h ├── guite.ui ├── main.cpp ├── mento.cpp ├── mento.h ├── mentohust-src │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── auth.c │ ├── dlfunc.c │ ├── dlfunc.h │ ├── md5.c │ ├── md5.h │ ├── mentohust.c │ ├── mycheck.c │ ├── mycheck.h │ ├── myconfig.c │ ├── myconfig.h │ ├── myfunc.c │ ├── myfunc.h │ ├── myini.c │ ├── myini.h │ ├── mystate.c │ ├── mystate.h │ └── types.h ├── mentothread.cpp ├── mentothread.h ├── menu.h ├── menu.mm ├── menuitem.h ├── menuitem.mm ├── menuviewitem.h ├── menuviewitem.mm ├── qtport.cpp ├── qtport.h └── statusicon.mm ├── Makefile.am ├── NEWS ├── README ├── README.md ├── autogen.sh ├── configure.ac ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules └── watch ├── mentohust.1 ├── mentohust.spec.in ├── po ├── LINGUAS ├── Makevars ├── POTFILES.in ├── en.gmo ├── en.po ├── mentohust.pot └── stamp-po └── src ├── Makefile.am ├── dlfunc.c ├── dlfunc.h ├── i18n.h ├── md5.c ├── md5.h ├── mentohust.c ├── mentohust.conf ├── mycheck.c ├── mycheck.h ├── myconfig.c ├── myconfig.h ├── myfunc.c ├── myfunc.h ├── myini.c ├── myini.h ├── mystate.c ├── mystate.h └── types.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/AUTHORS -------------------------------------------------------------------------------- /BuildGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/BuildGuide.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/ChangeLog -------------------------------------------------------------------------------- /CocoaMento-Src/CocoaMento.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/CocoaMento.pro -------------------------------------------------------------------------------- /CocoaMento-Src/CocoaMento.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/CocoaMento.pro.user -------------------------------------------------------------------------------- /CocoaMento-Src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/README -------------------------------------------------------------------------------- /CocoaMento-Src/StatusIcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/StatusIcon.h -------------------------------------------------------------------------------- /CocoaMento-Src/StatusIconBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/StatusIconBase.h -------------------------------------------------------------------------------- /CocoaMento-Src/accountform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/accountform.cpp -------------------------------------------------------------------------------- /CocoaMento-Src/accountform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/accountform.h -------------------------------------------------------------------------------- /CocoaMento-Src/accountform.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/accountform.ui -------------------------------------------------------------------------------- /CocoaMento-Src/cocoaappinitlizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/cocoaappinitlizer.h -------------------------------------------------------------------------------- /CocoaMento-Src/cocoaappinitlizer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/cocoaappinitlizer.mm -------------------------------------------------------------------------------- /CocoaMento-Src/cocoamenuitemvirtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/cocoamenuitemvirtual.h -------------------------------------------------------------------------------- /CocoaMento-Src/cocoamenuitemvirtual.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/cocoamenuitemvirtual.mm -------------------------------------------------------------------------------- /CocoaMento-Src/configview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/configview.cpp -------------------------------------------------------------------------------- /CocoaMento-Src/configview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/configview.h -------------------------------------------------------------------------------- /CocoaMento-Src/configview.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/configview.ui -------------------------------------------------------------------------------- /CocoaMento-Src/guite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/guite.cpp -------------------------------------------------------------------------------- /CocoaMento-Src/guite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/guite.h -------------------------------------------------------------------------------- /CocoaMento-Src/guite.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/guite.ui -------------------------------------------------------------------------------- /CocoaMento-Src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/main.cpp -------------------------------------------------------------------------------- /CocoaMento-Src/mento.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mento.cpp -------------------------------------------------------------------------------- /CocoaMento-Src/mento.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mento.h -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/Makefile -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/Makefile.am -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/Makefile.in -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/auth.c -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/dlfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/dlfunc.c -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/dlfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/dlfunc.h -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/md5.c -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/md5.h -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/mentohust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/mentohust.c -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/mycheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/mycheck.c -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/mycheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/mycheck.h -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/myconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/myconfig.c -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/myconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/myconfig.h -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/myfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/myfunc.c -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/myfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/myfunc.h -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/myini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/myini.c -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/myini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/myini.h -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/mystate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/mystate.c -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/mystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/mystate.h -------------------------------------------------------------------------------- /CocoaMento-Src/mentohust-src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentohust-src/types.h -------------------------------------------------------------------------------- /CocoaMento-Src/mentothread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentothread.cpp -------------------------------------------------------------------------------- /CocoaMento-Src/mentothread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/mentothread.h -------------------------------------------------------------------------------- /CocoaMento-Src/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/menu.h -------------------------------------------------------------------------------- /CocoaMento-Src/menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/menu.mm -------------------------------------------------------------------------------- /CocoaMento-Src/menuitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/menuitem.h -------------------------------------------------------------------------------- /CocoaMento-Src/menuitem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/menuitem.mm -------------------------------------------------------------------------------- /CocoaMento-Src/menuviewitem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/menuviewitem.h -------------------------------------------------------------------------------- /CocoaMento-Src/menuviewitem.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/menuviewitem.mm -------------------------------------------------------------------------------- /CocoaMento-Src/qtport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/qtport.cpp -------------------------------------------------------------------------------- /CocoaMento-Src/qtport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/qtport.h -------------------------------------------------------------------------------- /CocoaMento-Src/statusicon.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/CocoaMento-Src/statusicon.mm -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/debian/watch -------------------------------------------------------------------------------- /mentohust.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/mentohust.1 -------------------------------------------------------------------------------- /mentohust.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/mentohust.spec.in -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | en -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/en.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/po/en.gmo -------------------------------------------------------------------------------- /po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/po/en.po -------------------------------------------------------------------------------- /po/mentohust.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/po/mentohust.pot -------------------------------------------------------------------------------- /po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/dlfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/dlfunc.c -------------------------------------------------------------------------------- /src/dlfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/dlfunc.h -------------------------------------------------------------------------------- /src/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/i18n.h -------------------------------------------------------------------------------- /src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/md5.c -------------------------------------------------------------------------------- /src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/md5.h -------------------------------------------------------------------------------- /src/mentohust.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/mentohust.c -------------------------------------------------------------------------------- /src/mentohust.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/mentohust.conf -------------------------------------------------------------------------------- /src/mycheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/mycheck.c -------------------------------------------------------------------------------- /src/mycheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/mycheck.h -------------------------------------------------------------------------------- /src/myconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/myconfig.c -------------------------------------------------------------------------------- /src/myconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/myconfig.h -------------------------------------------------------------------------------- /src/myfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/myfunc.c -------------------------------------------------------------------------------- /src/myfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/myfunc.h -------------------------------------------------------------------------------- /src/myini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/myini.c -------------------------------------------------------------------------------- /src/myini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/myini.h -------------------------------------------------------------------------------- /src/mystate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/mystate.c -------------------------------------------------------------------------------- /src/mystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/mystate.h -------------------------------------------------------------------------------- /src/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HustLion/mentohust/HEAD/src/types.h --------------------------------------------------------------------------------