├── README.md └── apps.yaml /README.md: -------------------------------------------------------------------------------- 1 | # OpenMemories: App List 2 | 3 | The list of Android apps installable on [sony-pmca.appspot.com](https://sony-pmca.appspot.com/apps). 4 | 5 | ## How to add your own 6 | Edit *apps.yaml* and send us a pull request. 7 | 8 | ## Syntax of *apps.yaml* 9 | ```yaml 10 | # This yaml file contains a document for every app. Separate them with 3 dashes 11 | # (---). The order of app definitions doesn't matter, so please group them by 12 | # author. 13 | 14 | --- 15 | package: com.my.package.app # Required. IMPORTANT: This has to be equal to the 16 | # package attribute in your app manifest 17 | name: My App # Required. The display name of the app 18 | author: me # The name of the author 19 | desc: A cool little app # A short description 20 | homepage: http://mysite.com # Where to find more information about the app 21 | 22 | # The release section is required. It specifies where your app can be 23 | # downloaded. There are several options: 24 | 25 | # If your app is on github and the apk can be found in the releases section: 26 | release: 27 | # We will search for the newest release which has an apk asset. 28 | # IMPORTANT: The release's title has to be equal to the version attribute in 29 | # your app manifest. Add other information to the description. 30 | type: github 31 | # the two following 2 properties are used to construct the repo's url: 32 | user: me 33 | repo: my-cool-repo 34 | 35 | # If you want to host the apks yourself: 36 | release: 37 | # Please host a yaml file together with your apk to describe the app version 38 | # (see more below). This will allow you to release new versions without 39 | # sending pull requests every time. 40 | type: yaml 41 | url: http://mysite.com/app.yaml 42 | ``` 43 | 44 | If you host the apks on your own server, please add a yaml file listing the apks available for download. Update it every time you release a new version of your app. The syntax of this file: 45 | ```yaml 46 | # This file would be available at http://mysite.com/app.yaml 47 | 48 | # You can add several app versions to this file (separate them with 3 dashes). 49 | # IMPORTANT: The newest release has to be on top. 50 | # Please use a different url for every new apk you upload. 51 | 52 | --- 53 | version: "1.0" # Required. IMPORTANT: This has to be equal 54 | # to the version attribute in your app 55 | # manifest. 56 | url: http://mysite.com/app-1.0.apk # Required. An absolute url to the apk file. 57 | # The filename should contain the app's 58 | # version. 59 | date: 2000-01-01T00:00:00Z # The release date 60 | desc: Fixed a few bugs # A short description of this release 61 | ``` 62 | -------------------------------------------------------------------------------- /apps.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | package: com.github.ma1co.pmcademo.app 3 | name: PMCADemo 4 | author: ma1co 5 | desc: A demo app 6 | homepage: https://github.com/ma1co/PMCADemo 7 | release: 8 | type: github 9 | user: ma1co 10 | repo: PMCADemo 11 | 12 | --- 13 | package: com.github.ma1co.openmemories.tweak 14 | name: "OpenMemories: Tweak" 15 | author: ma1co 16 | desc: Unlock your camera's settings 17 | homepage: https://github.com/ma1co/OpenMemories-Tweak 18 | release: 19 | type: github 20 | user: ma1co 21 | repo: OpenMemories-Tweak 22 | 23 | --- 24 | package: com.github.ma1co.openmemories.appstore 25 | name: "OpenMemories: AppStore" 26 | author: ma1co 27 | desc: Install new apps directly on your camera 28 | homepage: https://github.com/ma1co/OpenMemories-AppStore 29 | release: 30 | type: github 31 | user: ma1co 32 | repo: OpenMemories-AppStore 33 | 34 | --- 35 | package: org.bostwickenator.dofmath 36 | name: dof-math 37 | author: Bostwickenator 38 | desc: Calculate the front, back, and hyperfocal distances 39 | homepage: https://github.com/Bostwickenator/dof-math 40 | release: 41 | type: github 42 | user: Bostwickenator 43 | repo: dof-math 44 | 45 | --- 46 | package: org.bostwickenator.googlephotos 47 | name: STG Uploader 48 | author: Bostwickenator 49 | desc: Upload photos directly into Google Photos 50 | homepage: https://www.stg-uploader.xyz/ 51 | release: 52 | type: yaml 53 | url: https://www.stg-uploader.xyz/releases/releases.yaml 54 | 55 | --- 56 | package: org.bostwickenator.ftpuploader 57 | name: FTP Uploader 58 | author: Bostwickenator 59 | desc: Upload photos to your FTP server 60 | homepage: https://www.stg-uploader.xyz/ 61 | release: 62 | type: yaml 63 | url: https://www.stg-uploader.xyz/ftp-releases/releases.yaml 64 | 65 | --- 66 | package: com.obsidium.focusbracket 67 | name: FocusBracket 68 | author: obs1dium 69 | desc: Proof-of-concept app for focus bracketing 70 | homepage: https://github.com/obs1dium/FocusBracket 71 | release: 72 | type: github 73 | user: obs1dium 74 | repo: FocusBracket 75 | 76 | --- 77 | package: com.obsidium.bettermanual 78 | name: BetterManual 79 | author: obs1dium 80 | desc: An app for improved manual shooting with the Alpha 5100 81 | homepage: https://github.com/obs1dium/BetterManual 82 | release: 83 | type: github 84 | user: obs1dium 85 | repo: BetterManual 86 | 87 | --- 88 | package: com.jonasjuffinger.timelapse 89 | name: TimeLapse 90 | author: jonasjuffinger 91 | desc: A simple app to take pictures with a given interval 92 | homepage: https://github.com/jonasjuffinger/TimeLapse 93 | release: 94 | type: github 95 | user: jonasjuffinger 96 | repo: TimeLapse 97 | 98 | --- 99 | package: com.github.LubikR.synologyuploader 100 | name: SynologyUploader 101 | author: LubikR 102 | desc: Upload photos to Synology NAS 103 | homepage: https://github.com/LubikR/SynologyUploader 104 | release: 105 | type: github 106 | user: LubikR 107 | repo: SynologyUploader 108 | 109 | --- 110 | package: info.schnatterer.pmcaFilesystemServer 111 | name: pmcaFilesystemServer 112 | author: schnatterer 113 | desc: Provides the File System of the camera via HTTP 114 | homepage: https://github.com/schnatterer/pmcaFilesystemServer 115 | release: 116 | type: github 117 | user: schnatterer 118 | repo: pmcaFilesystemServer 119 | --------------------------------------------------------------------------------