Skip to content

Commit

Permalink
Merge branch 'main' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
bskinn committed Jul 28, 2021
2 parents 6399427 + b790423 commit 703f676
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).


### [1.2.1] - 2021-07-28

#### Internal

- Renamed the `Sub` in `Exporter.bas` that launches the CSV Exporter
`UserForm` to the less-anonymous `showCSVExporterForm()`.


### [1.2.0] - 2020-05-29

#### Added
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2020 Brian Skinn
Copyright (c) 2016-2021 Brian Skinn

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ See the project [wiki](https://github.com/bskinn/excel-csvexporter/wiki) for doc

The binary `.xlam` file for each release can be found on the GitHub page for that release.

Copyright (c) Brian Skinn 2016-2020
Copyright (c) Brian Skinn 2016-2021

License: The MIT License
See [`LICENSE.txt`](https://github.com/bskinn/excel-csvexporter/blob/master/LICENSE.txt) for full license terms.
See [`LICENSE.txt`](https://github.com/bskinn/excel-csvexporter/blob/main/LICENSE.txt) for full license terms.

*CSV Exporter is third-party software, and is neither affiliated with, nor authorized,
sponsored, or approved by, Microsoft Corporation.*
8 changes: 4 additions & 4 deletions src/Exporter.bas
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Attribute VB_Name = "Exporter"
' # [email protected]
' #
' # Created: 24 Jan 2016
' # Copyright: (c) Brian Skinn 2016-2020
' # Copyright: (c) Brian Skinn 2016-2021
' # License: The MIT License; see "LICENSE.txt" for full license terms.
' #
' # http://www.github.com/bskinn/excel-csvexporter
Expand All @@ -16,9 +16,9 @@ Attribute VB_Name = "Exporter"

Option Explicit

Sub showForm()
Attribute showForm.VB_Description = "Load the CSVExporter application."
Attribute showForm.VB_ProcData.VB_Invoke_Func = "C\n14"
Sub showCSVExporterForm()
Attribute showCSVExporterForm.VB_Description = "Load the CSVExporter application."
Attribute showCSVExporterForm.VB_ProcData.VB_Invoke_Func = "C\n14"
UFExporter.Show
End Sub

2 changes: 1 addition & 1 deletion src/UFExporter.frm
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Attribute VB_Exposed = False
' # [email protected]
' #
' # Created: 24 Jan 2016
' # Copyright: (c) Brian Skinn 2016-2020
' # Copyright: (c) Brian Skinn 2016-2021
' # License: The MIT License; see "LICENSE.txt" for full license terms.
' #
' # http://www.github.com/bskinn/excel-csvexporter
Expand Down
Binary file modified src/UFExporter.frx
Binary file not shown.

0 comments on commit 703f676

Please sign in to comment.