File tree Expand file tree Collapse file tree
src/main/resources/templates Expand file tree Collapse file tree 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 {
1010apply plugin : " io.spring.dependency-management"
1111
1212group = " io.openfuture.api"
13- version = " 1 .0.0"
13+ version = " 2 .0.0"
1414sourceCompatibility = JavaVersion . VERSION_1_8
1515
1616repositories {
@@ -20,7 +20,9 @@ repositories {
2020 }
2121}
2222
23- ext. s3Version = " 1.11.333"
23+ ext {
24+ s3Version = " 1.11.333"
25+ }
2426
2527dependencies {
2628 // Spring
@@ -37,11 +39,11 @@ dependencies {
3739 runtime(" org.postgresql:postgresql" )
3840 compile(" org.flywaydb:flyway-core" )
3941
40- // Ethereum
42+ // Ethereum
4143 compile(" org.web3j:core:3.4.0" )
4244 compile(" org.ethereum:ethereumj-core:1.7.2-RELEASE" )
4345
44- // AWS
46+ // AWS
4547 compile(" com.amazonaws:aws-java-sdk-s3:${ s3Version} " )
4648
4749 // Kotlin
@@ -52,7 +54,7 @@ dependencies {
5254 // Utils
5355 compile(" commons-io:commons-io:2.6" )
5456
55- // Test
57+ // Test
5658 testCompile(" org.springframework.boot:spring-boot-starter-test" )
5759}
5860
You can’t perform that action at this time.
0 commit comments