Skip to content

Commit

Permalink
Relicensed under ALv2
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfatin committed Sep 22, 2017
1 parent 99b3ce7 commit 2084acf
Show file tree
Hide file tree
Showing 59 changed files with 754 additions and 1,745 deletions.
1,338 changes: 201 additions & 1,137 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Editor latency is delay between an input event and a corresponding screen update

Check my article [Typing with pleasure](https://pavelfatin.com/typing-with-pleasure) to learn more about editor latency and its effects on typing performance.

Download: [typometer-1.0-bin.zip](https://github.com/pavelfatin/typometer/releases/download/v1.0.0/typometer-1.0-bin.zip) (0.5 MB)
Download: [typometer-1.0.1-bin.zip](https://github.com/pavelfatin/typometer/releases/download/v1.0.1/typometer-1.0.1-bin.zip) (0.5 MB)

Java 8 or latter is required to run the program. You can [download Java](https://java.com/download) from the official site.

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.pavelfatin</groupId>
<artifactId>typometer</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
<version>1.0.1</version>
<name>Typometer</name>
<url>https://pavelfatin.com/</url>

Expand Down
2 changes: 1 addition & 1 deletion src/doc/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ <h1 id="typometer-readme">Typometer README</h1>
<p>Typometer is a tool to measure and analyze visual latency of text / code editors.</p>
<p>Editor latency is delay between an input event and a corresponding screen update, in particular case – delay between keystroke and character appearance. While there are many kinds of delays (caret movement, line editing, etc.), typing latency is a major predictor of editor usability.</p>
<p>Check my article <a href="https://pavelfatin.com/typing-with-pleasure">Typing with pleasure</a> to learn more about editor latency and its effects on typing performance.</p>
<p>Download: <a href="https://github.com/pavelfatin/typometer/releases/download/v1.0.0/typometer-1.0-bin.zip">typometer-1.0-bin.zip</a> (0.5 MB)</p>
<p>Download: <a href="https://github.com/pavelfatin/typometer/releases/download/v1.0.1/typometer-1.0.1-bin.zip">typometer-1.0.1-bin.zip</a> (0.5 MB)</p>
<p>Java 8 or latter is required to run the program. You can <a href="https://java.com/download">download Java</a> from the official site.</p>
<h2 id="features">Features</h2>
<ul>
Expand Down
21 changes: 10 additions & 11 deletions src/main/java/com/pavelfatin/typometer/Application.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer;
Expand Down
21 changes: 10 additions & 11 deletions src/main/java/com/pavelfatin/typometer/ExceptionHandler.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer;
Expand Down
21 changes: 10 additions & 11 deletions src/main/java/com/pavelfatin/typometer/benchmark/Benchmark.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.benchmark;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.benchmark;
Expand Down
21 changes: 10 additions & 11 deletions src/main/java/com/pavelfatin/typometer/benchmark/BenchmarkImpl.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.benchmark;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.benchmark;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.benchmark;
Expand Down
21 changes: 10 additions & 11 deletions src/main/java/com/pavelfatin/typometer/benchmark/CharEvent.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.benchmark;
Expand Down
21 changes: 10 additions & 11 deletions src/main/java/com/pavelfatin/typometer/benchmark/CharReader.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.benchmark;
Expand Down
21 changes: 10 additions & 11 deletions src/main/java/com/pavelfatin/typometer/benchmark/CharWriter.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.benchmark;
Expand Down
21 changes: 10 additions & 11 deletions src/main/java/com/pavelfatin/typometer/benchmark/Parameters.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.benchmark;
Expand Down
21 changes: 10 additions & 11 deletions src/main/java/com/pavelfatin/typometer/chart/ChartData.java
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
/*
* Copyright (C) 2015 Pavel Fatin <https://pavelfatin.com>
* Copyright 2017 Pavel Fatin, https://pavelfatin.com
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* http://www.apache.org/licenses/LICENSE-2.0
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.pavelfatin.typometer.chart;
Expand Down
Loading

0 comments on commit 2084acf

Please sign in to comment.