Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Jigsy1 committed Jan 17, 2023
1 parent 418fb9f commit 2b406d4
Show file tree
Hide file tree
Showing 7 changed files with 325 additions and 39 deletions.
Binary file modified VB6/UUID2.exe
Binary file not shown.
5 changes: 3 additions & 2 deletions VB6/UUID2.vbp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Type=Exe
Form=frmUUID2.frm
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\WINXP\system32\stdole2.tlb#OLE Automation
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#..\..\..\..\..\WINXP\system32\stdole2.tlb#OLE Automation
Form=frmAbout.frm
IconForm="frmUUID2"
Startup="frmUUID2"
HelpFile=""
Expand All @@ -12,7 +13,7 @@ HelpContextID="0"
CompatibleMode="0"
MajorVer=1
MinorVer=0
RevisionVer=4
RevisionVer=5
AutoIncrementVer=0
ServerSupportFiles=0
VersionCompanyName="Jigsy"
Expand Down
3 changes: 2 additions & 1 deletion VB6/UUID2.vbw
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
36 changes: 36 additions & 0 deletions VB6/changelog.txt
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.
79 changes: 79 additions & 0 deletions VB6/frmAbout.frm
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
24 changes: 24 additions & 0 deletions VB6/frmAbout.frx
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>
Loading

0 comments on commit 2b406d4

Please sign in to comment.