From 8fdb4c8eb699072ec5340b421df8b5748d1cdcdd Mon Sep 17 00:00:00 2001 From: Brian Skinn Date: Wed, 28 Jul 2021 11:01:31 -0400 Subject: [PATCH 1/3] Increase specificity of launch Sub name --- src/Exporter.bas | 8 ++++---- src/UFExporter.frm | 2 +- src/UFExporter.frx | Bin 5144 -> 5144 bytes 3 files changed, 5 insertions(+), 5 deletions(-) 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 adb39d3747152ea2e2907aefbc8652659b01cb66..211219dedb3b1bd9311dfce354e7f9a195164607 100644 GIT binary patch delta 405 zcmXAkPbdUo7{=e3@n>fCo1NM5pRg@zZOn=TM!ArjHtk6{t=&0neLJI-8>I-PY&^)F za-`hFNp6Z#oTQu-IXPLMb$WX0_q_eyqxez$e7&mn>SlB7dhPLIyXsYuECgzgOgS8? zBlSciH&a|hHPPw>4;H;L+)y04#?fKaVAf#R(qh=r^#)BKQ+e+BnS$q1K(}Hu3d!iI zP~Y0Po}o#V=u{%Y9qR+vW0H%K-lYD+rxJd&CO9dYh)-FgL`|PXQ74`!tu@;;djj+Q}JQ>4^m|%f* zVB*6I#^ E0k2PR9{>OV delta 414 zcmYL@KS%;$7{fb%i^}ENeH Date: Wed, 28 Jul 2021 11:32:30 -0400 Subject: [PATCH 2/3] Update copyright years and 'main' branch ref --- LICENSE.txt | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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.* From b790423e6e712f001a3a5263d7e2eff0d781e1f2 Mon Sep 17 00:00:00 2001 From: Brian Skinn Date: Wed, 28 Jul 2021 11:32:51 -0400 Subject: [PATCH 3/3] Update CHANGELOG.md Noting the rename of the Sub for launching the UserForm --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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