- register screen: - smarter width-sensitive layout, with multi-commodity amounts on one line - items are sorted in date order - jumps to the latest item by default, with consistent scroll position - more prerendering, might speed up movement/paging slightly - themes! --theme to select, --help to list (current themes: default, terminal, greenterm) - border tweaks - dropped side borders, added side padding
		
			
				
	
	
		
			24 lines
		
	
	
		
			485 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			485 B
		
	
	
	
		
			Haskell
		
	
	
	
	
	
| {-|
 | |
| Re-export the modules of the hledger-ui program.
 | |
| -}
 | |
| 
 | |
| module Hledger.UI (
 | |
|                      module Hledger.UI.Main,
 | |
|                      module Hledger.UI.Options,
 | |
|                      module Hledger.UI.Theme,
 | |
|                      tests_Hledger_UI
 | |
|               )
 | |
| where
 | |
| import Test.HUnit
 | |
| 
 | |
| import Hledger.UI.Main
 | |
| import Hledger.UI.Options
 | |
| import Hledger.UI.Theme
 | |
| 
 | |
| tests_Hledger_UI :: Test
 | |
| tests_Hledger_UI = TestList
 | |
|  [
 | |
|  --  tests_Hledger_UI_Main
 | |
|  --  tests_Hledger_UI_Options
 | |
|  ]
 |