Skip to content

Commit

Permalink
Update website
Browse files Browse the repository at this point in the history
  • Loading branch information
jeppeman committed Aug 12, 2023
1 parent ca74b5a commit 0a45bd5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
4 changes: 2 additions & 2 deletions globallydynamic-website/frontend/src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ export type Versions = { AGP: string, GRADLE: string, ANDROID: string, SERVER: s

const versions: Versions = {
'GRADLE': '1.6.0',
'ANDROID': '1.2.0',
'ANDROID': '1.3.0',
'SERVER': '1.5.0',
'STUDIO': '1.8.0',
'STUDIO': '1.9.0',
'AGP': '7.2.1'
}

Expand Down
22 changes: 22 additions & 0 deletions globallydynamic-website/frontend/src/release-notes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@ import LinkRenderer from "../components/LinkRenderer";
import ImageRenderer from "../components/ImageRenderer";

const markdown = `
Android library 1.3.0 (August 2023)
---
* Support for uninstalling modules on demand for the self hosted variant, use as follows:
\`\`\`kotlin
var mySessionId = 0
globalSplitInstallManager.registerListener { state ->
if (state.sessionId() == mySessionId) {
GlobalSplitInstallSessionStatus.UNINSTALLED -> ...
GlobalSplitInstallSessionStatus.UNINSTALLING -> ...
}
}
globalSplitInstallManager.startUninstall(listOf("mymodule"))
.addOnSuccessListener { mySessionId = it }
\`\`\`
Note: this is a no-op for the gplay and huawei-variants.
Studio plugin 1.9.0 (August 2023)
---
* Android Studio Giraffe (2022.3.1) compatibility.
* Bump GloballyDynamic Server to 1.5.0
Server 1.5.0 (July 2023)
---
* Make compatible with gradle 8.x
Expand Down

0 comments on commit 0a45bd5

Please sign in to comment.