diff --git a/CHANGELOG.md b/CHANGELOG.md index 14645c5..aacd3ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/LICENSE.txt b/LICENSE.txt index f35ea56..83a8cff 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -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 diff --git a/README.md b/README.md index ecf012d..5a497ef 100644 --- a/README.md +++ b/README.md @@ -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.* diff --git a/src/Exporter.bas b/src/Exporter.bas index 308a4d8..d7bfbcc 100644 --- a/src/Exporter.bas +++ b/src/Exporter.bas @@ -7,7 +7,7 @@ Attribute VB_Name = "Exporter" ' # bskinn@alum.mit.edu ' # ' # 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 @@ -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 diff --git a/src/UFExporter.frm b/src/UFExporter.frm index abcc212..c4287b3 100644 --- a/src/UFExporter.frm +++ b/src/UFExporter.frm @@ -22,7 +22,7 @@ Attribute VB_Exposed = False ' # bskinn@alum.mit.edu ' # ' # 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 diff --git a/src/UFExporter.frx b/src/UFExporter.frx index adb39d3..211219d 100644 Binary files a/src/UFExporter.frx and b/src/UFExporter.frx differ