Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit ab0aff6

Browse files
authored
Merge pull request #54 from Thavarshan/main
Attempt fix for issue #44
2 parents 607f7e8 + 2855992 commit ab0aff6

24 files changed

+4195
-1932
lines changed

.github/CONTRIBUTING.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ First off, thank you for considering contributing to Comet! It’s people like y
88

99
If you encounter any bugs or issues while using Comet, please report them. This helps us to maintain the quality of the project and ensures that other users have a better experience.
1010

11-
1. **Search for existing issues**: Before reporting a new issue, check if someone else has already reported it. You can search [here](https://github.com/Thavarshan/comet/issues).
12-
2. **Create a new issue**: If you don’t find a similar issue, create a new one [here](https://github.com/Thavarshan/comet/issues/new).
11+
1. **Search for existing issues**: Before reporting a new issue, check if someone else has already reported it. You can search [here](https://github.com/stellar-comet/comet/issues).
12+
2. **Create a new issue**: If you don’t find a similar issue, create a new one [here](https://github.com/stellar-comet/comet/issues/new).
1313
3. **Provide details**: Please include as much information as possible. Include the steps to reproduce the issue, the expected outcome, and the actual outcome. Providing screenshots, error messages, and relevant log files can help us resolve the issue faster.
1414

1515
### Suggesting Features
1616

1717
We welcome suggestions for new features that could enhance Comet.
1818

19-
1. **Search for existing suggestions**: Before suggesting a new feature, check if someone else has already suggested it [here](https://github.com/Thavarshan/comet/issues).
20-
2. **Create a new feature request**: If your feature is unique, create a new feature request [here](https://github.com/Thavarshan/comet/issues/new?template=feature_request.md).
19+
1. **Search for existing suggestions**: Before suggesting a new feature, check if someone else has already suggested it [here](https://github.com/stellar-comet/comet/issues).
20+
2. **Create a new feature request**: If your feature is unique, create a new feature request [here](https://github.com/stellar-comet/comet/issues/new?template=feature_request.md).
2121
3. **Describe the feature**: Provide a detailed description of the feature, why you think it’s important, and how it could benefit users. If possible, suggest how it could be implemented.
2222

2323
### Contributing Code
@@ -30,7 +30,7 @@ We love contributions, whether they’re bug fixes, new features, or improving d
3030
2. **Clone**: Clone the forked repository to your local machine.
3131

3232
```bash
33-
git clone https://github.com/Thavarshan/comet.git
33+
git clone https://github.com/stellar-comet/comet.git
3434
cd comet
3535
```
3636

@@ -102,4 +102,4 @@ We appreciate contributions to our documentation. If you’ve added a new featur
102102

103103
Your contributions make Comet better for everyone. Thank you for taking the time to improve the project. We’re thrilled to have you as part of our community, and we’re excited to see what you’ll contribute.
104104

105-
If you have any questions, feel free to [open an issue](https://github.com/Thavarshan/comet/issues/new) or reach out to us. Happy coding!
105+
If you have any questions, feel free to [open an issue](https://github.com/stellar-comet/comet/issues/new) or reach out to us. Happy coding!

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Help & Support
4-
url: https://github.com/Thavarshan/comet/discussions
4+
url: https://github.com/stellar-comet/comet/discussions
55
about: 'This repository is only for reporting bugs. If you have a question or need help using the library, click:'

.github/SUPPORT.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
GitHub issue trackers are not intended to provide Sentinel help or support. Instead, use one of the following channels:
44

5-
- [Github discussions](https://github.com/Thavarshan/comet/discussions)
5+
- [Github discussions](https://github.com/stellar-comet/comet/discussions)

.prettierrc.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ module.exports = {
66
tabWidth: 2,
77
useTabs: false,
88
endOfLine: 'auto',
9-
};
9+
spaceBeforeFunctionParen: false
10+
}

CHANGELOG.md

+22-6
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,35 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/Thavarshan/comet/compare/v2.2.2...HEAD)
3+
## [Unreleased](https://github.com/Thavarshan/comet/compare/v2.2.3...HEAD)
4+
5+
## [v2.2.3](https://github.com/Thavarshan/comet/compare/v2.2.2...v2.2.3) - 2024-11-04
6+
7+
### Changed
8+
9+
* Revert to previous electron-forge version
10+
* Revert to previous eslint versions
11+
* Reset eslint configurations
12+
13+
14+
---
15+
16+
* Release v2.2.1 by @Thavarshan in https://github.com/Thavarshan/comet/pull/41
17+
* Release v2.2.2 by @Thavarshan in https://github.com/Thavarshan/comet/pull/42
18+
19+
**Full Changelog**: https://github.com/Thavarshan/comet/compare/v2.2.1...v2.2.3
420

521
## [v2.2.2](https://github.com/Thavarshan/comet/compare/v2.2.1...v2.2.2) - 2024-10-20
622

723
### Changed
824

9-
Release v2.2.1 by @Thavarshan in <https://github.com/Thavarshan/comet/pull/41>
25+
Release v2.2.1 by @Thavarshan in [https://github.com/Thavarshan/comet/pull/41](https://github.com/Thavarshan/comet/pull/41)
1026

1127
* Upgraded dependencies
1228
* Update `namor` `generate` method usage
1329
* Update to eslint to `v9.13`
1430
* Update eslint configs
1531

16-
**Full Changelog**: <https://github.com/Thavarshan/comet/compare/v2.2.1...v2.2.2>
32+
**Full Changelog**: [https://github.com/Thavarshan/comet/compare/v2.2.1...v2.2.2](https://github.com/Thavarshan/comet/compare/v2.2.1...v2.2.2)
1733

1834
## [v2.2.1](https://github.com/Thavarshan/comet/compare/v2.1.2...v2.2.1) - 2024-09-27
1935

@@ -25,7 +41,7 @@ Release v2.2.1 by @Thavarshan in <https://github.com/Thavarshan/comet/pull/41>
2541

2642
* Save directory path in Windows is not formatted properly
2743

28-
**Full Changelog**: <https://github.com/Thavarshan/comet/compare/v2.1.2...v2.2.1>
44+
**Full Changelog**: [https://github.com/Thavarshan/comet/compare/v2.1.2...v2.2.1](https://github.com/Thavarshan/comet/compare/v2.1.2...v2.2.1)
2945

3046
## [v2.1.2](https://github.com/Thavarshan/comet/compare/v2.0.4...v2.1.2) - 2024-09-21
3147

@@ -47,7 +63,7 @@ Release v2.2.1 by @Thavarshan in <https://github.com/Thavarshan/comet/pull/41>
4763
* Solved high resource usage during conversions, reducing CPU and memory consumption.
4864
* Fixed a bug where removed files were still being processed in the conversion queue.
4965

50-
**Full Changelog**: <https://github.com/Thavarshan/comet/compare/v2.0.4...v2.1.2>
66+
**Full Changelog**: [https://github.com/Thavarshan/comet/compare/v2.0.4...v2.1.2](https://github.com/Thavarshan/comet/compare/v2.0.4...v2.1.2)
5167

5268
## [v2.0.4](https://github.com/Thavarshan/comet/compare/v1.0.0...v2.0.4) - 2024-09-14
5369

@@ -71,7 +87,7 @@ Release v2.2.1 by @Thavarshan in <https://github.com/Thavarshan/comet/pull/41>
7187
* High resource usage issue
7288
* Removed files would still be included in conversion queue
7389

74-
**Full Changelog**: <https://github.com/Thavarshan/comet/compare/v1.0.0...v2.0.4>
90+
**Full Changelog**: [https://github.com/Thavarshan/comet/compare/v1.0.0...v2.0.4](https://github.com/Thavarshan/comet/compare/v1.0.0...v2.0.4)
7591

7692
## [v1.0.0](https://github.com/Thavarshan/comet/compare/v0.0.3...v1.0.0) - 2024-09-02
7793

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<p align="center"><a href="https://comet.thavarshan.com" target="_blank"><img src="https://github.com/Thavarshan/comet/blob/main/assets/logo.svg" width="400" height="400" alt="Comet"></a></p>
1+
<p align="center"><a href="https://comet.thavarshan.com" target="_blank"><img src="https://github.com/stellar-comet/comet/blob/main/assets/logo.svg" width="400" height="400" alt="Comet"></a></p>
22

33
<p align="center">
4-
<a href="https://github.com/Thavarshan/comet/actions"><img src="https://github.com/Thavarshan/comet/actions/workflows/test.yml/badge.svg" alt="Test Status"></a>
5-
<a href="https://github.com/Thavarshan/comet/actions"><img src="https://github.com/Thavarshan/comet/actions/workflows/build.yml/badge.svg" alt="Build Status"></a>
6-
<a href="https://github.com/Thavarshan/comet/actions"><img src="https://github.com/Thavarshan/comet/actions/workflows/release.yml/badge.svg?branch=release" alt="Release Status"></a>
4+
<a href="https://github.com/stellar-comet/comet/actions"><img src="https://github.com/stellar-comet/comet/actions/workflows/test.yml/badge.svg" alt="Test Status"></a>
5+
<a href="https://github.com/stellar-comet/comet/actions"><img src="https://github.com/stellar-comet/comet/actions/workflows/build.yml/badge.svg" alt="Build Status"></a>
6+
<a href="https://github.com/stellar-comet/comet/actions"><img src="https://github.com/stellar-comet/comet/actions/workflows/release.yml/badge.svg?branch=release" alt="Release Status"></a>
77
<a href="https://packagist.org/packages/jerome/filterable"><img src="https://img.shields.io/packagist/l/jerome/filterable" alt="License"></a>
88
</p>
99

@@ -75,7 +75,7 @@ To get started with Comet:
7575
1. **Clone the repository:**
7676

7777
```bash
78-
git clone https://github.com/Thavarshan/comet.git
78+
git clone https://github.com/stellar-comet/comet.git
7979
cd comet
8080
```
8181

forge.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const config: ForgeConfig = {
4949
name: productName,
5050
authors: author.name,
5151
exe: `${productName}.exe`,
52-
iconUrl: 'https://github.com/Thavarshan/comet/blob/main/assets/icons/icon.ico',
52+
iconUrl: 'https://github.com/stellar-comet/comet/blob/main/assets/icons/icon.ico',
5353
loadingGif: path.resolve(__dirname, 'assets', 'loading.gif'),
5454
noMsi: true,
5555
setupExe: `${name}-${version}-${arch}-setup.exe`,

jest.config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable max-len */
12
/**
23
* For a detailed explanation regarding each configuration property, visit:
34
* https://jestjs.io/docs/configuration

0 commit comments

Comments
 (0)