-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from Falcion/patch/v3.0.1
chore(merge): pull request for patch/v3.0.1
- Loading branch information
Showing
43 changed files
with
3,754 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,6 +37,7 @@ body: | |
- Windows | ||
- macOS | ||
- Linux | ||
- Mobile (specify) | ||
- Not important | ||
- type: checkboxes | ||
id: terms | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
SET "CLONESH=esbuild.config.mjs" | ||
|
||
FOR /F "tokens=*" %%i IN ('git ls-files -v %CLONESH%') DO SET "CURRENT_STATUS=%%i" | ||
|
||
IF "%CURRENT_STATUS:~0,1%"=="S" ( | ||
ECHO Currently, the file %CLONESH% is skipped. | ||
ECHO Turning file tracking back ON... | ||
git update-index --no-skip-worktree "%CLONESH%" | ||
IF ERRORLEVEL 0 ( | ||
ECHO File tracking turned on successfully. | ||
) ELSE ( | ||
ECHO Error: Could not turn file tracking on. | ||
) | ||
) ELSE ( | ||
ECHO Currently, the file %CLONESH% is being tracked. | ||
ECHO Turning file tracking OFF... | ||
git update-index --skip-worktree "%CLONESH%" | ||
IF ERRORLEVEL 0 ( | ||
ECHO File tracking turned off successfully. | ||
) ELSE ( | ||
ECHO Error: Could not turn file tracking off. | ||
) | ||
) | ||
|
||
EXIT /B 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
The semantics of UNITADE are defined by two release formats: | ||
|
||
1. **Releases following the "v\*." pattern**: These releases are created specifically for Semantic Versioning purposes, are independent of Obsidian’s release system, and do not include release notes. | ||
2. **Releases following the "\*." pattern**: These are special releases intended for Obsidian’s plugin update system and include release notes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
### UNITADE.md Plugin for Obsidian v3.0.1 - Release Patch Notes | ||
|
||
This v3.0.1 patch release focuses on minor enhancements, optimizations, and additional guidance for key features, improving overall functionality and user experience. | ||
|
||
--- | ||
|
||
**Improvements and Fixes:** | ||
|
||
- **README and Settings Tab Updates:** Adjusted the README and settings tab to reflect new extension "splitting" semantics, enhancing clarity on configuration and usage. | ||
- **Asynchronous Language Loading (Locales):** Improved asynchronous loading for localization files, ensuring smoother, more reliable multi-language support across the plugin. | ||
- **Error-Spamming Commentary:** Added a comment within the settings block about error-spamming behavior, with a note on how "error silencing" can mitigate unnecessary log entries in specific cases. | ||
- **Code Editor Display Mode Update:** Resolved an issue with asynchronous extension loading in the code editor display mode, improving compatibility and display accuracy. | ||
- **"Use Default Extensions" Note:** Added an in-app comment explaining the basic functionality of the "use default extensions" option, with references to the wiki for advanced details. | ||
- **Case-Insensitive Mode Warning:** Introduced a prominent warning for case-insensitive mode. Due to potential risks, users are cautioned that enabling this mode may cause their vault to crash if applied recklessly. This mode can be safely disabled through the plugin’s JSON config if issues arise. | ||
- **Supported Versions and Issues Templates Update:** Updated supported version files and issue templates to ensure compatibility documentation aligns with the latest plugin functionality. | ||
- **Release Semantics File:** Added a dedicated semantics file in the releases folder, summarizing key changes for reference. | ||
- **"Add to Code Editor Settings" Option:** Introduced an option to add configurations to code editor settings, with a note that this and the core settings are not mutually exclusive but may conflict if both are active simultaneously. | ||
- **Separator Symbol Update:** Adjusted the extension separator symbol from `;` to `>`, aligning with updated parsing rules and improving consistency across plugin versions. | ||
- **Compatibility Module Fix:** Enhanced the compatibility module to eliminate "skipping" behavior following an error in replacement functions, improving reliability. | ||
- **Default Extensions Rendering in Code Editor:** Updated the code editor to render default extensions first as code, followed by markdown formatting, for a clearer, more functional display. | ||
|
||
This patch builds upon the v3.0.0 foundation, delivering critical updates to compatibility, user guidance, and interface consistency. | ||
|
||
### [3.0.1](https://github.com/mokkapps/changelog-generator-demo/compare/v3.0.0...v3.0.1) (2024-11-05) | ||
|
||
|
||
### Features | ||
|
||
* **modals:** now modals support code editor extensions integration ([590f81d](https://github.com/mokkapps/changelog-generator-demo/commits/590f81dbc221adbef9d733abbe60d55733500d57)) | ||
|
||
|
||
### Build system | ||
|
||
* **esbuild-tracking:** write special .BAT script to disable worktree for esbuild ([7301437](https://github.com/mokkapps/changelog-generator-demo/commits/73014372429512064e4a6c458ac271be681039c4)) | ||
* **esbuild:** add plugin to automatically copy files of plugin build to test folder ([969afd4](https://github.com/mokkapps/changelog-generator-demo/commits/969afd4b69646905166e019f2fd762fdcf0d3373)) | ||
|
||
|
||
### Documentation | ||
|
||
* **settings:** add warning about case-insensitive mode in settings ([4a2b3f7](https://github.com/mokkapps/changelog-generator-demo/commits/4a2b3f71dd14a27580fbe561543be44343d59a11)) | ||
* **settings:** add warning about errors spam in extensions input ([722e361](https://github.com/mokkapps/changelog-generator-demo/commits/722e361e51cb0fddfe707816505369b001d9c3a6)) | ||
|
||
|
||
### Fixes | ||
|
||
* **compatibility-module:** fix skipping work process after getting undefined field in compatibility module ([8fe545d](https://github.com/mokkapps/changelog-generator-demo/commits/8fe545d447f9cf8ea5dee6b0f04a3c3280f75058)) | ||
* **docs:** update some required information about plugin in README ([c1a65fb](https://github.com/mokkapps/changelog-generator-demo/commits/c1a65fbe8b95a83edd0389a99b9aaaf3ae07d51d)), closes [#73](https://github.com/Falcion/UNITADE.md/issues/73) | ||
* **locales-settings:** remove misinformation about separating symbols ([166b6ca](https://github.com/mokkapps/changelog-generator-demo/commits/166b6ca2c9a38a8ec8307fc8daeb7f4f0ae10e08)), closes [#73](https://github.com/Falcion/UNITADE.md/issues/73) | ||
* **locales:** sync locales and implement them in stale settings tab ([68b3824](https://github.com/mokkapps/changelog-generator-demo/commits/68b382494a37026f4a732a3cd04a34ab55e5e326)) | ||
* **locales:** sync locales between languages and fix bug when settings appear null ([ea6f6f2](https://github.com/mokkapps/changelog-generator-demo/commits/ea6f6f25df0fc372afe5062034481886db625c03)), closes [#73](https://github.com/Falcion/UNITADE.md/issues/73) | ||
* **modals:** now modals are trying to apply new extensions in plugin and fix of semantics for separators ([19bd4e6](https://github.com/mokkapps/changelog-generator-demo/commits/19bd4e65107b3bb0b19c51e8e9f2e9642a3215cd)) | ||
* **rendering-extensions:** sync default extensions and code extensions ([a8934ce](https://github.com/mokkapps/changelog-generator-demo/commits/a8934ce171ee94965ca16b869f899ae17ac7a9f8)) | ||
* **settings:** now "use default extensions" and input are synchronized in settings tab ([aea3114](https://github.com/mokkapps/changelog-generator-demo/commits/aea311487557040916375da8677b39249d5e56f1)), closes [#73](https://github.com/Falcion/UNITADE.md/issues/73) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.