Skip to content

Releases: cytech/BillingTrack-Wired

v6.1.2

07 Feb 20:05
Compare
Choose a tag to compare

6.1.2

  • update to admin-lte v4
  • lock stripe api version to stripe-php v10.21 version (stripe api '2022-11-15')
  • Remove unused Constants.php

v6.1.1

30 Mar 15:16
Compare
Choose a tag to compare

v6.1.1

  • fix duplicate item creation after module save

v6.1.0

27 Mar 18:30
Compare
Choose a tag to compare

6.1.0

  • Upgrade to Laravel 10
  • update Laravel deprecated $dates to $casts
  • update all dependencies
  • fix php8.1 null deprecations
  • adminlte to v4-dev-bs530
  • revamp skinning with bootstrap 5.3 color-modes
  • add condensed option to timesheet report
  • fix product cost to price in add product
  • fix custom fields error in add modules
  • modify client activity widget

v6.0.5

09 Dec 14:14
Compare
Choose a tag to compare

v6.0.5
fix regression in Base Currency setting and currency conversion

v6.0.4

13 Oct 16:36
Compare
Choose a tag to compare
  • fix regression in datatable search returnurl
  • add red/bold to overdue invoice due_at in datatable
  • move company profile and status filters to datatables for Quotes, Workorders and Invoices
  • add saveTab to client view
  • replace deprecated javascript substr() with slice()

v6.0.3

22 Sep 22:04
Compare
Choose a tag to compare
  • Requires PHP >= 8.1
  • add employee type and termination date
  • update employees available query to include null term_date or term_date > $date
  • fix datatable status on paginate
  • fix error with employee resource id in scheduler
  • update laravel-livewire-tables to V2
  • modified create-seeded-workorder-modal checkbox selection

v6.0.2

14 Jun 17:19
Compare
Choose a tag to compare

fix workorderToInvoice date setting

v6.0.1

17 May 17:29
Compare
Choose a tag to compare
  • minor ui fixes
  • merge pr4131 into admin-lte-v4 v4-dev fork (fix sidemenu collapse)
  • clean misc resources

v6.0.0

18 Apr 18:08
Compare
Choose a tag to compare

Minimum PHP requirement for v6.X.X is PHP >= 8.0.2
The next generation of the BillingTrack v5.x.x software.
Create a new installation/site. Although it is possible to do so, do not attempt to upgrade an existing BillingTrack Site.
This is a new repository and existing cloners will not be able to pull the update.
This will upgrade the exisitng BillingTrack database, but it is HIGHLY recommended to backup the existing database and copy to a new one.

6.0.0

  • Combine and optimize javascript in Scheduler Module
  • complete rework of client unique_name, all client lookups now based on client name.
    possible breaking change for add-on developers accessing the firstOrCreateByUniquename method.
    Migration changes and update all unique names as:
    if unique_name == name , unique name = name truncated to 10 characters with an underscore and a random 5 character suffix.
    if unique_name contains name, unique_name = name truncated to 10 characters with an underscore and existing unique_name with name removed suffix.
    if unique_name does not match above assume custom unique is entered and, unique_name = name truncated to 10 characters with an underscore and existing unique_name suffix.
  • complete rework of schedule reminders. The ability to create multiple reminders for the same event never made much sense. The rework more closely follows "standard" reminder pratices...
    • Reminders have been moved as a select item in create event/recurring event
      Only one reminder can be created per occurrence.
      Existing reminders will be migrated to:
      schedule_reminders->reminder_location to schedule-> location_str.
      schedule_reminders->reminder_date to schedule->occurrence->reminder_date.
      In the cases where many reminders were created on the same event, ONLY THE LAST CREATED REMINDER WILL BE TRANSFERRED.
      The old schedule_reminders table is then deleted.
  • Livewired module create modals
  • Livewired all lookups (clients, employees, vendors, products, itemlookups)
  • Livewired all datatables and removed yajra/datatables
  • remove/replace Jquery and all dependencies
  • update to Bootstrap 5 and adminlte v4
  • Added ACL via Spatie/permissions
  • add Laravolt Avatar
  • cleanup online payment systems, replace deprecated PayPal/rest-api-php with srmklive/laravel-paypal
  • Upgrade to Laravel 9 and all dependencies