Skip to content

Commit

Permalink
changelog; readme
Browse files Browse the repository at this point in the history
  • Loading branch information
geovens committed Oct 9, 2019
1 parent ca75456 commit d97da54
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 66 deletions.
Binary file modified bin/gInk.exe
Binary file not shown.
55 changes: 0 additions & 55 deletions bin/lang/test.txt

This file was deleted.

4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

v1.0.0 (Oct. 9, 2019)
=================
- Support localization.

v0.6.0 (Jun. 30, 2019)
=================
- Add hotkey options for pens and tools.
Expand Down
10 changes: 7 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,24 @@ gInk is an on-screen annotation software under Windows, used to help improving m
![screenshot](https://raw.githubusercontent.com/geovens/gInk/master/screenshot1.jpg)
![screenshot](https://raw.githubusercontent.com/geovens/gInk/master/screenshot2.jpg)

#### Download

https://github.com/geovens/gInk/releases/

#### How to use

Start gInk and an icon will appear in the system tray. Click the icon (or use a hotkey) to start drawing on screen.
Click the exit button or press ESC to exit drawing.

#### Download
#### How to contribute translation

https://github.com/geovens/gInk/releases/
gInk supports multiple languages now. Here is how you can contribute translation. Simply create a duplication of the file "en-us.txt" in "lang" folder, rename it and then translate the strings in the file. Check in gInk to make sure your translation shows correctly, and then you can make a pull request to merge your translation to the next version of release for others to use.

#### Features

Compact and intuitive interface.
Inks rendered on dynamic desktops.
Stylus w/ eraser, touch screen and mouse compatable.
Stylus w/ eraser, touch screen and mouse compatible.
Click-through mode.
Multiple displays support.
Pen pressure support.
Expand Down
10 changes: 5 additions & 5 deletions src/FormOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ private void FormOptions_Load(object sender, EventArgs e)
lbNote.ForeColor = Color.Black;

lbcbPens = new Label();
lbcbPens.Left = 105;
lbcbPens.Left = 95;
lbcbPens.Width = 35;
lbcbPens.Top = 15;

tabPage2.Controls.Add(lbcbPens);
lbpboxPens = new Label();
lbpboxPens.Left = 145;
lbpboxPens.Left = 140;
lbpboxPens.Width = 35;
lbpboxPens.Top = 15;

Expand All @@ -93,19 +93,19 @@ private void FormOptions_Load(object sender, EventArgs e)
int top = p * 30 + 40;
lbPens[p] = new Label();
lbPens[p].Left = 20;
lbPens[p].Width = 90;
lbPens[p].Width = 80;
lbPens[p].Top = top;

cbPens[p] = new CheckBox();
cbPens[p].Left = 110;
cbPens[p].Left = 100;
cbPens[p].Width = 15;
cbPens[p].Top = top - 5;
cbPens[p].Text = "";
cbPens[p].Checked = Root.PenEnabled[p];
cbPens[p].CheckedChanged += cbPens_CheckedChanged;

pboxPens[p] = new PictureBox();
pboxPens[p].Left = 150;
pboxPens[p].Left = 145;
pboxPens[p].Top = top;
pboxPens[p].Width = 15;
pboxPens[p].Height = 15;
Expand Down
6 changes: 3 additions & 3 deletions src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("gInk")]
[assembly: AssemblyCopyright("Copyright © 2018 Weizhi Nai")]
[assembly: AssemblyCopyright("Copyright © 2019 Weizhi Nai")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.6.0.0")]
[assembly: AssemblyFileVersion("0.6.0.0")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

0 comments on commit d97da54

Please sign in to comment.