-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
325 additions
and
39 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
frmUUID2 = 66, 66, 967, 458, C, 22, 22, 923, 414, C | ||
frmUUID2 = 139, 157, 1040, 549, C, 22, 22, 923, 414, C | ||
frmAbout = 44, 44, 963, 436, C, 22, 22, 941, 414, C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
v1.0.0.5: | ||
---------- | ||
1. Updated the labels to slightly match PassGen. | ||
2. Added an option to include hyphens (-'s). | ||
3. Increased the timer to 30s because I felt 10s was too short. | ||
4. Added menu items (Exit, Website, etc.) and a pointless "About" form which just includes a copy of The Unlicense text. | ||
5. You can now save your settings to the registry upon exit, these will be saved under: HKCU\Software\Github\Jigsy1\UUID2\ | ||
The existence(?) of the registry entry will always be viewed as "Save Settings to Registry on Exit." | ||
This can be stopped either by unchecking this option in the menubar (which deletes the key), or simply by deleting the key from the registry itself. | ||
6. Pressing F5 or the Generate button now resets the timer if it is enabled. | ||
|
||
v1.0.0.4: | ||
---------- | ||
1. App version now appears in the titlebar. | ||
2. Added error checking to the copy button to prevent it from crashing if it fails to copy to clipboard. | ||
3. You can now end the program by pressing Escape (Esc). | ||
4. You can now generate a new "UUID2" by pressing F5 (Refresh). | ||
5. Other minor changes. (Tidied up the code, uniform button width, wording changes, etc.) | ||
|
||
v1.0.0.3: | ||
---------- | ||
1. Increased randomness parameters. | ||
|
||
v1.0.0.2: | ||
---------- | ||
1. Like my password generator, added an option for "increased randomness." (Not set as default.) | ||
2. Minor tidying up of the alignment and things of that nature. | ||
|
||
v1.0.0.1: | ||
---------- | ||
1. Rephrased settings. (Now using the correct term, {Braces}!) | ||
2. Corrected the tab ordering. | ||
|
||
v1.0.0: | ||
---------- | ||
1. Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
VERSION 5.00 | ||
Begin VB.Form frmAbout | ||
BorderStyle = 1 'Fixed Single | ||
Caption = "About" | ||
ClientHeight = 4245 | ||
ClientLeft = 45 | ||
ClientTop = 330 | ||
ClientWidth = 7680 | ||
KeyPreview = -1 'True | ||
LinkTopic = "Form1" | ||
MaxButton = 0 'False | ||
ScaleHeight = 4245 | ||
ScaleWidth = 7680 | ||
StartUpPosition = 2 'CenterScreen | ||
Begin VB.CommandButton cmdOkay | ||
Caption = "&OK" | ||
Height = 375 | ||
Left = 6240 | ||
TabIndex = 2 | ||
Top = 3760 | ||
Width = 1335 | ||
End | ||
Begin VB.Frame fmeLicense | ||
Height = 3615 | ||
Left = 120 | ||
TabIndex = 3 | ||
Top = 0 | ||
Width = 7455 | ||
Begin VB.TextBox txtLicense | ||
Height = 3255 | ||
Left = 120 | ||
Locked = -1 'True | ||
MultiLine = -1 'True | ||
ScrollBars = 3 'Both | ||
TabIndex = 0 | ||
Text = "frmAbout.frx":0000 | ||
Top = 240 | ||
Width = 7215 | ||
End | ||
End | ||
Begin VB.Label lblLink | ||
Caption = "https://github.com/Jigsy1/UUID2/" | ||
ForeColor = &H00FF0000& | ||
Height = 255 | ||
Left = 120 | ||
MousePointer = 14 'Arrow and Question | ||
TabIndex = 1 | ||
ToolTipText = "Opens in your browser" | ||
Top = 3840 | ||
Width = 2775 | ||
End | ||
End | ||
Attribute VB_Name = "frmAbout" | ||
Attribute VB_GlobalNameSpace = False | ||
Attribute VB_Creatable = False | ||
Attribute VB_PredeclaredId = True | ||
Attribute VB_Exposed = False | ||
Private Sub cmdOkay_Click() | ||
Unload Me | ||
End Sub | ||
|
||
Private Sub Form_KeyPress(KeyAscii As Integer) | ||
If KeyAscii = vbKeyEscape Then Unload Me | ||
End Sub | ||
|
||
Private Sub Form_Load() | ||
Me.Caption = Me.Caption & " " & frmUUID2.Tag | ||
End Sub | ||
|
||
Private Sub Form_Terminate() | ||
End | ||
' `-> I doubt this has any use; but just incase... | ||
End Sub | ||
|
||
Private Sub lblLink_Click() | ||
CreateObject("WScript.Shell").Run lblLink.Caption | ||
End Sub | ||
|
||
' EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
��This is free and unencumbered software released into the public domain. | ||
|
||
Anyone is free to copy, modify, publish, use, compile, sell, or | ||
distribute this software, either in source code form or as a compiled | ||
binary, for any purpose, commercial or non-commercial, and by any | ||
means. | ||
|
||
In jurisdictions that recognize copyright laws, the author or authors | ||
of this software dedicate any and all copyright interest in the | ||
software to the public domain. We make this dedication for the benefit | ||
of the public at large and to the detriment of our heirs and | ||
successors. We intend this dedication to be an overt act of | ||
relinquishment in perpetuity of all present and future rights to this | ||
software under copyright law. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | ||
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
For more information, please refer to <https://unlicense.org> |
Oops, something went wrong.