Skip to content

Commit

Permalink
🔖 0.10.8-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
ircfspace committed May 30, 2024
1 parent 065a5c4 commit 40d5941
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 24 deletions.
32 changes: 16 additions & 16 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,24 @@ diverse, inclusive, and healthy community.
Examples of behavior that contributes to a positive environment for our
community include:

* Demonstrating empathy and kindness toward other people
* Being respectful of differing opinions, viewpoints, and experiences
* Giving and gracefully accepting constructive feedback
* Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
* Focusing on what is best not just for us as individuals, but for the
overall community
- Demonstrating empathy and kindness toward other people
- Being respectful of differing opinions, viewpoints, and experiences
- Giving and gracefully accepting constructive feedback
- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
- Focusing on what is best not just for us as individuals, but for the
overall community

Examples of unacceptable behavior include:

* The use of sexualized language or imagery, and sexual attention or
advances of any kind
* Trolling, insulting or derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting
- The use of sexualized language or imagery, and sexual attention or
advances of any kind
- Trolling, insulting or derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or email
address, without their explicit permission
- Other conduct which could reasonably be considered inappropriate in a
professional setting

## Enforcement Responsibilities

Expand Down Expand Up @@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
### 4. Permanent Ban

**Community Impact**: Demonstrating a pattern of violation of community
standards, including sustained inappropriate behavior, harassment of an
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.

**Consequence**: A permanent ban from any sort of public interaction within
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ Thank you for your interest in contributing to Oblivion Desktop! We appreciate y
If you have any questions, suggestions, or concerns that are not addressed in this document, please feel free to open an [issue](https://github.com/bepass-org/oblivion-desktop/issues) or contact us directly. We are open to discussions related to the project.

### ⚠️ Warning

we recommend to not use your real name/account when contributing to this project. as it may causes you problem in some countries(that have problems with free circulation of information).
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "https://github.com/bepass-org/oblivion-desktop/issues",
"email": "[email protected]"
},
"version": "0.10.0-beta",
"version": "0.10.8-beta",
"license": "Restrictive",
"main": "./src/main/main.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "oblivion-desktop",
"description": "unofficial desktop version of oblivion",
"version": "0.10.0-beta",
"version": "0.10.8-beta",
"homepage": "https://github.com/bepass-org/oblivion-desktop#readme",
"license": "Restrictive",
"author": "ircfspace+kiomarzsss <[email protected]> (https://ircf.space/)",
Expand Down
15 changes: 9 additions & 6 deletions src/renderer/components/Modal/Endpoint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,15 @@ const EndpointModal: FC<EndpointModalProps> = ({
onClose();
}, [defValue, endpointInput, onClose, setEndpoint]);

const setEndpointSuggestion = useCallback((item: number) => {
if (typeof item === 'undefined' || !item) {
item = 0;
}
setEndpointInput(suggestion[item]);
}, [suggestion]);
const setEndpointSuggestion = useCallback(
(item: number) => {
if (typeof item === 'undefined' || !item) {
item = 0;
}
setEndpointInput(suggestion[item]);
},
[suggestion]
);

const setEndpointDefault = useCallback(() => {
setEndpointInput(defValue);
Expand Down

0 comments on commit 40d5941

Please sign in to comment.