Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Macuyiko/palettestealer-suspender
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: ZOOM-Platform/palettestealer-suspender
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Apr 6, 2020

  1. initial commit of ZOOM fork. Invertered gui logic (console mode by de…

    …fault, use switch for GUI).
    
    Added ZOOM edition, credit to original author and link to github.
    BadAd84 committed Apr 6, 2020
    Copy the full SHA
    1746b67 View commit details
Showing with 7 additions and 4 deletions.
  1. +4 −1 MainConsole.vb
  2. +3 −3 Startup.vb
5 changes: 4 additions & 1 deletion MainConsole.vb
Original file line number Diff line number Diff line change
@@ -19,7 +19,10 @@ Module MainConsole
Public Sub Main()
AttachConsole(CType(-1, IntPtr))

Console.WriteLine(vbCrLf & vbCrLf & " ---- PaletteStealerSuspender (Console Mode) ---- ")
Console.WriteLine(vbCrLf & vbCrLf & " ---- Palette Stealer Suspender (ZOOM Edition) ---- ")
Console.WriteLine(vbCrLf & " ---- Based on PaletteStealerSuspender by Macuyiko ---- ")
Console.WriteLine(vbCrLf & " ---- See ZOOM Github for source - https://git.io/JvALQ ---- ")
Console.WriteLine(vbCrLf)

Dim strStartupArguments() As String
Dim intCount As Integer
6 changes: 3 additions & 3 deletions Startup.vb
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
' Main display form
Private myStartupForm As MainForm
Private myStartupConsole As MainConsole.MainConsole
Private consoleMode As Boolean = False
Private consoleMode As Boolean = True
Public debuglog As String = ""
Private oWrite As System.IO.StreamWriter
' Delegate used to marshal back to the main UI thread
@@ -15,8 +15,8 @@
strStartupArguments = System.Environment.GetCommandLineArgs
For intCount = 0 To UBound(strStartupArguments)
Select Case strStartupArguments(intCount).ToLower
Case "/nogui"
consoleMode = True
Case "/gui"
consoleMode = False
End Select
Next intCount
Catch ex As Exception