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

Commit 3cc3fc6

Browse files
authored
Merge pull request #42 from Thavarshan/main
Release v2.2.2
2 parents be3e5bd + 8afc2b5 commit 3cc3fc6

26 files changed

+2165
-2458
lines changed

.eslintrc.js

-105
This file was deleted.

.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/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).
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).
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/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).
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).
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/stellar-comet/comet.git
33+
git clone https://github.com/Thavarshan/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/stellar-comet/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/Thavarshan/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/stellar-comet/comet/discussions
4+
url: https://github.com/Thavarshan/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/stellar-comet/comet/discussions)
5+
- [Github discussions](https://github.com/Thavarshan/comet/discussions)

.prettierrc.js

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

CHANGELOG.md

+37-12
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,33 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/stellar-comet/comet/compare/v2.1.2...HEAD)
3+
## [Unreleased](https://github.com/Thavarshan/comet/compare/v2.2.2...HEAD)
44

5-
## [v2.1.2](https://github.com/stellar-comet/comet/compare/v2.0.4...v2.1.2) - 2024-09-21
5+
## [v2.2.2](https://github.com/Thavarshan/comet/compare/v2.2.1...v2.2.2) - 2024-10-20
6+
7+
### Changed
8+
9+
Release v2.2.1 by @Thavarshan in https://github.com/Thavarshan/comet/pull/41
10+
11+
* Upgraded dependencies
12+
* Update `namor` `generate` method usage
13+
* Update to eslint to `v9.13`
14+
* Update eslint configs
15+
16+
**Full Changelog**: https://github.com/Thavarshan/comet/compare/v2.2.1...v2.2.2
17+
18+
## [v2.2.1](https://github.com/Thavarshan/comet/compare/v2.1.2...v2.2.1) - 2024-09-27
19+
20+
### Changed
21+
22+
- Update media assets
23+
24+
### Fixed
25+
26+
- Save directory path in Windows is not formatted properly
27+
28+
**Full Changelog**: https://github.com/Thavarshan/comet/compare/v2.1.2...v2.2.1
29+
30+
## [v2.1.2](https://github.com/Thavarshan/comet/compare/v2.0.4...v2.1.2) - 2024-09-21
631

732
### Added
833

@@ -22,9 +47,9 @@
2247
- Solved high resource usage during conversions, reducing CPU and memory consumption.
2348
- Fixed a bug where removed files were still being processed in the conversion queue.
2449

25-
**Full Changelog**: https://github.com/stellar-comet/comet/compare/v2.0.4...v2.1.2
50+
**Full Changelog**: https://github.com/Thavarshan/comet/compare/v2.0.4...v2.1.2
2651

27-
## [v2.0.4](https://github.com/stellar-comet/comet/compare/v1.0.0...v2.0.4) - 2024-09-14
52+
## [v2.0.4](https://github.com/Thavarshan/comet/compare/v1.0.0...v2.0.4) - 2024-09-14
2853

2954
### Added
3055

@@ -46,17 +71,17 @@
4671
- High resource usage issue
4772
- Removed files would still be included in conversion queue
4873

49-
**Full Changelog**: https://github.com/stellar-comet/comet/compare/v1.0.0...v2.0.4
74+
**Full Changelog**: https://github.com/Thavarshan/comet/compare/v1.0.0...v2.0.4
5075

51-
## [v1.0.0](https://github.com/stellar-comet/comet/compare/v0.0.3...v1.0.0) - 2024-09-02
76+
## [v1.0.0](https://github.com/Thavarshan/comet/compare/v0.0.3...v1.0.0) - 2024-09-02
5277

5378
Initial stable release.
5479

55-
## [v0.0.3](https://github.com/stellar-comet/comet/compare/v0.0.2...v0.0.3) - 2024-08-24
80+
## [v0.0.3](https://github.com/Thavarshan/comet/compare/v0.0.2...v0.0.3) - 2024-08-24
5681

5782
### Added
5883

59-
- Realtime conversion progress and UI updates ([#13](https://github.com/stellar-comet/comet/issues/13))
84+
- Realtime conversion progress and UI updates ([#13](https://github.com/Thavarshan/comet/issues/13))
6085
- Cancel conversion featrue
6186
- Already converted indication on UI
6287
- Tooltips to cancel and remove buttons
@@ -72,7 +97,7 @@ Initial stable release.
7297

7398
- Invalid executable name on `MacOS`
7499

75-
## [v0.0.2](https://github.com/stellar-comet/comet/compare/v0.0.1...v0.0.2) - 2024-08-22
100+
## [v0.0.2](https://github.com/Thavarshan/comet/compare/v0.0.1...v0.0.2) - 2024-08-22
76101

77102
### Added
78103

@@ -81,9 +106,9 @@ Initial stable release.
81106

82107
### Fixed
83108

84-
- Published distributables are corrupt ([#5](https://github.com/stellar-comet/comet/issues/5))
85-
- Unknown system error -88 ([#1](https://github.com/stellar-comet/comet/issues/1))
109+
- Published distributables are corrupt ([#5](https://github.com/Thavarshan/comet/issues/5))
110+
- Unknown system error -88 ([#1](https://github.com/Thavarshan/comet/issues/1))
86111

87-
## [v0.0.1](https://github.com/stellar-comet/comet/compare/v0.0.0...v0.0.1) - 2024-08-17
112+
## [v0.0.1](https://github.com/Thavarshan/comet/compare/v0.0.0...v0.0.1) - 2024-08-17
88113

89114
Initial alpha release for public testing and feedback.

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/stellar-comet/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/Thavarshan/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/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>
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>
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/stellar-comet/comet.git
78+
git clone https://github.com/Thavarshan/comet.git
7979
cd comet
8080
```
8181

eslint.config.js

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
const js = require('@eslint/js');
2+
const prettierPlugin = require('eslint-plugin-prettier');
3+
const typescriptEslintPlugin = require('@typescript-eslint/eslint-plugin');
4+
const vuePlugin = require('eslint-plugin-vue');
5+
const vueAccessibilityPlugin = require('eslint-plugin-vuejs-accessibility');
6+
const typescriptEslintParser = require('@typescript-eslint/parser');
7+
const vueEslintParser = require('vue-eslint-parser');
8+
const prettierConfig = require('./.prettierrc.js');
9+
10+
module.exports = [
11+
js.configs.recommended, // Use @eslint/js for recommended configs
12+
{
13+
files: ['**/*.js', '**/*.ts', '**/*.vue'],
14+
languageOptions: {
15+
ecmaVersion: 2021,
16+
sourceType: 'module',
17+
parser: vueEslintParser, // Parser for Vue files
18+
parserOptions: {
19+
parser: typescriptEslintParser, // Parser for TypeScript files
20+
},
21+
globals: {
22+
browser: true,
23+
node: true,
24+
jest: true,
25+
},
26+
},
27+
plugins: {
28+
prettier: prettierPlugin,
29+
'@typescript-eslint': typescriptEslintPlugin,
30+
vue: vuePlugin,
31+
'vuejs-accessibility': vueAccessibilityPlugin,
32+
},
33+
rules: {
34+
'no-undef': 'off',
35+
'no-unused-vars': 'off',
36+
indent: ['error', 2, { SwitchCase: 1 }],
37+
'max-len': ['error', { code: 120 }],
38+
'no-console': ['error', { allow: ['warn', 'error'] }],
39+
'comma-dangle': ['error', 'always-multiline'],
40+
'space-before-function-paren': ['warn', { anonymous: 'ignore', named: 'never', asyncArrow: 'always' }],
41+
'prettier/prettier': ['error', prettierConfig],
42+
'vue/html-indent': ['error', 2],
43+
'vue/multiline-html-element-content-newline': 'off',
44+
'vue/multi-word-component-names': 'off',
45+
'vue/max-attributes-per-line': 0,
46+
'vue/require-default-prop': 0,
47+
'vue/no-multiple-template-root': 0,
48+
'vue/max-len': 'off',
49+
'@typescript-eslint/no-unused-vars': ['warn', { varsIgnorePattern: '^_$', argsIgnorePattern: '^_$' }],
50+
},
51+
settings: {
52+
'import/resolver': {
53+
typescript: { alwaysTryTypes: true, project: './tsconfig.json' },
54+
},
55+
},
56+
ignores: ['*.test.ts'],
57+
},
58+
{
59+
files: ['tests/**/*'],
60+
languageOptions: {
61+
globals: { jest: true },
62+
},
63+
},
64+
{
65+
files: ['**/*.vue'],
66+
rules: {
67+
'max-len': 'off',
68+
},
69+
},
70+
];

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/stellar-comet/comet/blob/main/assets/icons/icon.ico',
52+
iconUrl: 'https://github.com/Thavarshan/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,4 +1,3 @@
1-
/* eslint-disable max-len */
21
/**
32
* For a detailed explanation regarding each configuration property, visit:
43
* https://jestjs.io/docs/configuration

0 commit comments

Comments
 (0)