Skip to content

Commit

Permalink
v1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Dotnaught committed Nov 23, 2023
1 parent 6939456 commit 81b13b8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
4 changes: 1 addition & 3 deletions html/mainWindow.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@
<span>
<h1 id="titleText"
class="w-full flex-none text-4xl font-bold text-blue-800 mb-1.5 text-center justify-center"
>
RSSputin
</h1>
>RSSputin</h1>
<h2
id="subhead"
class="w-full flex-none text-2xl text-pink-500 mb-1.5 text-center justify-center"
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ log.debug("A debug error");
log.error("An error");
*/

log.catchErrors({
log.errorHandler.startCatching({
showDialog: true,
onError(error, versions, submitIssue) {
dialog
Expand Down
2 changes: 1 addition & 1 deletion js/mainWindow.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ window.api.receive('updateBar', (args) => {
let titleText = document.getElementById('titleText');
titleText.textContent = args[0] + '/' + args[1];
if (progress === 100) {
titleText.textContent = 'RSSPutin';
titleText.textContent = 'RSSputin';
}
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rssputin",
"productName": "rssputin",
"version": "1.0.11",
"version": "1.0.12",
"description": "An RSS headline aggregator",
"license": "MIT",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Version 1.0.7 includes various changes. There's now a dropdown menu for choosing

### Prerequisites

To build RSSputin, Node.js is required. It's been tested with v16.17.1.
To build RSSputin, Node.js is required.

```
Node.js
Expand Down Expand Up @@ -52,7 +52,7 @@ To build RSSputin as a desktop app, run the script for the appropriate platform

## Authors

* **Thomas Claburn** - *Version 1.0.9* - [Dotnaught](https://github.com/Dotnaught)
* **Thomas Claburn** - *Version 1.0.12* - [Dotnaught](https://github.com/Dotnaught)

## License

Expand Down

0 comments on commit 81b13b8

Please sign in to comment.