Skip to content

Commit

Permalink
v4.0.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
timhall committed Dec 9, 2014
1 parent 91b53ff commit 0a00535
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 16 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.3)](https://github.com/timhall/Excel-REST/releases)
- Download the [latest release (v4.0.0-beta.5)](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.
5 changes: 2 additions & 3 deletions build/dev.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Dim BlankWorkbookPath
Dim ExampleWorkbookPath
Dim SpecsWorkbookPath
Dim AsyncSpecsWorkbookPath
BlankWorkbookPath = "./VBA-WEb - Blank.xlsm"
BlankWorkbookPath = "./VBA-Web - Blank.xlsm"
ExampleWorkbookPath = "./examples/VBA-Web - Example.xlsm"
SpecsWorkbookPath = "./specs/VBA-Web - Specs.xlsm"
AsyncSpecsWorkbookPath = "./specs/VBA-Web - Specs - Async.xlsm"
Expand Down Expand Up @@ -91,7 +91,7 @@ Main
Sub Main()
On Error Resume Next

PrintLn "VBA-Web v4.0.0-beta.3 Development"
PrintLn "VBA-Web v4.0.0-beta.5 Development"

ExcelWasOpen = OpenExcel(Excel)

Expand Down Expand Up @@ -135,7 +135,6 @@ Sub Development
Execute "import", "specs", "specs"
Execute "import", "auth-specs", "specs"
Execute "import", "async", "async-specs"
Execute "import", "specs", "async-specs"
Execute "import", "async-specs", "async-specs"
ElseIf UBound(Parts) < 3 Or (UCase(Parts(0)) <> "IMPORT" And UCase(Parts(0)) <> "EXPORT") Then
PrintLn vbNewLine & "Error: Unrecognized action"
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.3
' Install v4.0.0-beta.5
' (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.3, let's get started!"
PrintLn "Welcome to Excel-REST v4.0.0-beta.5, 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.3" & vbNewLine
Message = Message & "- upgrade - Upgrade to Excel-REST v4.0.0-beta.5" & vbNewLine
Else
Message = Message & "- install - Install Excel-REST v4.0.0-beta.3" & vbNewLine
Message = Message & "- install - Install Excel-REST v4.0.0-beta.5" & 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.3? [yes/no] <")
"Would you like to upgrade to v4.0.0-beta.5? [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.3
' IWebAuthenticator v4.0.0-beta.5
' (c) Tim Hall - https://github.com/timhall/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.3
' WebAsyncWrapper v4.0.0-beta.5
' (c) Tim Hall - https://github.com/timhall/Excel-REST
'
' Wrapper WebClient and WebRequest that enables callback-style async requests
Expand Down
2 changes: 1 addition & 1 deletion src/WebClient.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
''
' WebClient v4.0.0-beta.3
' WebClient v4.0.0-beta.5
' (c) Tim Hall - https://github.com/timhall/VBA-Web
'
' Interact with REST web services from Excel
Expand Down
4 changes: 2 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.3
' WebHelpers v4.0.0-beta.5
' (c) Tim Hall - https://github.com/timhall/VBA-Web
'
' Common helpers VBA-Web
Expand Down Expand Up @@ -87,7 +87,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 = "Excel Client v4.0.0-beta.3 (https://github.com/timhall/VBA-Web)"
Public Const WebUserAgent As String = "Excel Client v4.0.0-beta.5 (https://github.com/timhall/VBA-Web)"

' @internal
Public Type web_ShellResult
Expand Down
2 changes: 1 addition & 1 deletion src/WebRequest.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
''
' WebRequest v4.0.0-beta.3
' WebRequest v4.0.0-beta.5
' (c) Tim Hall - https://github.com/timhall/VBA-Web
'
' Create a request for use with a rest client
Expand Down
2 changes: 1 addition & 1 deletion src/WebResponse.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
''
' WebResponse v4.0.0-beta.3
' WebResponse v4.0.0-beta.5
' (c) Tim Hall - https://github.com/timhall/VBA-Web
'
' Wrapper for http responses
Expand Down

0 comments on commit 0a00535

Please sign in to comment.