diff options
-rw-r--r-- | core/init.lua | 2 | ||||
-rwxr-xr-x | scripts/gen_plist.lua | 2 | ||||
-rw-r--r-- | src/Info.plist | 12 | ||||
-rw-r--r-- | src/textadept.rc | 4 |
4 files changed, 15 insertions, 5 deletions
diff --git a/core/init.lua b/core/init.lua index 8ce4d16b..89897db2 100644 --- a/core/init.lua +++ b/core/init.lua @@ -1,6 +1,6 @@ -- Copyright 2007-2013 Mitchell mitchell.att.foicica.com. See LICENSE. -_RELEASE = "Textadept 7.0 alpha 2" +_RELEASE = "Textadept 7.0 beta" package.path = _HOME..'/core/?.lua;'..package.path diff --git a/scripts/gen_plist.lua b/scripts/gen_plist.lua index 54ae0d38..efa91d60 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.0 alpha 2</string> + <string>7.0 beta</string> <key>NSHighResolutionCapable</key> <true/> </dict> diff --git a/src/Info.plist b/src/Info.plist index 428e94df..9d3f1710 100644 --- a/src/Info.plist +++ b/src/Info.plist @@ -351,6 +351,16 @@ <dict> <key>CFBundleTypeExtensions</key> <array> + <string>go</string> + </array> + <key>CFBundleTypeName</key> + <string>Go source</string> + <key>CFBundleTypeRole</key> + <string>Editor</string> + </dict> + <dict> + <key>CFBundleTypeExtensions</key> + <array> <string>groovy</string> <string>gvy</string> </array> @@ -967,7 +977,7 @@ <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> - <string>7.0 alpha 2</string> + <string>7.0 beta</string> <key>NSHighResolutionCapable</key> <true/> </dict> diff --git a/src/textadept.rc b/src/textadept.rc index 10c5d901..4e4caf20 100644 --- a/src/textadept.rc +++ b/src/textadept.rc @@ -17,12 +17,12 @@ BEGIN BEGIN
VALUE "CompanyName", "Mitchell\0"
VALUE "FileDescription", "textadept\0"
- VALUE "FileVersion", "7.0 alpha 2\0"
+ VALUE "FileVersion", "7.0 beta\0"
VALUE "InternalName", "textadept\0"
VALUE "LegalCopyright", "Copyright 2006-2013 by Mitchell\0"
VALUE "OriginalFilename", "textadept.exe\0"
VALUE "ProductName", "textadept\0"
- VALUE "ProductVersion", "7.0 alpha 2\0"
+ VALUE "ProductVersion", "7.0 beta\0"
END
END
END
|