Skip to content

Commit 36f2646

Browse files
committed
Update README file for version 2.2
1 parent 1688e99 commit 36f2646

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# SubnetCalc
22
Subnet Calculator for MacOS
33

4-
What's New in version 2.1:
5-
- FLSM (Fixed Length Subnet Mask) support
6-
- VLSM (Variable Length Subnet Mask) support
7-
- Export FSLM result in a CSV file
8-
- Export VSLM result in a CSV file
4+
What's New in version 2.2:
5+
- Can change the VLSM Subnet Name by editing the corresponding column
6+
- Add Hosts Range and Broadcast columns to the VLSM view
7+
- Add Hosts Range and Broadcast VLSM infos to the exported CSV file
8+
99

1010

1111
For more information: http://subnetcalc.mulot.org

SubnetCalcAppDelegate.swift

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -776,14 +776,13 @@ class SubnetCalcAppDelegate: NSObject, NSApplicationDelegate, NSWindowDelegate,
776776
return 0
777777
}
778778

779-
//edit a value from a TabView - only for VLSM Subnet Name
779+
//Invoked when editing a value from a TabView
780+
//Used only for VLSM Subnet Name
780781
func tableView(_ tableView: NSTableView, setObjectValue object: Any?, for tableColumn: NSTableColumn?, row: Int)
781782
{
782-
print("edit table View")
783783
if (tableView == viewVLSM) {
784-
print("edit table View VLSM")
785784
if (tableColumn!.identifier.rawValue == "nameVLSMCol") {
786-
print("edit tableView Name VLSM: \(row) \(object as! String)")
785+
//print("edit tableView Name VLSM: \(row) \(object as! String)")
787786
subnetsVLSM[row].1 = object as! String
788787
}
789788
}

0 commit comments

Comments
 (0)