Skip to content

Commit

Permalink
v4.0.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Dec 17, 2014
1 parent 71eb949 commit 479d58a
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 22 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Excel-REST makes working with complex webservices and APIs easy with Excel. It i
Getting started
---------------

- Download the [latest release (v4.0.0-beta.5)](https://github.com/timhall/Excel-REST/releases)
- Download the [latest release (v4.0.0-rc.1)](https://github.com/timhall/Excel-REST/releases)
- To install/upgrade in an existing file, run `install.bat` to walk through installation.
- To start from scratch, `Excel-REST - Blank.xlsm` has everything setup and ready to go.

Expand Down
Binary file modified VBA-Web - Blank.xlsm
Binary file not shown.
2 changes: 1 addition & 1 deletion build/dev.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Main
Sub Main()
On Error Resume Next

PrintLn "VBA-Web v4.0.0-beta.5 Development"
PrintLn "VBA-Web v4.0.0-rc.1 Development"

ExcelWasOpen = OpenExcel(Excel)

Expand Down
10 changes: 5 additions & 5 deletions build/install.vbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
''
' Install v4.0.0-beta.5
' Install v4.0.0-rc.1
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Install Excel-REST and authenticators
Expand Down Expand Up @@ -54,7 +54,7 @@ Main
Sub Main()
On Error Resume Next

PrintLn "Welcome to Excel-REST v4.0.0-beta.5, let's get started!"
PrintLn "Welcome to Excel-REST v4.0.0-rc.1, let's get started!"

ExcelWasOpen = OpenExcel(Excel)

Expand Down Expand Up @@ -106,9 +106,9 @@ Sub Execute()
Dim InstallMessage
If AlreadyInstalled(Workbook) Then
Message = Message & "(It appears Excel-REST is already installed)" & vbNewLine
Message = Message & "- upgrade - Upgrade to Excel-REST v4.0.0-beta.5" & vbNewLine
Message = Message & "- upgrade - Upgrade to Excel-REST v4.0.0-rc.1" & vbNewLine
Else
Message = Message & "- install - Install Excel-REST v4.0.0-beta.5" & vbNewLine
Message = Message & "- install - Install Excel-REST v4.0.0-rc.1" & vbNewLine
End If

Message = Message & "- auth - Install authenticator"
Expand All @@ -130,7 +130,7 @@ Sub Execute()
ShouldUpgrade = Input(vbNewLine & _
"Warning: The currently installed Excel-REST files will be removed" & vbNewLine & _
"and any previously made changes to those files will be lost" & vbNewLine & vbNewLine & _
"Would you like to upgrade to v4.0.0-beta.5? [yes/no] <")
"Would you like to upgrade to v4.0.0-rc.1? [yes/no] <")

If Left(UCase(ShouldUpgrade), 1) = "Y" Then
InstallModules
Expand Down
Binary file modified examples/VBA-Web - Example.xlsm
Binary file not shown.
Binary file modified specs/VBA-Web - Specs - Async.xlsm
Binary file not shown.
Binary file modified specs/VBA-Web - Specs.xlsm
Binary file not shown.
2 changes: 1 addition & 1 deletion src/IWebAuthenticator.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' IWebAuthenticator v4.0.0-beta.5
' IWebAuthenticator v4.0.0-rc.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Interface for creating authenticators for rest client
Expand Down
2 changes: 1 addition & 1 deletion src/WebAsyncWrapper.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' WebAsyncWrapper v4.0.0-beta.5
' WebAsyncWrapper v4.0.0-rc.1
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Wrapper WebClient and WebRequest that enables callback-style async requests
Expand Down
10 changes: 5 additions & 5 deletions src/WebClient.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' WebClient v4.0.0-beta.5
' WebClient v4.0.0-rc.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Interact with REST web services from Excel
'
' Errors:
' 11010 / 80042b02 - cURL error in Execute
' 11011 / 80042b03 - Error in Execute
' 11012 / 80042b04 - Error preparing http request
' 11013 / 80042b05 - Error preparing cURL request
' 11010 / 80042b02 / -2147210494 - cURL error in Execute
' 11011 / 80042b03 / -2147210493 - Error in Execute
' 11012 / 80042b04 / -2147210492 - Error preparing http request
' 11013 / 80042b05 / -2147210491 - Error preparing cURL request
'
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
Expand Down
6 changes: 4 additions & 2 deletions src/WebHelpers.bas
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Attribute VB_Name = "WebHelpers"
''
' WebHelpers v4.0.0-beta.5
' WebHelpers v4.0.0-rc.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Common helpers VBA-Web
Expand Down Expand Up @@ -28,6 +28,8 @@ Attribute VB_Name = "WebHelpers"
' 7. Mac
' 8. Cryptography
' 9. Converters
' VBA-JSON
' VBA-UTC
' --------------------------------------------- '

' === VBA-UTC Headers
Expand Down Expand Up @@ -97,7 +99,7 @@ Private Declare Function web_fread Lib "libc.dylib" Alias "fread" (ByVal outStr
Private Declare Function web_feof Lib "libc.dylib" Alias "feof" (ByVal File As Long) As Long
#End If

Public Const WebUserAgent As String = "VBA-Web v4.0.0-beta.5 (https://github.com/VBA-tools/VBA-Web)"
Public Const WebUserAgent As String = "VBA-Web v4.0.0-rc.1 (https://github.com/VBA-tools/VBA-Web)"

' @internal
Public Type web_ShellResult
Expand Down
4 changes: 2 additions & 2 deletions src/WebRequest.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' WebRequest v4.0.0-beta.5
' WebRequest v4.0.0-rc.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Create a request for use with a WebClient
'
' Errors:
' 11020 / 80042b0c - Cannot add body parameter to non-Dictionary
' 11020 / 80042b0c / -2147210484 - Cannot add body parameter to non-Dictionary
'
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
Expand Down
8 changes: 4 additions & 4 deletions src/WebResponse.cls
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ Attribute VB_Creatable = False
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
''
' WebResponse v4.0.0-beta.5
' WebResponse v4.0.0-rc.1
' (c) Tim Hall - https://github.com/VBA-tools/VBA-Web
'
' Wrapper for http/cURL responses
'
' Errors:
' 11030 / 80042b16 - Error creating from http
' 11031 / 80042b17 - Error creating from cURL
' 11032 / 80042b18 - Error extracting headers
' 11030 / 80042b16 / -2147210474 - Error creating from http
' 11031 / 80042b17 / -2147210473 - Error creating from cURL
' 11032 / 80042b18 / -2147210472 - Error extracting headers
'
' @author: [email protected]
' @license: MIT (http://www.opensource.org/licenses/mit-license.php)
Expand Down

0 comments on commit 479d58a

Please sign in to comment.