diff options
author | 2015-06-30 21:30:16 -0400 | |
---|---|---|
committer | 2015-06-30 21:30:16 -0400 | |
commit | 1d3b44148ed0999ad262912c296716b273a76112 (patch) | |
tree | 50278e449d2fd8d9ff55881c6a18b69628eabcb4 | |
parent | 0bb36c066ea948a9d78c089402abffc6dddb9c6b (diff) | |
download | textadept-1d3b44148ed0999ad262912c296716b273a76112.tar.gz textadept-1d3b44148ed0999ad262912c296716b273a76112.zip |
Updated for 8.1.
-rw-r--r-- | core/init.lua | 2 | ||||
-rw-r--r-- | doc/index.html | 2 | ||||
-rwxr-xr-x | scripts/gen_plist.lua | 2 | ||||
-rw-r--r-- | src/Info.plist | 23 | ||||
-rw-r--r-- | src/Makefile | 1 | ||||
-rw-r--r-- | src/textadept.rc | 8 |
6 files changed, 30 insertions, 8 deletions
diff --git a/core/init.lua b/core/init.lua index a8c0f80a..7634919e 100644 --- a/core/init.lua +++ b/core/init.lua @@ -1,6 +1,6 @@ -- Copyright 2007-2015 Mitchell mitchell.att.foicica.com. See LICENSE. -_RELEASE = "Textadept 8.0" +_RELEASE = "Textadept 8.1" package.path = _HOME..'/core/?.lua;'..package.path diff --git a/doc/index.html b/doc/index.html index 82ca99b5..2a49007e 100644 --- a/doc/index.html +++ b/doc/index.html @@ -55,7 +55,7 @@ <div id="left"> <a id="download"></a> - <h2>Download (v8.0)</h2> + <h2>Download (v8.1)</h2> <a href="feed"> <img src="images/feed.png" style="float: right; margin: 0.25em;" alt="Atom" /> diff --git a/scripts/gen_plist.lua b/scripts/gen_plist.lua index 104bdd61..c98f2320 100755 --- a/scripts/gen_plist.lua +++ b/scripts/gen_plist.lua @@ -83,7 +83,7 @@ xml[#xml + 1] = [[ <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>7.9</string> + <string>8.1</string> <key>NSHighResolutionCapable</key> <true/> </dict> diff --git a/src/Info.plist b/src/Info.plist index e5d8d14f..1aee922c 100644 --- a/src/Info.plist +++ b/src/Info.plist @@ -277,6 +277,17 @@ <dict> <key>CFBundleTypeExtensions</key> <array> + <string>ex</string> + <string>exs</string> + </array> + <key>CFBundleTypeName</key> + <string>Elixir source</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> <string>erl</string> <string>hrl</string> </array> @@ -1033,6 +1044,16 @@ <dict> <key>CFBundleTypeExtensions</key> <array> + <string>wsf</string> + </array> + <key>CFBundleTypeName</key> + <string>WSF source</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> <string>dtd</string> <string>svg</string> <string>xml</string> @@ -1102,7 +1123,7 @@ <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>8.0</string> + <string>8.1</string> <key>NSHighResolutionCapable</key> <true/> </dict> diff --git a/src/Makefile b/src/Makefile index d9f1ed4b..2a1fcfb8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -139,6 +139,7 @@ cdk_objs = binding.o buttonbox.o cdk.o cdk_display.o cdk_objs.o cdkscreen.o \ scroll.o scroller.o select_file.o selection.o traverse.o version.o # Add debugging symbols and disable optimizations when DEBUG=1. +# Note: In order to profile with gprof (-pg), do not retain symbols in LDFLAGS. ifdef DEBUG CFLAGS += -g -O0 CXXFLAGS += -g -O0 diff --git a/src/textadept.rc b/src/textadept.rc index f2d0c8be..c744a6f1 100644 --- a/src/textadept.rc +++ b/src/textadept.rc @@ -3,8 +3,8 @@ textadept ICON "../core/images/textadept.ico\0"
VS_VERSION_INFO VERSIONINFO
-FILEVERSION 8, 0, 0, 0
-PRODUCTVERSION 8, 0, 0, 0
+FILEVERSION 8, 1, 0, 0
+PRODUCTVERSION 8, 1, 0, 0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
@@ -17,12 +17,12 @@ BEGIN BEGIN
VALUE "CompanyName", "Mitchell\0"
VALUE "FileDescription", "textadept\0"
- VALUE "FileVersion", "8.0\0"
+ VALUE "FileVersion", "8.1\0"
VALUE "InternalName", "textadept\0"
VALUE "LegalCopyright", "Copyright 2006-2015 by Mitchell\0"
VALUE "OriginalFilename", "textadept.exe\0"
VALUE "ProductName", "textadept\0"
- VALUE "ProductVersion", "8.0\0"
+ VALUE "ProductVersion", "8.1\0"
END
END
END
|