mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-22 07:40:32 +00:00
feat: add server changelog file.
This commit is contained in:
28
server/CHANGELOG.md
Normal file
28
server/CHANGELOG.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
|
||||||
|
# Change Log
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [Unreleased] - yyyy-mm-dd
|
||||||
|
|
||||||
|
Here we write upgrading notes for brands. It's a team effort to make them as
|
||||||
|
straightforward as possible.
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Dynamic filter for resources list.
|
||||||
|
- Dynamic search for resources list.
|
||||||
|
- Dynamic resources to switch between active and inactive items.
|
||||||
|
- Add virtual computed attributes to sale invoice list and individual.
|
||||||
|
- This CHANGELOG file to hopefully serve as an evolving example of a
|
||||||
|
standardized open source project CHANGELOG.
|
||||||
|
- Remove subscription free trial.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Redesigne organization tenant metadata table to depend on table on system
|
||||||
|
database instead of tenant database.
|
||||||
|
-
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
@@ -10,7 +10,7 @@ export interface IOrganizationSetupDTO{
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface IOrganizationBuildDTO {
|
export interface IOrganizationBuildDTO {
|
||||||
organizationName: string;
|
name: string;
|
||||||
baseCurrency: string,
|
baseCurrency: string,
|
||||||
timezone: string;
|
timezone: string;
|
||||||
fiscalYear: string;
|
fiscalYear: string;
|
||||||
@@ -18,7 +18,7 @@ export interface IOrganizationBuildDTO {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface IOrganizationUpdateDTO {
|
export interface IOrganizationUpdateDTO {
|
||||||
organizationName: string;
|
name: string;
|
||||||
baseCurrency: string,
|
baseCurrency: string,
|
||||||
timezone: string;
|
timezone: string;
|
||||||
fiscalYear: string;
|
fiscalYear: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user