Skip to content

Commit e2f7539

Browse files
committed
Updated REAME and CHANGES
1 parent 8583fed commit e2f7539

File tree

5 files changed

+20
-65
lines changed

5 files changed

+20
-65
lines changed

CHANGES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Notes, Update Notes, and Coding Style
1919
### Tests
2020
- Fixed tests in test-util-objs
2121
- Added failure tests to test-util-objs for WalkFolderFiles
22-
- In test-utils-objs, fixed the top names of the expected test foldeers.
22+
- In test-utils-objs, fixed the top names of the expected test folders.
2323

2424
---
2525

@@ -32,7 +32,7 @@ Changes in gdrive-rename-files-v-1.31
3232
### Internal Changes
3333
- Added fHyper2Title to util-objs
3434
- Added "recreate" param to CreateFolderFiles class. This can speed up
35-
testing. Only set recreate to true if the strucure was changed by a
35+
testing. Only set recreate to true if the structure was changed by a
3636
test.
3737

3838
### Tests
@@ -52,7 +52,7 @@ Changes in gdrive-rename-files-v-1.30
5252
- Factored out more general functions and classes. Put them in util-objs.
5353
- Refactored rename-files to use the functions and classes in util-objs
5454
- Generalized the "walk file folders" code to a class, with callbacks
55-
to handle filders or files.
55+
to handle folders or files.
5656
- Cleaned up handling of default params
5757
- Removed debugMsg() method. Replaced with more direct if stmts.
5858
- Added getter/setter methods for properties that are "shared" with

README.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# gdrive-rename-files
22

3+
$Date$ UTC
4+
35
This Google Apps Script application will list and rename folders and
46
files in your Google Drive.
57

@@ -19,23 +21,27 @@ options. The files are listed in another sheet-tab.
1921

2022
For more details see the
2123
[User Guide](https://docs.google.com/document/d/e/2PACX-1vRQ8aH-xnfdVKmRKU7wLl2wmV87fvQSy_o1907iPiTUN56cKKcQrfjxAakGhLyYcHqCQ04dIhodkt6B/pub).
24+
(This link is also in the Spreadsheet. And the source doc is versioned in:
25+
Rename_Files_User_Guide.docx)
2226

2327
## Quick Start
2428

25-
You can get the latest stable version of the SpreadSheet, with the
26-
scripts attached, in my Google Drive at: [Released -> Software]
27-
(https://drive.google.com/drive/u/0/folders/1fvYI6-K9wnxigz4XJovfEhzoY0m1_liI)
29+
You can get the latest stable version of the Spreadsheet, with the
30+
scripts attached, in my Google Drive at:
31+
[Released -> Software](https://drive.google.com/drive/u/0/folders/1fvYI6-K9wnxigz4XJovfEhzoY0m1_liI)
2832

2933
Copy the spreadsheet to your Google Drive.
3034

35+
(gdrive-util-scripts.xlsx is the base spreadsheet file, with no scripts.)
36+
3137
## Implementation Notes
3238

3339
This is my first "complete" Google Apps Script application. I used a
34-
Test Driven Development process for creating this app. See my blog
35-
[Clean Code]
36-
(https://slowengineering.wordpress.com/2021/02/25/clean-code/) for why
37-
I used TDD. I stated with another person's GSUnit test library, but it
38-
disappeared, so I created my own test library and test driver. See
40+
Test Driven Development process for creating this app. See my
41+
[Clean Code](https://slowengineering.wordpress.com/2021/02/25/clean-code/)
42+
blog post for why I used TDD. I started with another person's GSUnit
43+
test library, but it disappeared (and the source code repo was not
44+
complete), so I created my own test library and test driver. See
3945
repository [gsunit-test](https://github.com/TurtleEngr/gsunit-test).
4046

4147
## Update Notes
@@ -50,7 +56,7 @@ files: gsunit-test.gs, test-util-objs.gs, and
5056
test-rename-files.gs. Put them in that order after the rename-file.gs
5157
script.
5258

53-
The Rename-Files menus will automattically updated when you reload the
59+
The Rename-Files menus will automatically updated when you reload the
5460
spreadsheet.
5561

5662
If didn't start with the Quick Start Google Sheet, you can upload the
@@ -59,7 +65,7 @@ gdrive-util-scripts.xlsx to your Google Drive. Then attach the scripts.
5965
## Coding Style
6066

6167
Experienced JavaScript programmers will probably not like my style.
62-
JavaScipt is a new language for me. I've been a software engineer for
68+
JavaScript is a new language for me. I've been a software engineer for
6369
40 years. I know more than 10 computer languages, and I'm am
6470
proficient in 5. So I have developed my own way of using a subset
6571
of languages. I.e. I do not used ALL of the quirky features that are
@@ -93,7 +99,7 @@ the scope will be unknown unless you go looking.
9399
the "throws" in low level functions, so that the upper level functions
94100
are not cluttered with error handling.
95101

96-
- I try to refactor 'if' statemts to exit early, to that will reduce
102+
- I try to refactor 'if' statements to exit early, to that will reduce
97103
the need for 'else' statements.
98104

99105
- I try to put the bulk of the application in class objects. Yes, I

Rename_Files_User_Guide.docx

87.6 KB
Binary file not shown.

gdrive-util-scripts.xlsx

14.8 KB
Binary file not shown.

t.html

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)