Skip to content

Commit

Permalink
Happy new year
Browse files Browse the repository at this point in the history
  • Loading branch information
sagamusix committed Jan 1, 2020
1 parent 3edcdb7 commit 84a72b5
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 9 deletions.
28 changes: 22 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,28 @@ So I decided to fork a program a friend of mine wrote - [traktouch](https://gith
as it solves a very similar problem. I could have written it from scratch, but
this way I didn't have to write most of the boilerplate code.

Installation
------------

1. Download the [latest TBTray release](https://github.com/sagamusix/TBTray/releases).
2. Extract the archive anywhere you want, `%localappdata%\TBTray` would be a
good place for instance.
I would not recommend to put it in the same folder as Thunderbird, although
it should be possible in theory.
3. Figure out whether you run a 32-bit or 64-bit version of Thunderbird.
If you are not sure, check whether Thunderbird is installed in
`Program Files` (64-bit on a 64-bit system, 32-bit on a 32-bit system) or
`Program Files (x86)` (32-bit on a 64-bit system).
4. Launch the TBTray executable in the folder that **matches your Thunderbird
bitness**, i.e. if you run a 32-bit Thunderbird, then run `TBTray.exe` in the
32-bit folder of TBTray.
5. To automatically start TBTray on Windows startup, run `register.cmd` in the
folder that **matches your Thunderbird bitness**, i.e. if you run a 32-bit
Thunderbird, then run `register.cmd` in the 32-bit folder of TBTray.
If you ever decide to move the executable to a different location, you will
need to run `register.cmd` again.
6. To completely uninstall, run `unregister.cmd` and delete the extracted files.

How does it work?
-----------------

Expand Down Expand Up @@ -46,9 +68,3 @@ Is there any sort of configuration?
This program does not come with any options, because it is just supposed to fix
exactly the problem I had. Please fork the repository if you want the program to
behave differently.

Autostart
---------

To automatically start TBTray on Windows startup, run `register.cmd`.
To uninstall, run `unregister.cmd`.
2 changes: 1 addition & 1 deletion dll/dll.rc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ BEGIN
VALUE "FileDescription", "Thunderbird Tray companion DLL"
VALUE "FileVersion", PRODUCTVERSTR
VALUE "InternalName", "TBTray.dll"
VALUE "LegalCopyright", "Copyright (C) 2019 Johannes Schultz"
VALUE "LegalCopyright", "Copyright (C) 2020 Johannes Schultz"
VALUE "OriginalFilename", "TBTray.dll"
VALUE "ProductName", "TBTray"
VALUE "ProductVersion", PRODUCTVERSTR
Expand Down
2 changes: 1 addition & 1 deletion loader/loader.rc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ BEGIN
VALUE "FileDescription", "Thunderbird Tray Loader"
VALUE "FileVersion", PRODUCTVERSTR
VALUE "InternalName", "TBTray.exe"
VALUE "LegalCopyright", "Copyright (C) 2019 Johannes Schultz"
VALUE "LegalCopyright", "Copyright (C) 2020 Johannes Schultz"
VALUE "OriginalFilename", "TBTray.exe"
VALUE "ProductName", "TBTray"
VALUE "ProductVersion", PRODUCTVERSTR
Expand Down
2 changes: 1 addition & 1 deletion version.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once
#define MAJORVER 0
#define MINORVER 10
#define FIXVER 2
#define FIXVER 3

#define PRODUCTVER MAJORVER,MINORVER,FIXVER,0
#define _STR(x) #x
Expand Down

0 comments on commit 84a72b5

Please sign in to comment.