Skip to content
This repository has been archived by the owner on Jun 2, 2022. It is now read-only.

Commit

Permalink
v5.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dave_albright committed Nov 2, 2021
1 parent b68cc9f commit 5a696ce
Show file tree
Hide file tree
Showing 10 changed files with 1,454 additions and 1,468 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ 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/).

## 5.3.3
- fix error in purchaseorder observer
- add modified event to invoice, quote, workorder apicontrollers

## 5.3.2
- fix autocomplete lookup and stock counting
- add product and employee selection modals to quotes, invoice, recurring and workorders
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
Release Notes
---
### BillingTrack 5.3.3 (2021-11-05)
- fix error in purchaseorder observer
- add modified event to invoice, quote, workorder apicontrollers

### BillingTrack 5.3.2 (2021-10-22)
- fix autocomplete lookup and stock counting
- add product and employee selection modals to quotes, invoice, recurring and workorders
Expand Down
350 changes: 142 additions & 208 deletions composer.lock

Large diffs are not rendered by default.

30 changes: 30 additions & 0 deletions database/migrations/2021_11_01_000000_version_533.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

use BT\Modules\Settings\Models\Setting;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;

class Version533 extends Migration
{

/**
* Run the migrations.
* @table payments_custom
*
* @return void
*/
public function up()
{
Setting::saveByKey('version', '5.3.3');
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Setting::saveByKey('version', '5.3.2');
}
}
2,518 changes: 1,266 additions & 1,252 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"axios": "^0.23",
"axios": "^0.24",
"bootstrap": "^4.6.0",
"cross-env": "^7.0.3",
"jquery": "^3.5.1",
Expand Down Expand Up @@ -39,7 +39,7 @@
"fullcalendar": "^5.5.1",
"jquery-autosize": "^1.18.18",
"jquery-datetimepicker": "^2.5.21",
"jquery-ui": "^1.12.1",
"jquery-ui": "^1.13.0",
"jquery-ui-built-themes": "^1.12.1",
"jquery-validation": "^1.19.3",
"moment": "^2.29.1",
Expand Down
6 changes: 3 additions & 3 deletions public/css/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js.LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/

/*!
* Bootstrap v4.6.0 (https://getbootstrap.com/)
* Bootstrap v4.6.1 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion public/plugins/chosen/chosen.css

Large diffs are not rendered by default.

0 comments on commit 5a696ce

Please sign in to comment.