Squashed commit of the following: commit595f620d9eAuthor: phl0 <github@florian-wolters.de> Date: Wed Nov 1 13:58:05 2023 +0100 Update languages commitf670a06059Author: phl0 <github@florian-wolters.de> Date: Wed Nov 1 13:55:04 2023 +0100 Added user option for enabling QSO end time logging commit36d9a95ebbMerge:54d5bb53352931b1Author: phl0 <github@florian-wolters.de> Date: Wed Nov 1 12:18:39 2023 +0100 Merge branch 'dev' into qsoTime commit54d5bb535bAuthor: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:14:58 2023 +0200 start/end times for other languages commitc5f6bb0cabAuthor: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:14:42 2023 +0200 Hide end time if only differs in seconds as we only display minutes anyway ... commitd519d88604Author: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:14:29 2023 +0200 use start as end time if end is not set separately commitf2588ad132Author: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:13:43 2023 +0200 reset timers on form reset commit2b7ee4e48cAuthor: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:13:27 2023 +0200 Strip seconds from session time variable commite0c35aa0cfAuthor: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:13:11 2023 +0200 Adapt contest logging commit5368ef25f3Author: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:12:50 2023 +0200 Make date field a little smaller commitad2d7e756cAuthor: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:12:30 2023 +0200 Add button to reset start time commitf56e031946Author: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:11:09 2023 +0200 Copy start to end time on focus out commitb741d0428dAuthor: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:10:45 2023 +0200 Only min and sec for post QSO template commit77314edd31Author: phl0 <github@florian-wolters.de> Date: Fri Oct 27 10:08:49 2023 +0200 Basics for QSO end time logging
		
			
				
	
	
		
			41 行
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 行
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php defined('BASEPATH') OR exit('No direct script access allowed');
 | |
| /*
 | |
| |--------------------------------------------------------------------------
 | |
| | Enable/Disable Migrations
 | |
| |--------------------------------------------------------------------------
 | |
| |
 | |
| | Migrations are disabled by default but should be enabled
 | |
| | whenever you intend to do a schema migration.
 | |
| |
 | |
| */
 | |
| $config['migration_enabled'] = TRUE;
 | |
| 
 | |
| 
 | |
| /*
 | |
| |--------------------------------------------------------------------------
 | |
| | Migrations version
 | |
| |--------------------------------------------------------------------------
 | |
| |
 | |
| | This is used to set migration version that the file system should be on.
 | |
| | If you run $this->migration->latest() this is the version that schema will
 | |
| | be upgraded / downgraded to.
 | |
| |
 | |
| */
 | |
| 
 | |
| $config['migration_version'] = 148;
 | |
| 
 | |
| /*
 | |
| |--------------------------------------------------------------------------
 | |
| | Migrations Path
 | |
| |--------------------------------------------------------------------------
 | |
| |
 | |
| | Path to your migrations folder.
 | |
| | Typically, it will be within your application path.
 | |
| | Also, writing permission is required within the migrations path.
 | |
| |
 | |
| */
 | |
| $config['migration_path'] = APPPATH . 'migrations/';
 | |
| 
 | |
| 
 | |
| /* End of file migration.php */
 | |
| /* Location: ./application/config/migration.php */
 |