@genesislcap/blank-app-seed 3.31.0 → 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.
- package/.genx/package.json +1 -1
- package/.genx/versions.json +1 -1
- package/.gitignore +2 -0
- package/CHANGELOG.md +14 -0
- package/README.md +5 -5
- package/package.json +1 -1
- package/server/build.gradle.kts +1 -0
- package/server/gradle.properties +1 -0
- package/server/settings.gradle.kts +6 -5
package/.genx/package.json
CHANGED
package/.genx/versions.json
CHANGED
package/.gitignore
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
10
|
+
## [3.31.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.31.0...v3.31.1) (2024-10-01)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* automated dependency version update [skip-ci] [PSD-9](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/9) (#353) f3e5550
|
|
16
|
+
|
|
3
17
|
## [3.31.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.2...v3.31.0) (2024-10-01)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
# {{appName}}
|
|
2
2
|
|
|
3
|
-
|
|
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
package/server/build.gradle.kts
CHANGED
package/server/gradle.properties
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
pluginManagement {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
val genesisVersion: String by settings
|
|
3
|
+
val launcherVersion: String by settings
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
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
|
|