mirror of
				https://github.com/mfulz/qmk_firmware.git
				synced 2025-10-31 05:12:33 +01:00 
			
		
		
		
	Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
		
						commit
						d75ae52fe6
					
				| @ -34,7 +34,7 @@ def generate_rgb_breathe_table(cli): | |||||||
|     """ |     """ | ||||||
|     breathe_values = [0] * 256 |     breathe_values = [0] * 256 | ||||||
|     for pos in range(0, 256): |     for pos in range(0, 256): | ||||||
|         breathe_values[pos] = (int)((math.exp(math.sin((pos/255) * math.pi)) - cli.args.center / math.e) * (cli.args.max / (math.e - 1 / math.e)))  # noqa: yapf insists there be no whitespace around / |         breathe_values[pos] = (int)((math.exp(math.sin((pos / 255) * math.pi)) - cli.args.center / math.e) * (cli.args.max / (math.e - 1 / math.e))) | ||||||
| 
 | 
 | ||||||
|     values_template = '' |     values_template = '' | ||||||
|     for s in range(0, 3): |     for s in range(0, 3): | ||||||
| @ -46,7 +46,7 @@ def generate_rgb_breathe_table(cli): | |||||||
|             values_template += '    ' if pos % 8 == 0 else '' |             values_template += '    ' if pos % 8 == 0 else '' | ||||||
|             values_template += '0x{:02X}'.format(breathe_values[pos]) |             values_template += '0x{:02X}'.format(breathe_values[pos]) | ||||||
|             values_template += ',' if (pos + step) < 256 else '' |             values_template += ',' if (pos + step) < 256 else '' | ||||||
|             values_template += '\n' if (pos+step) % 8 == 0 else ' '  # noqa: yapf insists there be no whitespace around + |             values_template += '\n' if (pos + step) % 8 == 0 else ' ' | ||||||
| 
 | 
 | ||||||
|         values_template += '#endif' |         values_template += '#endif' | ||||||
|         values_template += '\n\n' if s < 2 else '' |         values_template += '\n\n' if s < 2 else '' | ||||||
|  | |||||||
| @ -218,7 +218,7 @@ def render_key_rect(textpad, x, y, w, h, label, style): | |||||||
| 
 | 
 | ||||||
|     label_blank = ' ' * label_len |     label_blank = ' ' * label_len | ||||||
|     label_border = box_chars['h'] * label_len |     label_border = box_chars['h'] * label_len | ||||||
|     label_middle = label + ' '*label_leftover  # noqa: yapf insists there be no whitespace around * |     label_middle = label + ' ' * label_leftover | ||||||
| 
 | 
 | ||||||
|     top_line = array('u', box_chars['tl'] + label_border + box_chars['tr']) |     top_line = array('u', box_chars['tl'] + label_border + box_chars['tr']) | ||||||
|     lab_line = array('u', box_chars['v'] + label_middle + box_chars['v']) |     lab_line = array('u', box_chars['v'] + label_middle + box_chars['v']) | ||||||
| @ -245,10 +245,10 @@ def render_key_isoenter(textpad, x, y, w, h, label, style): | |||||||
|     if len(label) > label_len: |     if len(label) > label_len: | ||||||
|         label = label[:label_len] |         label = label[:label_len] | ||||||
| 
 | 
 | ||||||
|     label_blank = ' ' * (label_len-1)  # noqa: yapf insists there be no whitespace around - and * |     label_blank = ' ' * (label_len - 1) | ||||||
|     label_border_top = box_chars['h'] * label_len |     label_border_top = box_chars['h'] * label_len | ||||||
|     label_border_bottom = box_chars['h'] * (label_len-1)  # noqa |     label_border_bottom = box_chars['h'] * (label_len - 1) | ||||||
|     label_middle = label + ' '*label_leftover  # noqa |     label_middle = label + ' ' * label_leftover | ||||||
| 
 | 
 | ||||||
|     top_line = array('u', box_chars['tl'] + label_border_top + box_chars['tr']) |     top_line = array('u', box_chars['tl'] + label_border_top + box_chars['tr']) | ||||||
|     lab_line = array('u', box_chars['v'] + label_middle + box_chars['v']) |     lab_line = array('u', box_chars['v'] + label_middle + box_chars['v']) | ||||||
| @ -277,10 +277,10 @@ def render_key_baenter(textpad, x, y, w, h, label, style): | |||||||
|     if len(label) > label_len: |     if len(label) > label_len: | ||||||
|         label = label[:label_len] |         label = label[:label_len] | ||||||
| 
 | 
 | ||||||
|     label_blank = ' ' * (label_len-3)  # noqa: yapf insists there be no whitespace around - and * |     label_blank = ' ' * (label_len - 3) | ||||||
|     label_border_top = box_chars['h'] * (label_len-3)  # noqa |     label_border_top = box_chars['h'] * (label_len - 3) | ||||||
|     label_border_bottom = box_chars['h'] * label_len |     label_border_bottom = box_chars['h'] * label_len | ||||||
|     label_middle = label + ' '*label_leftover  # noqa |     label_middle = label + ' ' * label_leftover | ||||||
| 
 | 
 | ||||||
|     top_line = array('u', box_chars['tl'] + label_border_top + box_chars['tr']) |     top_line = array('u', box_chars['tl'] + label_border_top + box_chars['tr']) | ||||||
|     mid_line = array('u', box_chars['v'] + label_blank + box_chars['v']) |     mid_line = array('u', box_chars['v'] + label_blank + box_chars['v']) | ||||||
|  | |||||||
| @ -51,7 +51,7 @@ allow_split_before_dict_value=True | |||||||
| #     e = 1*2 - 3 | #     e = 1*2 - 3 | ||||||
| #     f = 1 + 2 + 3 + 4 | #     f = 1 + 2 + 3 + 4 | ||||||
| # | # | ||||||
| arithmetic_precedence_indication=True | arithmetic_precedence_indication=False | ||||||
| 
 | 
 | ||||||
| # Number of blank lines surrounding top-level function and class | # Number of blank lines surrounding top-level function and class | ||||||
| # definitions. | # definitions. | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 QMK Bot
						QMK Bot