├── resources
├── icon.png.md5
├── splash.png.md5
├── _icon.psd
├── glass.ico
├── glass.png
├── icon.png
├── _splash.psd
├── splash.png
├── ios
│ ├── icon
│ │ ├── icon.png
│ │ ├── icon-40.png
│ │ ├── icon-50.png
│ │ ├── icon-60.png
│ │ ├── icon-72.png
│ │ ├── icon-76.png
│ │ ├── icon@2x.png
│ │ ├── icon-1024.png
│ │ ├── icon-40@2x.png
│ │ ├── icon-40@3x.png
│ │ ├── icon-50@2x.png
│ │ ├── icon-60@2x.png
│ │ ├── icon-60@3x.png
│ │ ├── icon-72@2x.png
│ │ ├── icon-76@2x.png
│ │ ├── icon-small.png
│ │ ├── icon-83.5@2x.png
│ │ ├── icon-small@2x.png
│ │ └── icon-small@3x.png
│ └── splash
│ │ ├── Default-667h.png
│ │ ├── Default-736h.png
│ │ ├── Default~iphone.png
│ │ ├── Default@2x~iphone.png
│ │ ├── Default-Portrait~ipad.png
│ │ ├── Default-568h@2x~iphone.png
│ │ ├── Default-Landscape-736h.png
│ │ ├── Default-Landscape~ipad.png
│ │ ├── Default-Portrait@2x~ipad.png
│ │ ├── Default-Landscape@2x~ipad.png
│ │ ├── Default-Landscape@~ipadpro.png
│ │ ├── Default-Portrait@~ipadpro.png
│ │ └── Default@2x~universal~anyany.png
├── android
│ ├── icon
│ │ ├── drawable-hdpi-icon.png
│ │ ├── drawable-ldpi-icon.png
│ │ ├── drawable-mdpi-icon.png
│ │ ├── drawable-xhdpi-icon.png
│ │ ├── drawable-xxhdpi-icon.png
│ │ └── drawable-xxxhdpi-icon.png
│ └── splash
│ │ ├── drawable-land-hdpi-screen.png
│ │ ├── drawable-land-ldpi-screen.png
│ │ ├── drawable-land-mdpi-screen.png
│ │ ├── drawable-port-hdpi-screen.png
│ │ ├── drawable-port-ldpi-screen.png
│ │ ├── drawable-port-mdpi-screen.png
│ │ ├── drawable-land-xhdpi-screen.png
│ │ ├── drawable-land-xxhdpi-screen.png
│ │ ├── drawable-port-xhdpi-screen.png
│ │ ├── drawable-port-xxhdpi-screen.png
│ │ ├── drawable-land-xxxhdpi-screen.png
│ │ └── drawable-port-xxxhdpi-screen.png
└── logo.svg
├── src
├── app
│ ├── app.html
│ ├── main.ts
│ ├── const.ts
│ ├── app.scss
│ ├── app.component.ts
│ └── app.module.ts
├── pages
│ ├── code-list
│ │ ├── code-list.scss
│ │ ├── code-list.module.ts
│ │ ├── code-list.html
│ │ └── code-list.ts
│ ├── content-list
│ │ ├── content-list.scss
│ │ ├── content-list.html
│ │ ├── content-list.module.ts
│ │ └── content-list.ts
│ ├── user-list
│ │ ├── user-list.scss
│ │ ├── following.ts
│ │ ├── followers.ts
│ │ ├── watchers.ts
│ │ ├── stargazers.ts
│ │ ├── user-list.module.ts
│ │ ├── user-list.html
│ │ └── user-list.ts
│ ├── repo-list
│ │ ├── repo-list.scss
│ │ ├── starred-repos.ts
│ │ ├── repo-forks.ts
│ │ ├── owned-repos.ts
│ │ ├── hot-repos.ts
│ │ ├── search-repos.ts
│ │ ├── repo-list.module.ts
│ │ ├── repo-list.html
│ │ └── repo-list.ts
│ ├── tabs
│ │ ├── tabs.html
│ │ └── tabs.ts
│ ├── code-detail
│ │ ├── code-detail.html
│ │ ├── code-detail.module.ts
│ │ ├── code-detail.ts
│ │ └── code-detail.scss
│ ├── bootstrap
│ │ ├── bootstrap.html
│ │ ├── bootstrap.module.ts
│ │ ├── bootstrap.scss
│ │ └── bootstrap.ts
│ ├── settings
│ │ ├── settings.module.ts
│ │ ├── settings.scss
│ │ ├── settings.html
│ │ └── settings.ts
│ ├── dashboard
│ │ ├── dashboard.module.ts
│ │ ├── dashboard.scss
│ │ ├── dashboard.html
│ │ └── dashboard.ts
│ ├── repo
│ │ ├── repo.module.ts
│ │ ├── repo.scss
│ │ ├── repo.ts
│ │ └── repo.html
│ └── user
│ │ ├── user.module.ts
│ │ ├── me.ts
│ │ ├── user.scss
│ │ ├── user.html
│ │ └── user.ts
├── assets
│ ├── icon
│ │ └── favicon.ico
│ └── logo.svg
├── classes
│ ├── version.ts
│ ├── nodes-page.ts
│ ├── content.ts
│ ├── user.ts
│ ├── repo.ts
│ └── language-color.ts
├── components
│ ├── markdown
│ │ ├── markdown.html
│ │ ├── markdown.ts
│ │ └── markdown.scss
│ ├── search-box
│ │ ├── search-box.html
│ │ ├── search-box.ts
│ │ └── search-box.scss
│ ├── repo-item
│ │ ├── repo-item.ts
│ │ ├── repo-item.scss
│ │ └── repo-item.html
│ └── components.module.ts
├── manifest.json
├── pipes
│ ├── sanitize-html
│ │ └── sanitize-html.ts
│ ├── pipes.module.ts
│ └── markdown-to-html
│ │ └── markdown-to-html.ts
├── services
│ ├── toast.service.ts
│ ├── update.service.ts
│ ├── account.service.ts
│ └── api.service.ts
├── service-worker.js
├── index.html
└── theme
│ └── variables.scss
├── version.json
├── gitmug.keystore
├── screenshots
├── homepage.png
├── iPad12.9
│ ├── Simulator Screen Shot 2017年8月22日 18.55.01.png
│ ├── Simulator Screen Shot 2017年8月22日 18.55.05.png
│ ├── Simulator Screen Shot 2017年8月22日 18.55.17.png
│ └── Simulator Screen Shot 2017年8月23日 15.43.17.png
├── iPhone4.7
│ ├── Simulator Screen Shot 2017年8月22日 18.37.32.png
│ ├── Simulator Screen Shot 2017年8月22日 18.37.34.png
│ ├── Simulator Screen Shot 2017年8月22日 18.37.35.png
│ └── Simulator Screen Shot 2017年8月23日 15.38.29.png
└── iPhone5.5
│ ├── Simulator Screen Shot 2017年8月22日 18.51.21.png
│ ├── Simulator Screen Shot 2017年8月22日 18.51.25.png
│ ├── Simulator Screen Shot 2017年8月22日 18.51.34.png
│ └── Simulator Screen Shot 2017年8月23日 15.40.38.png
├── docs
├── assets
│ ├── icon
│ │ └── favicon.ico
│ ├── image
│ │ ├── screenshot1.png
│ │ └── screenshot2.png
│ └── logo.svg
├── statement.html
├── oauth
│ └── callback.html
└── index.html
├── signApk.sh
├── tslint.json
├── .editorconfig
├── ionic.config.json
├── tsconfig.json
├── .gitignore
├── README.md
├── package.json
├── config.xml
└── LICENSE.txt
/resources/icon.png.md5:
--------------------------------------------------------------------------------
1 | 629b4dd1f4c8c296e972a29c66747d5b
--------------------------------------------------------------------------------
/resources/splash.png.md5:
--------------------------------------------------------------------------------
1 | eb50da895b6b47404bd63b9084d89306
--------------------------------------------------------------------------------
/src/app/app.html:
--------------------------------------------------------------------------------
1 |
{{repo.description}}
6 |
7 |
11 | 0" class="widget">
12 |
25 | {{event.actor.display_login}} {{eventVerb(event)}} {{event.repo.name}} 26 |
27 |
14 | GitMug
15 | v{{version.major}}.{{version.minor}}.{{version.patch}}
16 |
17 |
19 | Found a new release
20 |
22 | v{{version.major}}.{{version.minor}}.{{version.patch}} -> v{{updateSvc.latestVersion.major}}.{{updateSvc.latestVersion.minor}}.{{updateSvc.latestVersion.patch}}
23 |
24 |
12 | /{{path}} 13 |
14 |{{userProfile.company?userProfile.company:'Unknown'}}
72 |{{userProfile.location?userProfile.location:'Unknown'}}
79 |{{userProfile.email?userProfile.email:'Unknown'}}
86 |44 | The GitHub app for minimalists. 45 |
46 |
67 |
68 | 80 | The GitHub app for minimalists. 81 |
82 |
106 |