@genesislcap/blank-app-seed 3.31.1 → 3.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "3.31.1",
4
+ "version": "3.32.0",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
package/.gitignore CHANGED
@@ -107,3 +107,5 @@ custom-elements.json
107
107
  # Gradle tasks
108
108
  .bootstrapDone
109
109
  .tests.executed
110
+
111
+ blankappseedtest/
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.32.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.31.1...v3.32.0) (2024-10-16)
4
+
5
+
6
+ ### Features
7
+
8
+ * add genesis launcher (#362) b4a6f7e
9
+
3
10
  ## [3.31.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.31.0...v3.31.1) (2024-10-01)
4
11
 
5
12
 
package/README.md CHANGED
@@ -1,10 +1,7 @@
1
1
  # {{appName}}
2
2
 
3
- This project has been created from the Genesis Blank Application Seed. Our seeds allow users to quickly bootstrap
4
- their projects. Each seed adheres to strict Genesis best practices, and has passed numerous performance, compliance and
5
- accessibility checks.
3
+ {{{description}}}
6
4
 
7
- {{description}}
8
5
  {{!
9
6
 
10
7
  # Testing
@@ -42,9 +39,12 @@ To get a simple application running check the [Quick Start](https://learn.genesi
42
39
 
43
40
  If you need an introduction to the Genesis platform and its modules it's worth heading [here](https://learn.genesis.global/docs/getting-started/learn-the-basics/simple-introduction/).
44
41
 
45
-
46
42
  ## Project Structure
47
43
 
44
+ This project has been created from the Genesis Blank Application Seed. Our seeds allow users to quickly bootstrap
45
+ their projects. Each seed adheres to strict Genesis best practices, and has passed numerous performance, compliance and
46
+ accessibility checks.
47
+
48
48
  This project contains **server** and **client** directories which contain the server and client code respectively.
49
49
 
50
50
  ### Server
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "3.31.1",
4
+ "version": "3.32.0",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"
@@ -2,6 +2,7 @@ ext.set("localDaogenVersion", "{{localGenId}}")
2
2
 
3
3
  plugins {
4
4
  `maven-publish`
5
+ id("global.genesis.genesis-launcher-gui")
5
6
  }
6
7
 
7
8
  subprojects {
@@ -6,6 +6,7 @@ dockerCompactProcesses=true
6
6
  version={{applicationVersion}}
7
7
  genesisVersion={{ versions.GSF }}
8
8
  authVersion={{ versions.Auth }}
9
+ launcherVersion=0.1.3
9
10
 
10
11
  # Default ssh config for the docker dev environment
11
12
  genesis-home=/app/run
@@ -1,10 +1,10 @@
1
1
  pluginManagement {
2
- pluginManagement {
3
- val genesisVersion: String by settings
2
+ val genesisVersion: String by settings
3
+ val launcherVersion: String by settings
4
4
 
5
- plugins {
6
- id("global.genesis.settings") version genesisVersion
7
- }
5
+ plugins {
6
+ id("global.genesis.settings") version genesisVersion
7
+ id("global.genesis.genesis-launcher-gui") version launcherVersion
8
8
  }
9
9
 
10
10
  repositories {
@@ -28,6 +28,7 @@ pluginManagement {
28
28
  excludeGroup("org.agrona")
29
29
  }
30
30
  }
31
+ google()
31
32
  }
32
33
  }
33
34