Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expose device macos version info on /admins/:id route #8

Closed
jaredh159 opened this issue Oct 2, 2024 · 0 comments
Closed

expose device macos version info on /admins/:id route #8

jaredh159 opened this issue Oct 2, 2024 · 0 comments

Comments

@jaredh159
Copy link
Collaborator

this PR: gertrude-app/swift#97 exposes a bit more data about the device (computer) - the macos version string (e.g. 13.4.6) and the macos version name (e.g. Ventura). i'd like these to be exposed on each installation in the individual admin screen.

i often look this info up in the database when helping a customer, because i send them different videos and use different language in my emails (especially "System Preferences" vs "System Settings") based on what version of macOS they're running. it would save me some time to be able to find this in the analytics site instead.

if you update the interface Installation decl to become:

export interface Installation {
  userId: number;
  appVersion: string; // semver
  filterVersion: string; // semver
  modelIdentifier: string;
  appReleaseChannel: 'stable' | 'beta' | 'canary'
+ osVersionNumber: string?
+ osVersionName: string?
  createdAt: ISODateString;
}

that should capture the new info from the pr linked

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant