Kayako logo
Archive Release candidate feedback archive forum.

Kayako develops robust helpdesk software, live chat and real-time visitor monitoring software.
Kayako is trusted by more than 30,000 organizations, including a number of Fortune 500 companies and government institutions.
Closed Thread
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  (#1) Old
Jamie Edwards Offline
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 7,269
Join Date: Jan 2006
Location: England, UK
Lightbulb 3.60.01 Release Candidate 2 available now - 08-07-2009, 08:35 PM

We're pleased to announce that 3.60.01 Release Candidate 2 is now available for download from the Members' Area (https://members.kayako.net). The correct file to download is the one marked '3.60.01 UNSTABLE.'

Please report any problems you experience with this build in this forum (create a new thread to report a new issue): Alpha, Beta and Release Candidate Feedback - Kayako - Community Forums

We would like to remind everyone that PHP 5.1.0 is a minimum requirement of your web server. 3.60.00 and future versions will not work on versions of PHP earlier than 5.1.0. See our system requirements page for more information.

Please remember, before upgrading to Release Candidate builds, take full database and file backups.


Upgrade incentive offer

We are offering:
  • Three free months of support and upgrades AND
  • Three free InstaAlert Pro licenses
To the first 20 self-hosted customers to update to 3.60.01 RC2.

This offer is only available to current customers whose support subscription is currently active. After updating, please e-mail jamie.edwards[at]kayako.com with a link to your support desk. Once verified, we will add your additional months of support and upgrades and licenses. If you have already upgraded to RC1 and received a free gift, you are welcome to apply again for 3 free InstaAlert licenses and 2 additional months of support and upgrades.



3.60.01 Release Candidate 2

Bug fixes:
  • SWIFTTHREE-10: Merging tickets via mass actions when viewing a ticket list do not trigger alert
  • SWIFTTHREE-9: Alert for 'Ticket Deleted' not triggering
  • SWIFTTHREE-2: Alert for 'Ticket Edited' not triggering
  • SWIFTTHREE-3: Alert for 'Ticket Merged' not triggering
  • SWIFTTHREE-5: Default database chunk size is too large
  • SWIFTTHREE-6: Bad calendar JS locale file for Portuguese


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
   
  (#2) Old
Jamie Edwards Offline
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 7,269
Join Date: Jan 2006
Location: England, UK
10-07-2009, 06:25 PM

Template change log between 3.50.06 and 3.60.01

If you are upgrading to 3.60 from a version earlier than 3.50.06, this change log does not cover all of the required template changes, and you are suggested to revert all templates that are marked as such.
  • customfields
    • Changed:
      • HTML Code:
        <td width="70%"><select name="<{$field[name]}>[]" size="5" style="width:160px;" class="swiftselect" multiple> 
    • To:
      • HTML Code:
        <td width="70%"><select name="<{$field[name]}>" class="swiftselect"> 
  • changepassword
    • Changed:
      • HTML Code:
        <input type="hidden" name="_a" value="changepassword"> 
    • To:
      • HTML Code:
        <input type="hidden" name="_a" value="changepassword">
        <input type="hidden" name="sid" value="<{$sid}>"> 
  • email_notvalidatedgeneric
    • New template
  • email_needsstaffvalidation
    • New template
  • chatpostframe
    • Changed:
      • Code:
        function addMsgToQueue() {
            msgQueue[msgQueue.length] = doTrim(document.postform.msg.value);
            parent.headerframe.displayClientMessage(doTrim(document.postform.msg.value));
            document.postform.msg.value = "";
            return false;
        }
        
    • To:
      • Code:
        function addMsgToQueue() {
            if (doTrim(document.postform.msg.value) != "")
            {
                msgQueue[msgQueue.length] = doTrim(document.postform.msg.value);
                parent.headerframe.displayClientMessage(doTrim(document.postform.msg.value));
            }
            document.postform.msg.value = "";
            return false;
        }
        
  • navbar
    • Changed:
      • HTML Code:
        <span class="smalltext"><{$language[loggedinas]}><strong><{$_USER[fullname]}></strong></span> 
    • To:
      • HTML Code:
        <span class="smalltext"><{$language[loggedinas]}><strong><{$userdisplayname}></strong></span> 
  • alert_ticketdelete
    • New template
  • alert_merge
    • New template
  • alert_edit
    • New template
  • submitticket
    • Changed:
      • HTML Code:
        <td width="70%"><input name="fullname_show" type="text" size="25" class="swifttext" value="<?global $this_user; print( $this_user['client_fname'] . " " . $this_user['client_lname'] ); ?>" disabled><input name="fullname" type="hidden" value="<?global $this_user; print( $this_user['client_fname'] . " " . $this_user['client_lname'] ); ?>"></td> 
    • To:
      • HTML Code:
        <td width="70%"><input name="fullname_show" type="text" size="25" class="swifttext" value="<?php global $this_user; print( $this_user['client_fname'] . " " . $this_user['client_lname'] ); ?>" disabled><input name="fullname" type="hidden" value="<?php global $this_user; print( $this_user['client_fname'] . " " . $this_user['client_lname'] ); ?>"></td> 
    • Changed:
      • HTML Code:
        <td><input name="email_show" type="text" size="25" class="swifttext" value="<?global $this_user; print( $this_user['client_email'] ); ?>" disabled><input name="email" type="hidden" value="<?global $this_user; print( $this_user['client_email'] ); ?>"></td> 
    • To:
      • HTML Code:
        <td><input name="email_show" type="text" size="25" class="swifttext" value="<?php global $this_user; print( $this_user['client_email'] ); ?>" disabled><input name="email" type="hidden" value="<?php global $this_user; print( $this_user['client_email'] ); ?>"></td>
        <{elseif $iswhmcs == true}> 
  • email_smsreport
    • Changed:
      • HTML Code:
        <{$language[sdeliverytime]}></b><{$deliverytime}>
        <{$language[snumber]}></b><{$cellnumber}>
        <{$language[smessage]}></b><{$message}>
        <{$language[sgatewayresult]}></b><{$gatewayresult}> 
    • To:
      • HTML Code:
        <{$language[sdeliverytime]}><{$deliverytime}>
        <{$language[snumber]}><{$cellnumber}>
        <{$language[smessage]}><{$message}>
        <{$language[sgatewayresult]}><{$gatewayresult}> 


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
   
  (#3) Old
Jamie Edwards Offline
Operations Manager
 
Jamie Edwards's Avatar
 
Posts: 7,269
Join Date: Jan 2006
Location: England, UK
15-07-2009, 11:09 AM

All of the RC2 offers have been taken up. Thank you for an overwhelming response!


Jamie Edwards (jamie.edwards ]at[ kayako.com)
----------------------------------------------------------------
---
   
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
3.60.00 Release Candidate 1 available now Jamie Edwards Archive 7 06-07-2009 03:38 PM
3.50.00 Release Candidate 1 available now Ryan Lederman Archive 10 02-03-2009 08:13 AM
3.40.00 Release Candidate 1 Jamie Edwards Archive 23 22-12-2008 11:03 AM
[Blog Post] 3.40.00 Release Candidate 1 Available FeedBot From our blog 0 12-12-2008 09:20 PM
3.30.00 Release Candidate 2 Jamie Edwards Archive 37 08-08-2008 01:11 AM



Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.2


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78