File tree 5 files changed +56
-11404
lines changed
src/main/resources/templates
5 files changed +56
-11404
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
+ and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
+
7
+ ## [ Unreleased]
8
+
9
+ ## [ 2.0.0] - 2018-06-04
10
+ ### Added
11
+ - Scaffold activation: transfer at least 10 OPEN Tokens to a scaffold to make it active.
12
+ - Active scaffold flag
13
+ - Scaffold activating message
14
+ - Scaffold list pagination
15
+ - Immediate funds withdrawal. Now contract amount is directly transferred to developers wallet without additional
16
+ actions required.
17
+ - Logo - link to /scaffolds
18
+ - Link to Etherscan
19
+
20
+ ### Changed
21
+ - API code refactored from Node.js to Kotlin
22
+ - Google authentication
23
+ - Log in
24
+ - Log out
25
+ - Get current user
26
+ - Save user after authentication
27
+ - Scaffold processing
28
+ - Scaffold template processing
29
+ - Scaffold compiling
30
+ - Scaffold deploy
31
+ - Scaffold display
32
+ - Get scaffolds of current user
33
+ - Get scaffold by his address
34
+ - API web interface is refactored
35
+ - Front-end build into target back-end directory
36
+ - Routing and link refactoring
37
+ - Supply integration with new API
38
+ - Default currency and auto convert into Ethereum
39
+ - Creating scaffold with key select input
40
+
41
+ ### Removed
42
+ - "Withdraw" button is removed
43
+
44
+ [ Unreleased ] : https://github.com/OpenFuturePlatform/open-api/compare/master...sprint
45
+ [ 2.0.0 ] : https://github.com/OpenFuturePlatform/open-api/compare/8ea69084ef657f66976518827873c9c922970ce6...v2.0.0
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ plugins {
10
10
apply plugin : " io.spring.dependency-management"
11
11
12
12
group = " io.openfuture.api"
13
- version = " 1 .0.0"
13
+ version = " 2 .0.0"
14
14
sourceCompatibility = JavaVersion . VERSION_1_8
15
15
16
16
repositories {
@@ -20,7 +20,9 @@ repositories {
20
20
}
21
21
}
22
22
23
- ext. s3Version = " 1.11.333"
23
+ ext {
24
+ s3Version = " 1.11.333"
25
+ }
24
26
25
27
dependencies {
26
28
// Spring
@@ -37,11 +39,11 @@ dependencies {
37
39
runtime(" org.postgresql:postgresql" )
38
40
compile(" org.flywaydb:flyway-core" )
39
41
40
- // Ethereum
42
+ // Ethereum
41
43
compile(" org.web3j:core:3.4.0" )
42
44
compile(" org.ethereum:ethereumj-core:1.7.2-RELEASE" )
43
45
44
- // AWS
46
+ // AWS
45
47
compile(" com.amazonaws:aws-java-sdk-s3:${ s3Version} " )
46
48
47
49
// Kotlin
@@ -52,7 +54,7 @@ dependencies {
52
54
// Utils
53
55
compile(" commons-io:commons-io:2.6" )
54
56
55
- // Test
57
+ // Test
56
58
testCompile(" org.springframework.boot:spring-boot-starter-test" )
57
59
}
58
60
You can’t perform that action at this time.
0 commit comments