Skip to content

Commit

Permalink
mac files; cmt in def.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey-T committed Jan 10, 2017
1 parent e13e7bb commit 1c093b1
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
str1=<!--
str2=-->
styles_cmt=Comment
styles_str=Tag string
styles_str=Text,Tag string

[map]
Text=Id
Expand Down
6 changes: 3 additions & 3 deletions app/cudatext.app/Contents/Resources/data/lexlib/HTML.lcf
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,15 @@ object SyntAnal13: TLibSyntAnalyzer
DisplayName = 'Text escaped'
StyleName = 'Text escaped'
TokenType = 9
Expression = '&\w+;'
Expression = '&[a-z]+;'
ColumnFrom = 0
ColumnTo = 0
end
item
DisplayName = 'Text'
StyleName = 'Text'
TokenType = 9
Expression = '[^<>&\{\}]*'
Expression = '[^<>&\{\}\[\]/\\=\x20]+'
ColumnFrom = 0
ColumnTo = 0
end>
Expand Down Expand Up @@ -646,7 +646,7 @@ object SyntAnal13: TLibSyntAnalyzer
' </script>'
' '
' <body src="www.com" style='#39'aaa; aaa; aaa;'#39'> '
' <h1 color=#dde>Text &1020;</h1> '
' <h1 color=#dde>Text &nbsp;</h1> '
' </body> '
'</html>')
TokenTypeNames.Strings = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"EdUnprintHexFont" : "#808080",
"EdMinimapBorder" : "#002240",
"EdMinimapSelBg" : "#DCE9E9",
"EdMicromapBg" : "#E0E0E0",
"EdMicromapViewBg" : "#C0C0C0",
"EdMicromapBg" : "#002240",
"EdMicromapViewBg" : "#505050",
"EdStateChanged" : "#00458D",
"EdStateAdded" : "#006060",
"EdStateSaved" : "#505050",
Expand Down Expand Up @@ -101,4 +101,4 @@
"SplitGroups" : "#00274A",
"ExportHtmlBg" : "#F8F8F2",
"ExportHtmlNumbers" : "#A0A0A4"
}
}
5 changes: 5 additions & 0 deletions app/cudatext.app/Contents/Resources/readme/history.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
* changed


1.6.2
+ session contains state (visible/size) of side/bottom panels
+ micromap shows selections (e.g. after "Find/ Select all")
+ micromap shows spell-check errs

1.6.1
- fixed toolbar API
+ new dialog "Addon installed"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,19 +164,19 @@
//Ruler numbers indent from top, pixels
"ruler_text_indent": 0,

//Show ST3-like minimap at the right edge
//Show minimap
"minimap_show": false,
//If false: show selection area only on mouse-over
//Show selection area always. If false: show selection area only on mouse-over.
"minimap_sel_always": false,
//Show 1pixel frame around selection area
//Show 1-pixel border around selection area
"minimap_sel_border": false,
//Minimap width: 0: autosize, >0: fixed width in chars
"minimap_char_width": 0,
//Minimap placed at left side
//Place minimap to the left side
"minimap_at_left": false,

//Show micromap: small vertical bar at the right edge
"micromap_show": true,
"micromap_show": false,
//Micromap width, pixels
"micromap_width": 12,

Expand Down
8 changes: 4 additions & 4 deletions app/settings_default/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,15 +164,15 @@
//Ruler numbers indent from top, pixels
"ruler_text_indent": 0,

//Show ST3-like minimap at the right edge
//Show minimap
"minimap_show": false,
//If false: show selection area only on mouse-over
//Show selection area always. If false: show selection area only on mouse-over.
"minimap_sel_always": false,
//Show 1pixel frame around selection area
//Show 1-pixel border around selection area
"minimap_sel_border": false,
//Minimap width: 0: autosize, >0: fixed width in chars
"minimap_char_width": 0,
//Minimap placed at left side
//Place minimap to the left side
"minimap_at_left": false,

//Show micromap: small vertical bar at the right edge
Expand Down
2 changes: 1 addition & 1 deletion setup/cuda_ver.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/sh
cuda_ver=1.6.1.1
cuda_ver=1.6.2.0
2 changes: 1 addition & 1 deletion setup/debfiles/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: cudatext
Version: 1.6.1.1-1
Version: 1.6.2.0-1
Section: editors
Priority: optional
Architecture: amd64
Expand Down

0 comments on commit 1c093b1

Please sign in to comment.