Skip to content

Commit

Permalink
Merge branch 'release/v1.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
odinsride committed Jul 25, 2018
2 parents cf4461b + 5125915 commit 2c1959b
Show file tree
Hide file tree
Showing 74 changed files with 1,952 additions and 658 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,47 @@
# Changelog
All notable changes to olubalance will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased] changes

## [v1.1.0] - 2018-07-24
### Added
- Major overhaul of the user interface using Material Design
- Better support for Mobile devices

### Changed
- Pagination looks nicer
- First and Last Name added to user registration

### Fixed
- Account starting balance is no longer changeable after creation


## [v1.0.2] - 2018-05-18
### Added
- Transactions can now have attachments! You can now save invoices or receipts alongside your transactions.
- Attachments are stored on Amazon S3
- Images or PDF formats are supported.

## [v1.0.1] - 2018-04-07
### Fixed
- Corrected a typo on the homepage

## v1.0.0 - 2018-04-06
### Added
- olubalance 1.0.0 is our initial release which has basic functionality for users, such as
- User signup and login
- Create, edit, and delete accounts
- Create, edit, and delete transactions within each account
- Transaction table pagination (default 25 rows per page)
- Running balance calculated at the transaction level
- Account balance will be updated automatically after user operations on transactions
- Account overview with list of all accounts and balances for each


[Unreleased]: https://github.com/odinsride/olubalance/compare/v1.1.0...HEAD
[v1.1.0]: https://github.com/odinsride/olubalance/compare/v1.0.2...v1.1.0
[v1.0.2]: https://github.com/odinsride/olubalance/compare/v1.0.1...v1.0.2
[v1.0.1]: https://github.com/odinsride/olubalance/compare/v1.0...v1.0.1
10 changes: 8 additions & 2 deletions Gemfile
Expand Up @@ -20,13 +20,19 @@ gem 'uglifier', '>= 1.3.0'
# gem 'therubyracer', platforms: :ruby

gem 'simple_form'
gem 'bootstrap', '~> 4.0.0'
#gem 'bootstrap', '~> 4.0.0'
gem 'jquery-rails'
gem 'jquery-turbolinks'
gem 'rails-ujs'
gem 'devise'
gem 'will_paginate', '~> 3.1.0'
gem "paperclip", "~> 6.0.0"
gem "aws-sdk"
gem 'figaro'
gem 'materialize-sass', '~> 0.100.2'
gem 'material_icons'
gem 'materialize-form'
gem 'font-awesome-rails'

# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
Expand All @@ -52,7 +58,7 @@ end

group :development do
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console', '>= 3.3.0'
#gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
Expand Down

0 comments on commit 2c1959b

Please sign in to comment.